An error occurred fetching the project authors.
- 06 Feb, 2004 1 commit
-
-
vva@eagle.mysql.r18.ru authored
-
- 29 Jan, 2004 1 commit
-
-
konstantin@oak.local authored
-
- 21 Jan, 2004 1 commit
-
-
hf@deer.(none) authored
-
- 02 Jan, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
(BUG#2089)
-
- 19 Dec, 2003 1 commit
-
-
konstantin@oak.local authored
All tests pass (client_test included)
-
- 28 Nov, 2003 1 commit
-
-
monty@mysql.com authored
Fixed compiler warnings (a lot of hidden variables detected by the Forte compiler) Added a lot of 'version_xxx' strings to 'show variables' Prevent copying of TMP_TABLE_PARAM (This caused core dump bug on Solaris) Fixed problem with printing sub selects to debug log
-
- 20 Nov, 2003 1 commit
-
-
monty@mysql.com authored
Fixed compiler warnings (IRIX C compiler and VC++)
-
- 18 Nov, 2003 1 commit
-
-
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
-
- 08 Nov, 2003 1 commit
-
-
hf@deer.(none) authored
another version of the fix. Here i removed a loop that seems to be superfluous
-
- 03 Nov, 2003 1 commit
-
-
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.
-
- 02 Nov, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
dependence should mean uncacheability
-
- 30 Oct, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
added code covarage for functions convert(), nullif(), crc32(), is_used_lock(), char_lengtrh(), bit_xor() added string length for more speed made code covarage for print() method of Item fixed printability of some items (SCRUM) (WL#1274)
-
- 25 Oct, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 17 Oct, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 16 Oct, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
new EXPLAIN parameter to show real query as it was interpreted (SCRUM) (WL#1274)
-
- 02 Sep, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 26 Aug, 2003 1 commit
-
-
igor@rurik.mysql.com authored
After merge fix
-
- 16 Aug, 2003 1 commit
-
-
bell@laptop.sanja.is.com.ua authored
-
- 29 Jul, 2003 3 commits
-
-
bell@sanja.is.com.ua authored
(fixed BUG#943)
-
bar@bar.mysql.r18.ru authored
-
bell@sanja.is.com.ua authored
count HAVING clause elements with select list elements, because agregate function can be present in it (BUG#922) removerd unused loop_id
-
- 20 Jul, 2003 1 commit
-
-
serg@serg.mylan authored
-
- 16 Jul, 2003 1 commit
-
-
igor@rurik.mysql.com authored
new file Many files: Added CACHE INDEX command
-
- 06 Jul, 2003 1 commit
-
-
monty@mashka.mysql.fi authored
Added framework to create/drop and manager buffers for multiple key caches
-
- 02 Jul, 2003 2 commits
-
-
bell@sanja.is.com.ua authored
It looks like samll revolution in SELECT_LEX tree, but it was only natural way to solve problem with name resolution of external fields inside subselect which belongs to global order of union also it have following advantages: - removed mess with current_select type conversion - type checking/converting - a lot of virtual methods - fake select for union execution allocated only once (it was allocated for every subselect with union executing) changes: fixed bug with outer fields name resolution of subqueries which belong to global ORDER BY clause remuved select_lex() function, now thd->lex.current_select always have type SELECT_LEX new SELECT_LEX (fake_select_lex) will be allocated in case of UNION for using in UNION processing fake_select_lex allocated for union hold global ORDER BY & LIMIT clauses and have linkage equal to GLOBAL_OPTIONS_TYPE new description of SELECT_LEX tree (SCRUM)
-
pem@mysql.com authored
(Needed for platforms with the traditional bzero prototype.) Fixes BUG#460.
-
- 01 Jul, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
removed outer resolving flag (because of movingtransformation after fix_fields)
-
- 26 Jun, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
fixed BUG #726
-
- 24 Jun, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
fixed bug of current select pointer in subselect execution fixed layuot
-
- 21 May, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 17 May, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 14 May, 2003 1 commit
-
-
bell@sanja.is.com.ua authored
removed "of is null" if it is possible (this cset should be SCRUM related, but not approved as scrum task yet)
-
- 21 Apr, 2003 1 commit
-
-
Sinisa@sinisa.nasamreza.org authored
Very nasty bug. It was caused by double free()-ing memory of join->select and join->quick. I was able to pinpoint it only after using Valgrind. Plus better fix for bug with TMP_TABLE_PARAM. Plus new constructor for SELECT_LEX.
-
- 07 Apr, 2003 1 commit
-
-
bar@bar.mysql.r18.ru authored
Two separate classes sys_var_client_collation and sys_var_literal_collation have been added for "literal_collation" and "client_collation" variables.
-
- 01 Apr, 2003 1 commit
-
-
bar@bar.mysql.r18.ru authored
-
- 20 Mar, 2003 1 commit
-
-
bar@bar.mysql.r18.ru authored
-
- 18 Mar, 2003 1 commit
-
-
bar@bar.mysql.r18.ru authored
-
- 15 Mar, 2003 1 commit
-
-
bar@bar.mysql.r18.ru authored
Use LEX charset instead of system one
-
- 14 Mar, 2003 1 commit
-
-
bar@bar.mysql.r18.ru authored
-