An error occurred fetching the project authors.
- 19 Aug, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 13 Aug, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 11 Aug, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 10 Aug, 2004 1 commit
-
-
dlenev@brandersnatch.localdomain authored
Instead of trying to open time zone tables during calculation of CONVERT_TZ() function or setting of @@time_zone variable we should open and lock them with the rest of statement's table (so we should add them to global table list) and after that use such pre-opened tables for loading info about time zones.
-
- 26 Jul, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 08 Jul, 2004 1 commit
-
-
bar@mysql.com authored
also known as BUG#2326 Charset of table is determined by charset of db only if "USE db;"
-
- 07 Jul, 2004 1 commit
-
-
bar@mysql.com authored
-
- 02 Jul, 2004 1 commit
-
-
bar@mysql.com authored
-
- 26 Jun, 2004 2 commits
-
-
serg@serg.mylan authored
-
serg@serg.mylan authored
-
- 24 Jun, 2004 2 commits
-
-
bell@sanja.is.com.ua authored
-
konstantin@mysql.com authored
work (prepared statements)" and after-review fixes: - str_to_TIME renamed to str_to_datetime to pair with str_to_time - functions str_to_time and str_to_TIME moved to sql-common - send_data_str now supports MYSQL_TYPE_TIME, MYSQL_TIME_DATE, MYSQL_TIME_DATETIME types of user input buffers. - few more comments in the client library - a test case added.
-
- 23 Jun, 2004 3 commits
-
-
bell@sanja.is.com.ua authored
-
serg@serg.mylan authored
more logical table/index_flags return HA_ERR_WRONG_COMMAND instead of abstract methods where appropriate max_keys and other limits renamed to max_supported_keys/etc max_keys/etc are now wrappers to max_supported_keys/etc ha_index_init/ha_rnd_init/ha_index_end/ha_rnd_end are now wrappers to real {index,rnd}_{init,end} to enforce strict pairing
-
sergefp@mysql.com authored
-
- 22 Jun, 2004 1 commit
-
-
dlenev@brandersnatch.localdomain authored
Now ESCAPE in LIKE will accept not only string literal but constant delimited expression.
-
- 18 Jun, 2004 1 commit
-
-
monty@mysql.com authored
Fixed problem with NULL and derived tables (Bug #4097) Cleanup of new pushed code
-
- 07 Jun, 2004 1 commit
-
-
sergefp@mysql.com authored
-
- 03 Jun, 2004 2 commits
-
-
guilhem@mysql.com authored
by binlogging some SET ONE_SHOT CHARACTER_SETetc, which will be enough until we have it more compact and more complete in 5.0. With the present patch, replication will work ok between 4.1.3 master and slaves, as long as: - master and slave have the same GLOBAL.COLLATION_SERVER - COLLATION_DATABASE and CHARACTER_SET_DATABASE are not used - application does not use the fact that table is created with charset of the USEd db (BUG#2326). all of which are not too hard to fulfill. ONE_SHOT is reserved for internal use of mysqlbinlog|mysql and works only for charsets, so we give error if used for non-charset vars. Fix for BUG#3875 "mysqlbinlog produces wrong ouput if query uses variables containing quotes" and BUG#3943 "Queries with non-ASCII literals are not replicated properly after SET NAMES". Detecting that master and slave have different global charsets or server ids.
-
paul@kite-hub.kitebird.com authored
(Note: This affects only comments, not variable names.)
-
- 24 May, 2004 1 commit
-
-
dlenev@brandersnatch.localdomain authored
The code in mysql_create_table() code assumes that if lower_case_names==2 then table alias should contain unchanged table name, and this was not true for temporary tables which had 'tmp-table' constant as alias. Now we are using table name as alias for such tables.
-
- 21 May, 2004 2 commits
-
-
vva@eagle.mysql.r18.ru authored
to make list of parameters in mysql_alter_table shorted to avoid warning in MSVC (windows) building
-
sergefp@mysql.com authored
-
- 19 May, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Made the combination of INTO and FROM DUAL work, e.g. SELECT 1 INTO @x FROM DUAL. As a consequence, DUAL is made a reserved word. It would work to not have it reserved, but it was deemed to be confusing as a user defined table by the same name then must be qualified with a db (schema).
-
- 14 May, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 11 May, 2004 2 commits
-
-
monty@mysql.com authored
-
monty@mysql.com authored
Prefer not automatic keys before automatic keys. If there is two conf
-
- 05 May, 2004 2 commits
-
-
monty@mysql.com authored
-
bell@sanja.is.com.ua authored
SQL_SELECT_LIMIT as default will be applied only for SELECT statement if there was not explicit LIMIT clause correct table list passed to class constructor of select_update
-
- 30 Apr, 2004 1 commit
-
-
sergefp@mysql.com authored
-
- 28 Apr, 2004 1 commit
-
-
antony@ltantony.dsl-verizon.net authored
CREATE statement allowed extra unnecessary commas
-
- 21 Apr, 2004 1 commit
-
-
marko@hundin.mysql.fi authored
Remove redundant keys in CREATE TABLE and ALTER TABLE
-
- 15 Apr, 2004 1 commit
-
-
magnus@neptunus.(none) authored
-
- 07 Apr, 2004 1 commit
-
-
monty@mysql.com authored
Fixed problems with group_concat() and HAVING Updated crash-me values
-
- 06 Apr, 2004 1 commit
-
-
gluh@gluh.mysql.r18.ru authored
Here is 2nd version. 'reduce/reduce conflicts' issue is fixed
-
- 05 Apr, 2004 3 commits
-
-
sergefp@mysql.com authored
SQL Syntax for Prepared Statements (WL#1622) ps.test, ps.result: new file
-
gluh@gluh.mysql.r18.ru authored
'SHOW GRANTS' syntax is added 'SHOW GRANTS FOR CURRENT_USER' syntax is added 'SHOW GRANTS FOR CURRENT_USER()' syntax is added CURRENT_USER without parens in expressions(SELECT CURRENT_USER;)
-
monty@mysql.com authored
Fixed bugs in group_concat with ORDER BY and DISTINCT (Bugs #2695, #3381 and #3319) Fixed crash when doing rollback in slave and the io thread catched up with the sql thread Set locked_in_memory properly
-
- 02 Apr, 2004 1 commit
-
-
dlenev@jabberwock.localdomain authored
Final version of patch. Adds support for specifying of DEFAULT NOW() and/or ON UPDATE NOW() clauses for TIMESTAMP field definition. Current implementation allows only one such field per table and uses several unireg types for storing info about this properties of field. It should be replaced with better implementation when new .frm format is introduced.
-
- 31 Mar, 2004 1 commit
-
-
monty@mysql.com authored
Portability fixes
-