An error occurred fetching the project authors.
- 16 Feb, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 09 Feb, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 06 Feb, 2004 1 commit
-
-
vva@eagle.mysql.r18.ru authored
2. added automatic quotation of keywords in SHOW CREATE TABLE
-
- 03 Feb, 2004 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
Marked --bdb-no-sync as deprecated Added --sync-bdb-logs / --disable-sync-bdb-logs as a synonym / alternative.
-
- 01 Feb, 2004 2 commits
-
-
bell@sanja.is.com.ua authored
(BUG#2120 sfter merge)
-
bell@sanja.is.com.ua authored
fixed BUG#2120 and other problem with EXPLAINing derived tables
-
- 30 Jan, 2004 2 commits
-
-
dlenev@mysql.com authored
Moved all range checks for TIMESTAMP value to my_gmt_sec(). Also fixed check of upper boundary of TIMESTAMP range (which also now will catch datetime values which are too small for TIMESTAMP in case if time_t is unsigned).
-
serg@serg.mylan authored
db name is printed with append_identifier for a proper quoting
-
- 28 Jan, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 23 Jan, 2004 1 commit
-
-
hf@deer.(none) authored
wl #1163 (Make spatial code optional) Patch I cleaned with Serg & Monty's suggestions
-
- 14 Jan, 2004 1 commit
-
-
ram@gw.mysql.r18.ru authored
"PRIMARY" has been replaced by primary_key_name.
-
- 02 Jan, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
(BUG#2089)
-
- 30 Dec, 2003 2 commits
-
-
monty@mysql.com authored
Added support for lower_case_table_names=2, which is to be used on case insensitive file systems. This tells MySQL to preserve the used case of filenames and database names to make it esier to move files between cases sensitive can case insensitive file systems (like Windows and Linux)
-
hf@deer.(none) authored
Here i added Item_*::cleanup() functions, removed a lot of ~Item_*'s, added code to restore order_list and group_list
-
- 19 Dec, 2003 4 commits
-
-
konstantin@oak.local authored
-
monty@mysql.com authored
-
konstantin@oak.local authored
All tests pass (client_test included)
-
monty@mysql.com authored
Cleaned up embedded library access and query cache handling Changed min stack size to 128K (to allow longer MyISAM keys) Fixed wrong priority for XOR (should be less than NEG to get -1^1 to work)
-
- 17 Dec, 2003 1 commit
-
-
New Statement: SHOW [STORAGE] ENGINES New System Variable: storage_engine New mysqld Argument: --default-storage-engine=
-
- 12 Dec, 2003 1 commit
-
-
monty@mysql.com authored
Fixed problem with char > 128 in QUOTE() function. (Bug #1868) Disable creation of symlinks if my_disable_symlink is set Fixed searching of TEXT with end space. (Bug #1651) Fixed caching bug in multi-table-update where same table was used twice. (Bug #1711) Fixed problem with UNIX_TIMESTAMP() for timestamps close to 0. (Bug #1998) Fixed timestamp.test
-
- 08 Dec, 2003 1 commit
-
-
gluh@gluh.mysql.r18.ru authored
to mysqld that is executed for all new connections. (Similar to the client command: mysql_options(... MYSQL_INIT_COMMAND ...).
-
- 07 Dec, 2003 1 commit
-
-
gluh@gluh.mysql.r18.ru authored
New formats added for 'week()' function and 'default_week_format' option(4 - 7). Next formats is supported now: *Value* *Meaning* `0' Week starts on Sunday; First Sunday of the year starts week 1. Week() returns 0-53. `1' Week starts on Monday; Weeks numbered according to ISO 8601:1988. Week() returns 0-53. `2' Week starts on Sunday; First Sunday of the year starts week 1. Week() returns 1-53. `3' Week starts on Monday; Weeks numbered according to ISO 8601:1988. Week() returns 1-53. `4' Week starts on Sunday; Weeks numbered according to ISO 8601:1988. Week() returns 0-53. `5' Week starts on Monday; First Monday of the year starts week 1. Week() returns 0-53. `6' Week starts on Sunday; Weeks numbered according to ISO 8601:1988. Week() returns 1-53. `7' Week starts on Monday; First Monday of the year starts week 1. Week() returns 1-53.
-
- 06 Dec, 2003 1 commit
-
-
serg@serg.mylan authored
QUERY_NO_GOOD_INDEX_USED and QUERY_NO_INDEX_USED moved from thd->lex.select_lex->options to thd->server_status
-
- 02 Dec, 2003 1 commit
-
-
- 23 Nov, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 20 Nov, 2003 1 commit
-
-
monty@mysql.com authored
Fixed compiler warnings (IRIX C compiler and VC++)
-
- 18 Nov, 2003 2 commits
-
-
bell@sanja.is.com.ua authored
-
monty@mashka.mysql.fi authored
New multi-key-cache handling. This was needed becasue the old one didn't work reliable with MERGE tables. ALTER TABLE table_name ... CHARACTER SET ... now changes all char/varchar/text columns to the given character set (One must use ALTER TABLE ... DEFAULT CHARACTER SET ... to change the default character set) Fixed that have_compress is detected properly (fixes problems with func_compress.test on platforms without zlib) New syntax for CACHE INDEX ('keys' is optional if no index name is given and one mentions the key cache name only ones) Removed compiler warnings Added mysql_set_server_option() to allow clients like PHP to easaily set/reset the multi-statement flag.
-
- 17 Nov, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 12 Nov, 2003 1 commit
-
-
greg@mysql.com authored
-
- 03 Nov, 2003 2 commits
-
-
monty@narttu.mysql.fi authored
Cleaned up (and disabled part of) date/time/datetime format patch. One can't anymore change default read/write date/time/formats. This is becasue the non standard datetime formats can't be compared as strings and MySQL does still a lot of datetime comparisons as strings Changed flag argument to str_to_TIME() and get_date() from bool to uint Removed THD from str_to_xxxx functions and Item class. Fixed core dump when doing --print-defaults Move some common string functions to strfunc.cc Dates as strings are now of type my_charset_bin instead of default_charset() Introduce IDENT_QUOTED to not have to create an extra copy of simple identifiers (all chars < 128) Removed xxx_FORMAT_TYPE enums and replaced them with the old TIMESTAMP_xxx enums Renamed some TIMESTAMP_xxx enums to more appropriate names Use defines instead of integers for date/time/datetime string lengths Added to build system and use the new my_strtoll10() function.
-
bell@sanja.is.com.ua authored
-
- 02 Nov, 2003 1 commit
-
-
monty@mysql.com authored
dded init of variable to fix core dump on startup errors
-
- 24 Oct, 2003 1 commit
-
-
serg@serg.mylan authored
-
- 21 Oct, 2003 1 commit
-
-
hf@deer.(none) authored
-
- 20 Oct, 2003 1 commit
-
-
gluh@gluh.mysql.r18.ru authored
-
- 16 Oct, 2003 2 commits
-
-
serg@serg.mylan authored
-
bell@sanja.is.com.ua authored
new EXPLAIN parameter to show real query as it was interpreted (SCRUM) (WL#1274)
-
- 15 Oct, 2003 2 commits
-
-
monty@mashka.mysql.fi authored
After merge fixes
-
gluh@gluh.mysql.r18.ru authored
-