An error occurred fetching the project authors.
- 22 Nov, 2002 1 commit
-
-
pem@mysql.com authored
This is required for prepared statements and stored procedures.
-
- 21 Nov, 2002 2 commits
-
-
monty@mashka.mysql.fi authored
-
monty@mashka.mysql.fi authored
New operators MOD and DIV SELECT ... FROM DUAL TRUE = 1 and FALSE = 0
-
- 20 Nov, 2002 2 commits
-
-
monty@mashka.mysql.fi authored
Fix for shutdown on Mac OS X
-
monty@mashka.mysql.fi authored
-
- 16 Nov, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Add support for LIMIT # OFFSET # Changed lock handling: Now all locks should be stored in TABLE_LIST instead of passed to functions. Don't call query_cache_invalidate() twice in some cases mysql_change_user() now clears states to be equal to close + connect. Fixed a bug with multi-table-update and multi-table-delete when used with LOCK TABLES Fixed a bug with replicate-do and UPDATE
-
- 11 Nov, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
This is coded to not cause a speed impact on top level AND expressions where we don't care if an AND expression returns 0 or NULL
-
- 10 Nov, 2002 1 commit
-
-
bar@bar.mysql.r18.ru authored
SHOW CREATE DATABASE [WITH IF NOT EXISTS] dbname
-
- 07 Nov, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
Let MySQL 4.0 read 4.1 .frm files without 4.1 specific extensions New variables @@rand_seed1 and @@rand_seed2 (used by replication) DROP TEMPORARY TABLE
-
- 06 Nov, 2002 1 commit
-
-
bar@bar.mysql.r18.ru authored
SHOW CREATE DATABASE [IF NOT EXISTS] dbname Version dependant parts are displayed in appropriative comments: CREATE DATABASE /*!32312 IF NOT EXISTS*/ `ucs` /*!40100 DEFAULT CHARACTER SET ucs2*/
-
- 04 Nov, 2002 2 commits
-
-
bell@sanja.is.com.ua authored
-
bell@sanja.is.com.ua authored
onversion with check
-
- 31 Oct, 2002 1 commit
-
-
nick@mysql.com authored
-
- 30 Oct, 2002 3 commits
-
-
vva@genie.(none) authored
-
bell@sanja.is.com.ua authored
fixed some possible bugs
-
bar@bar.mysql.r18.ru authored
-
- 29 Oct, 2002 1 commit
-
-
monty@hundin.mysql.fi authored
Fixed reference to freed memory in acl_init()/grant_init() Fixed possible memory leak. (Could only happen in very strange circumstances) Fixed bug in ALTER TABLE with BDB tables Updated mysql-test for valgrind
-
- 28 Oct, 2002 1 commit
-
-
vva@genie.(none) authored
-
- 26 Oct, 2002 2 commits
-
-
serg@serg.mysql.com authored
cleanup
-
bell@sanja.is.com.ua authored
fixed subselect error handling bug fixed subselect UNION ALL bug fixed thd->lex.select restoring explain UNION subselect bug
-
- 25 Oct, 2002 3 commits
-
-
bar@bar.mysql.r18.ru authored
-
bar@bar.mysql.r18.ru authored
-
nick@mysql.com authored
-
- 24 Oct, 2002 3 commits
-
-
nick@mysql.com authored
-
nick@mysql.com authored
STOP|START SLAVE rather than SLAVE STOP|START, which is now deprecated and should be deleted in 4.1
-
bar@bar.mysql.r18.ru authored
and CHARSET is now the same with CHARACTER SET: CREATE DATABASE name [DEFAULT] {CHAR SET | CHARACTER SET | CHARSET} csname CREATE TABLE (...) [DEFAULT] {CHARSET | CHARACTER SET | CHAR SET} [=] csname To Paul and Arjen: However this should be recommended in db option to conform SQL99: CREATE DATABASE dbname DEFAULT CHARACTER SET csname In table option there is no SQL99 recommended syntax as far as table charset is MySQL extension.
-
- 23 Oct, 2002 3 commits
-
-
bar@bar.mysql.r18.ru authored
CREATE TABLE a (...) TYPE isam CHARSET latin1 MAX_ROWS 1000; CREATE TABLE a (...) TYPE=isam CHARSET=latin1 MAX_ROWS=1000; CREATE TABLE a (...) TYPE isam, CHARSET latin1, MAX_ROWS 1000; CREATE TABLE a (...) TYPE=isam, CHARSET=latin1, MAX_ROWS=1000;
-
bar@bar.mysql.r18.ru authored
CREATE TABLE a (...) TYPE isam CHARSET latin1 MAX_ROWS 1000; CREATE TABLE a (...) TYPE=isam CHARSET=latin1 MAX_ROWS=1000;
-
bar@bar.mysql.r18.ru authored
character set binary didn't work
-
- 16 Oct, 2002 2 commits
-
-
Sinisa@sinisa.nasamreza.org authored
I intend to do some more accelerations in mysql_execute_command and in SQLCOM_SELECT part for which I need to fix EXPLAIN with derived tables plus few additional items. If this proves to be much I wil just make it a new SCRUM task
-
Sinisa@sinisa.nasamreza.org authored
-
- 15 Oct, 2002 1 commit
-
-
pem@mysql.com authored
Fixed the remaining join variations, (left, right, natural, etc). (Previous fix only solved "," and "[cross] join".)
-
- 12 Oct, 2002 1 commit
-
-
pem@mysql.com authored
This is a simple fix, allowing a join_table_list in the right reduction of a normal_join sequence, instead of just a join_table. This makes things like "t1, (t2 left join t3)" work, but it also allows "join" and "cross join" instead of ",". This should fix the bug reported as: Subject: ODBC SQL syntax issue From: Ivan Vazharov Date: Mon, 30 Sep 2002 12:02:42 +0200
-
- 11 Oct, 2002 1 commit
-
-
Sinisa@sinisa.nasamreza.org authored
-
- 03 Oct, 2002 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 02 Oct, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Warning handling and initial prepared statement handling (last not complete yet) Changed a lot of functions that returned 0/1 to my_bool type. GRANT handling now uses read/write locks instead of mutex Change basic net functions to use THD instead of NET (needed for 4.1 protocol) Use my_sprintf instead of sprintf() + strlen() Added alloc_query() to be able to chare query initialization code with prepared statements. Cleanup handling of SHOW COUNT(*) WARNINGS and SELECT LAST_INSERT_ID() Note that the following test fails (will be fixed ASAP): sub_select, union, rpl_rotate_logs and rpl_mystery22
-
- 25 Sep, 2002 1 commit
-
-
serg@serg.mysql.com authored
-
- 23 Sep, 2002 1 commit
-
-
serg@serg.mysql.com authored
-
- 20 Sep, 2002 1 commit
-
-
monty@mashka.mysql.fi authored
Changed table_list->name -> table_list->alias to find places where we where using alias instead of table_name. This should fix some issues where --lower-case-table-names doesn't work properly under windows.
-
- 13 Sep, 2002 1 commit
-
-
bar@bar.mysql.r18.ru authored
-