An error occurred fetching the project authors.
- 06 Jun, 2007 1 commit
-
-
gluh@mysql.com/eagle.(none) authored
removed duplicated variable declarations
-
- 09 Apr, 2007 1 commit
-
-
bar@mysql.com authored
Problem: setting/displaying @@LC_TIME_NAMES didn't distinguish between GLOBAL and SESSION variable types - always SESSION variable was set/shonw. Fix: set either global or session value. Also, "mysqld --lc-time-names" was added to set "global default" value.
-
- 02 Mar, 2007 1 commit
-
-
antony@ppcg5.local authored
"Server Variables for Plugins" Implement support for plugins to declare server variables. Demonstrate functionality by removing InnoDB specific code from sql/* New feature for HASH - HASH_UNIQUE flag New feature for DYNAMIC_ARRAY - initializer accepts preallocated ptr. Completed support for plugin reference counting.
-
- 01 Mar, 2007 1 commit
-
-
msvensson@pilot.blaudden authored
-
- 20 Feb, 2007 1 commit
-
-
msvensson@pilot.blaudden authored
- Part 2, add @@hostname system variable
-
- 05 Dec, 2006 1 commit
-
-
Problem: replication of LC_TIME_NAMES didn't work. Thus, INSERTS or UPDATES using date_format() always worked with en_US on the slave side. Fix: adding ONE_SHOT implementation for LC_TIME_NAMES.
-
- 15 Sep, 2006 1 commit
-
-
- 13 Sep, 2006 1 commit
-
-
tables to INFORMATION_SCHEMA.
-
- 23 Aug, 2006 1 commit
-
-
cmiller@maint1.mysql.com authored
Zero-length variables caused failures when using the length to look up the name in a hash. Instead, signal that no zero-length name can ever be found and that to encounter one is a syntax error.
-
- 15 Aug, 2006 1 commit
-
-
cmiller@maint1.mysql.com authored
Zero-length variables caused failures when using the length to look up the name in a hash. Instead, signal that no zero-length name can ever be found and that to encounter one is a syntax error.
-
- 28 Jul, 2006 1 commit
-
-
sergefp@mysql.com authored
- Make the range-et-al optimizer produce E(#table records after table condition is applied), - Make the join optimizer use this value, - Add "filtered" column to EXPLAIN EXTENDED to show fraction of records left after table condition is applied - Adjust test results, add comments
-
- 27 Jun, 2006 1 commit
-
-
kroki@mysql.com authored
The problem was that we restored SQL_CACHE, SQL_NO_CACHE flags in SELECT statement from internal structures based on value set later at runtime, not the original value set by the user. The solution is to remember that original value.
-
- 22 Jun, 2006 2 commits
-
-
bar@mysql.com authored
sys_var_insert_id returned LAST_INSERT_ID instead of INSERT_ID, as Guilhem suggested.
-
bar@mysql.com authored
sys_var_insert_id returned LAST_INSERT_ID instead of INSERT_ID.
-
- 08 May, 2006 2 commits
-
-
jimw@mysql.com authored
Bug #19606: ssl variables are not displayed in show variables Bug #19616: log_queries_not_using_indexes is not listed in show variables Make basedir, datadir, tmpdir, log_queries_not_using_indexes, ssl_ca, ssl_capath, ssl_cert, ssl_cipher, and ssl_key all available both from SHOW VARIABLES and as @@variables. As a side-effect of this change, log_queries_not_using_indexes can be changed at runtime (but only globally, not per-connection).
-
tnurnberg@mysql.com authored
save global server variables before fiddling with them and restore them later
-
- 26 Apr, 2006 1 commit
-
-
jimw@mysql.com authored
This patch simply adds sql_big_selects to the list of variables output by SHOW VARIABLES.
-
- 21 Apr, 2006 2 commits
-
-
jimw@mysql.com authored
Bug #15684: @@version_* are not all SELECTable Added the appropriate information as read-only system variables, and also removed some special-case handling of @@version along the way. @@version_bdb was added, but isn't included in the test because it depends on the presence of BDB.
-
jimw@mysql.com authored
SQL_WARNINGS and SQL_NOTES were being displayed with SHOW_BOOL, but they are system variables that need SHOW_SYS to be used.
-
- 22 Feb, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
-
- 14 Feb, 2006 1 commit
-
-
bar@mysql.com authored
Backporting character_set_filesystem from 5.0 to 5.1.
-
- 26 Jan, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
Cleanup the sideeffects from most of the testcases with sideeffects.
-
- 17 Jan, 2006 1 commit
-
-
konstantin@mysql.com authored
reword the misleading message.
-
- 23 Nov, 2005 1 commit
-
-
monty@mysql.com authored
The table opening process now works the following way: - Create common TABLE_SHARE object - Read the .frm file and unpack it into the TABLE_SHARE object - Create a TABLE object based on the information in the TABLE_SHARE object and open a handler to the table object Other noteworthy changes: - In TABLE_SHARE the most common strings are now LEX_STRING's - Better error message when table is not found - Variable table_cache is now renamed 'table_open_cache' - New variable 'table_definition_cache' that is the number of table defintions that will be cached - strxnmov() calls are now fixed to avoid overflows - strxnmov() will now always add one end \0 to result - engine objects are now created with a TABLE_SHARE object instead of a TABLE object. - After creating a field object one must call field->init(table) before using it - For a busy system this change will give you: - Less memory usage for table object - Faster opening of tables (if it's has been in use or is in table definition cache) - Allow you to cache many table definitions objects - Faster drop of table
-
- 22 Nov, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 11 Oct, 2005 1 commit
-
-
jimw@mysql.com authored
-
- 20 Sep, 2005 1 commit
-
-
brian@zim.(none) authored
Cleanups for storage engine patch. Changed two test results to now reflect the changes in storage engines and a couple of comment changes in the code.
-
- 07 Sep, 2005 1 commit
-
-
gluh@eagle.intranet.mysql.r18.ru authored
Variable character_set_system is selectable now More accurate error message results during update of character_set_system and some other read only variables
-
- 30 Aug, 2005 1 commit
-
-
bar@mysql.com authored
character_set_results is nullable, but value_ptr returns string "NULL" set_var.cc: Create Item_null instead of Item_string for NULL values variables.result, variables.test: adding test case
-
- 26 Aug, 2005 1 commit
-
-
ramil@mysql.com authored
-
- 31 Jul, 2005 1 commit
-
-
monty@mishka.local authored
Change bool in C code to my_bool Added to mysqltest --enable_parsning and --disable_parsing to avoid to have to comment parts of tests Added comparison of LEX_STRING's and use this to compare file types for view and trigger files.
-
- 29 Jul, 2005 1 commit
-
-
jimw@mysql.com authored
allowed unintended overflows. (Bug #10351)
-
- 25 Jul, 2005 1 commit
-
-
jimw@mysql.com authored
was used. (Bug #10724)
-
- 22 Jul, 2005 1 commit
-
-
jimw@mysql.com authored
variables. (Bug #10351)
-
- 30 Jun, 2005 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
Using 8 bytes for data pointer does not work at least on all computers. The result may become 0 or negative number. (mysqld, myisamchk)
-
- 02 Jun, 2005 1 commit
-
-
bar@mysql.com authored
set_var.cc: variables.result variables.test Bug #10904 Illegal mix of collations between a system variable and a constant Changing coercibility of system variables to SYSCONST, to be the same with USER(), DATABASE(), etc.
-
- 13 May, 2005 2 commits
-
-
ramil@mysql.com authored
-
monty@mishka.local authored
myisam_max_extra_sort_file_size is depricated Ensure that myisam_data_pointer_size is honoured when creating new MyISAM files Changed default value of myisam_data_pointer_size from 4 to 6 to get rid of 'table-is-full' errors
-
- 05 May, 2005 1 commit
-
-
holyfoot@hf-ibm.(none) authored
-
- 22 Apr, 2005 1 commit
-
-
gbichot@quadita2.mysql.com authored
BUG#9738 "SHOW VARIABLES still displays the deprecated 'log_update' in 5.0", BUG#9542 "MySQL dies with signal 11 when it is using non-existent location of binary logs"
-