mariadb/sql
unknown 213476ef3e Fix for bug lp:992405
The patch backports two patches from mysql 5.6:
- BUG#12640437: USING SQL_BUFFER_RESULT RESULTS IN A DIFFERENT QUERY OUTPUT
- Bug#12578908: SELECT SQL_BUFFER_RESULT OUTPUTS TOO MANY ROWS WHEN GROUP IS OPTIMIZED AWAY

Original comment:
-----------------
3714 Jorgen Loland	2012-03-01
      BUG#12640437 - USING SQL_BUFFER_RESULT RESULTS IN A DIFFERENT 
                     QUERY OUTPUT
      
      For all but simple grouped queries, temporary tables are used to
      resolve grouping. In these cases, the list of grouping fields is
      stored in the temporary table and grouping is resolved
      there (e.g. by adding a unique constraint on the involved
      fields). Because of this, grouping is already done when the rows
      are read from the temporary table.
      
      In the case where a group clause may be optimized away, grouping
      does not have to be resolved using a temporary table. However, if
      a temporary table is explicitly requested (e.g. because the
      SQL_BUFFER_RESULT hint is used, or the statement is
      INSERT...SELECT), a temporary table is used anyway. In this case,
      the temporary table is created with an empty group list (because
      the group clause was optimized away) and it will therefore not
      create groups. Since the temporary table does not take care of
      grouping, JOIN::group shall not be set to false in 
      make_simple_join(). This was fixed in bug 12578908. 
      
      However, there is an exception where make_simple_join() should
      set JOIN::group to false even if the query uses a temporary table
      that was explicitly requested but is not strictly needed. That
      exception is if the loose index scan access method (explain
      says "Using index for group-by") is used to read into the 
      temporary table. With loose index scan, grouping is resolved 
      by the access method. This is exactly what happens in this bug.
2012-05-07 11:02:58 +03:00
..
examples Updated/added copyright headers 2011-06-30 17:31:31 +02:00
share Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
.cvsignore
add_errmsg
authors.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
client_settings.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
CMakeLists.txt merge 2012-04-05 12:01:52 +02:00
contributors.h
create_options.cc small enhancement of the create table options feature: 2011-05-10 18:19:11 +02:00
create_options.h small enhancement of the create table options feature: 2011-05-10 18:19:11 +02:00
custom_conf.h
debug_sync.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
debug_sync.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
derror.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
des_key_file.cc Doxygenize comments, a*.cc - field.cc . 2007-10-09 17:56:32 -04:00
discover.cc Doxygenize comments, a*.cc - field.cc . 2007-10-09 17:56:32 -04:00
event_data_objects.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
event_data_objects.h Change some my_bool in C++ classes and a few functions to bool to detect wrong usage of bool/my_bool. 2010-09-24 01:00:32 +03:00
event_db_repository.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
event_db_repository.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
event_parse_data.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
event_parse_data.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
event_queue.cc mysqltest: Write command to be executed to the log BEFORE executing the command. 2011-05-09 14:38:49 +03:00
event_queue.h Provide initial module structure to Doxygen. 2007-08-15 19:08:44 +04:00
event_scheduler.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
event_scheduler.h
events.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
events.h Change some my_bool in C++ classes and a few functions to bool to detect wrong usage of bool/my_bool. 2010-09-24 01:00:32 +03:00
field.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
field.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
field_conv.cc mysql-5.1.62 merge 2012-04-05 10:49:38 +02:00
filesort.cc merge 2012-04-05 12:01:52 +02:00
frm_crypt.cc my_strtoll10-x86.s: 2006-12-31 01:02:27 +01:00
gen_lex_hash.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
gstream.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
gstream.h WL#3817: Simplify string / memory area types and make things more consistent (first part) 2007-05-10 12:59:39 +03:00
ha_ndbcluster.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
ha_ndbcluster.h restore the unintentinally broken ABI 2010-07-23 22:37:21 +02:00
ha_ndbcluster_binlog.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
ha_ndbcluster_binlog.h
ha_ndbcluster_cond.cc Merge mysql.com:/misc/mysql/34749/50-34749 2008-03-10 07:07:56 +01:00
ha_ndbcluster_cond.h
ha_ndbcluster_tables.h
ha_partition.cc Merge with 5.1 2012-03-28 13:49:07 +03:00
ha_partition.h Merge with 5.1 2012-03-28 13:49:07 +03:00
handler.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
handler.h Merge with 5.1 2012-03-28 13:49:07 +03:00
hash_filo.cc Fix a bunch of Windows warnings 2010-04-21 02:25:59 +02:00
hash_filo.h Change some my_bool in C++ classes and a few functions to bool to detect wrong usage of bool/my_bool. 2010-09-24 01:00:32 +03:00
hostname.cc Merge with MySQL 5.1.57/58 2011-05-02 20:58:45 +03:00
init.cc
item.cc merge 2012-04-05 12:01:52 +02:00
item.h Updated/added copyright headers 2011-06-30 17:31:31 +02:00
item_buff.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
item_cmpfunc.cc Fix of LP BUG#780386. 2011-09-05 09:29:49 +03:00
item_cmpfunc.h MDEV-214 lp:967242 Wrong result with JOIN, AND in ON condition, multi-part key, GROUP BY, subquery and OR in WHERE 2012-05-02 18:11:02 +02:00
item_create.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
item_create.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
item_func.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
item_func.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
item_geofunc.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
item_geofunc.h Merge with MySQL 5.1.55 2011-02-20 18:51:43 +02:00
item_row.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
item_row.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
item_strfunc.cc Updated/added copyright headers 2012-02-15 17:13:47 +01:00
item_strfunc.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
item_subselect.cc merge 2012-04-05 12:01:52 +02:00
item_subselect.h merge 2012-04-05 12:01:52 +02:00
item_sum.cc Updated/added copyright headers 2012-02-15 17:13:47 +01:00
item_sum.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
item_timefunc.cc mysql-5.1.62 merge 2012-04-05 10:49:38 +02:00
item_timefunc.h LP993103: Wrong result with LAST_DAY('0000-00-00 00:00:00')IS NULL in WHERE condition 2012-05-02 16:53:02 +02:00
item_xmlfunc.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
item_xmlfunc.h
key.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
lex.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
lex_symbol.h
lock.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
log.cc Build broken for gcc 4.5.1 in optimized mode. 2011-11-29 15:52:47 +01:00
log.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
log_event.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
log_event.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
log_event_old.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
log_event_old.h Merge with MySQL 5.1.55 2011-02-20 18:51:43 +02:00
log_slow.h
Makefile.am merge 2012-04-05 12:01:52 +02:00
message.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
message.mc
message.rc
mf_iocache.cc Fix a bunch of Windows warnings 2010-04-21 02:25:59 +02:00
MSG00001.bin
my_decimal.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
my_decimal.h mysql-5.1.62 merge 2012-04-05 10:49:38 +02:00
my_lock.c Fixed bug in undo_key_delete; Caused crashed key files in recovery 2007-12-17 01:17:37 +02:00
mysql_install_db.cc MDEV-221 - Properly escape command line when starting mysql_install_db 2012-04-16 15:28:33 +02:00
mysql_priv.h Merge with MariaDB 5.1 and MySQL 5.1.61 2012-02-20 17:49:21 +02:00
mysql_upgrade_service.cc - Properly terminate options array with all-zero entry. 2011-05-20 01:38:42 +02:00
mysqld.cc merge 2012-02-20 18:46:22 +01:00
mysqld_suffix.h
net_serv.cc Updated/added copyright headers 2011-06-30 17:31:31 +02:00
nt_servc.cc merge 2008-11-22 01:10:38 +01:00
nt_servc.h merge 2008-11-22 01:10:38 +01:00
opt_range.cc Fix bug lp:993745 2012-05-03 14:49:52 +03:00
opt_range.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
opt_sum.cc Fixed LP bug #884175. 2012-03-08 22:33:01 -08:00
opt_table_elimination.cc BUG#884184: Wrong result with RIGHT JOIN + derived_merge 2011-11-01 12:36:43 +04:00
parse_file.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
parse_file.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
partition_element.h Merge with main 2011-02-22 20:28:01 +02:00
partition_info.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
partition_info.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
password.c merge 2012-04-05 12:01:52 +02:00
procedure.cc
procedure.h
protocol.cc merge 2012-04-05 12:01:52 +02:00
protocol.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
records.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
repl_failsafe.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
repl_failsafe.h
rpl_constants.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
rpl_filter.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
rpl_filter.h MWL#36: Add a mysqlbinlog option to change the used database 2009-10-24 23:43:39 +04:00
rpl_injector.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
rpl_injector.h Fixed compiler warnings in a lot of files 2008-02-13 21:27:12 +02:00
rpl_mi.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
rpl_mi.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
rpl_record.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
rpl_record.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
rpl_record_old.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
rpl_record_old.h Merge with MySQL 5.1.55 2011-02-20 18:51:43 +02:00
rpl_reporting.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
rpl_reporting.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
rpl_rli.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
rpl_rli.h mysql-5.1.62 merge 2012-04-05 10:49:38 +02:00
rpl_tblmap.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
rpl_tblmap.h Bug#31455 mysqlbinlog don't print user readable info about RBR events 2008-08-20 19:06:31 +05:00
rpl_utility.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
rpl_utility.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
scheduler.cc lp:893522 more problems found by PVS Studio 2012-01-12 20:13:22 +01:00
scheduler.h Added mariadb and mariadb-version as my.conf option tags 2009-03-18 04:14:22 +02:00
set_var.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
set_var.h Updated/added copyright headers 2011-06-30 17:31:31 +02:00
signal_handler.cc merge 2012-03-21 18:30:34 +01:00
slave.cc Merge with 5.1 2011-11-30 22:57:18 +02:00
slave.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sp.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sp.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sp_cache.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sp_cache.h
sp_head.cc merge 2012-04-05 12:01:52 +02:00
sp_head.h merge 2012-04-05 12:01:52 +02:00
sp_pcontext.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
sp_pcontext.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
sp_rcontext.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sp_rcontext.h Merge Mariadb 5.1->5.2 2011-04-12 14:26:06 +02:00
spatial.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
spatial.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_acl.cc lp:982664 there are few broken clients that lie about their capabilities 2012-04-18 20:04:50 +02:00
sql_acl.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_analyse.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_analyse.h Change some my_bool in C++ classes and a few functions to bool to detect wrong usage of bool/my_bool. 2010-09-24 01:00:32 +03:00
sql_array.h Merge polly.(none):/home/kaa/src/maint/mysql-5.0-maint 2007-10-18 14:32:43 +04:00
sql_base.cc Fixed LP bug #806057. 2011-12-29 15:09:20 -08:00
sql_binlog.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_bitmap.h Change some my_bool in C++ classes and a few functions to bool to detect wrong usage of bool/my_bool. 2010-09-24 01:00:32 +03:00
sql_builtin.cc.in Maria WL#61 2010-04-01 17:34:51 +03:00
sql_cache.cc merge 2012-04-05 12:01:52 +02:00
sql_cache.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_class.cc merge 2012-04-05 12:01:52 +02:00
sql_class.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_client.cc Bug#26664 test suite times out on OS X 64bit 2007-05-24 11:21:27 +02:00
sql_connect.cc merge 2012-04-05 12:01:52 +02:00
sql_crypt.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_crypt.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_cursor.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_cursor.h
sql_db.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_delete.cc Fixed DELETE issues of view over view over table. 2012-02-03 12:24:55 +02:00
sql_derived.cc Fixed valgrind problem: reference on deleted memory of temporary table name. 2011-12-11 22:58:01 +02:00
sql_do.cc Rename send_ok to my_ok. Similarly to my_error, it only records the status, 2008-02-19 15:45:21 +03:00
sql_error.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_error.h
sql_handler.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_help.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_insert.cc Fix check of view updatability in case of underlying view changes its updatability. 2012-02-03 10:28:23 +02:00
sql_lex.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_lex.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_list.cc 5.1 version of a fix and test cases for bugs: 2007-05-28 15:30:01 +04:00
sql_list.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_load.cc Updated/added copyright headers 2012-02-15 17:13:47 +01:00
sql_locale.cc Updated/added copyright headers 2011-06-30 17:37:13 +02:00
sql_manager.cc Fix embedded/windows tests- move COND_manager and LOCK_manager to sql_manager.cc, to prevent race condition that results into accessing already destroyed critical section 2012-01-02 23:52:31 +01:00
sql_map.cc fixed type conversion warnings revealed by bug 30639 2007-09-21 10:15:16 +02:00
sql_map.h
sql_olap.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_parse.cc Fixed wrong merge 2012-01-07 10:23:46 +02:00
sql_partition.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_partition.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_plugin.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_plugin.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_plugin_services.h lp:705210 - Compiling with BUILD/compile-pentium64-debug fails 2011-01-20 13:00:46 +01:00
sql_prepare.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_profile.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_profile.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_rename.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_repl.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_repl.h
sql_select.cc Fix for bug lp:992405 2012-05-07 11:02:58 +03:00
sql_select.h Fixed LP bug #919427. 2012-01-20 23:54:43 -08:00
sql_servers.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_servers.h
sql_show.cc merge 2012-04-05 12:01:52 +02:00
sql_show.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
sql_sort.h
sql_state.c
sql_string.cc Updated/added copyright headers 2012-02-15 17:13:47 +01:00
sql_string.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_table.cc Merge with MariaDB 5.1 and MySQL 5.1.61 2012-02-20 17:49:21 +02:00
sql_tablespace.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_test.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_trigger.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_trigger.h Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
sql_udf.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
sql_udf.h Remove typedef st_table_list TABLE_LIST and always use name 'TABLE_LIST'. 2007-07-06 16:18:49 +04:00
sql_union.cc Merge with MySQL 5.1.60 2011-11-23 19:32:14 +02:00
sql_update.cc Fix check of view updatability in case of underlying view changes its updatability. 2012-02-03 10:28:23 +02:00
sql_view.cc Updated/added copyright headers 2012-02-15 17:13:47 +01:00
sql_view.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
sql_yacc.yy merge 2012-04-05 12:01:52 +02:00
strfunc.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
structs.h Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
table.cc Merge with 5.1 2012-03-28 13:49:07 +03:00
table.h merge 2012-04-05 12:01:52 +02:00
thr_malloc.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
time.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
tzfile.h WL#3817: Simplify string / memory area types and make things more consistent (first part) 2007-05-10 12:59:39 +03:00
tztime.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
tztime.h Updated/added copyright headers 2011-06-30 17:37:13 +02:00
udf_example.c Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
udf_example.def
uniques.cc Initail merge with MySQL 5.1 (XtraDB still needs to be merged) 2011-11-21 19:13:14 +02:00
unireg.cc Merge with MariaDB 5.1 2011-11-24 18:48:58 +02:00
unireg.h merge 2012-04-05 12:01:52 +02:00
winservice.c LP952607: Do not show MySQL services preinstalled by Dell in the upgrade wizard 2012-03-12 12:14:04 +01:00
winservice.h split long lines, use get_mysql_service_properties() 2011-01-30 22:42:02 +01:00