- 20 Jan, 2005 32 commits
-
-
unknown authored
into mysql.com:/home/mydev/mysql-5.0-5000
-
unknown authored
into mysql.com:/usr/local/home/marty/MySQL/mysql-5.0 sql/ha_ndbcluster.cc: Auto merged
-
unknown authored
corrected bug when looking at dist keys in create table ndb/src/ndbapi/NdbDictionaryImpl.cpp: corrected bug when looking at dist keys in create table
-
unknown authored
-
unknown authored
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0-ndb mysql-test/r/ndb_autodiscover.result: Auto merged ndb/src/kernel/blocks/dbtc/DbtcMain.cpp: Auto merged
-
unknown authored
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0 mysql-test/mysql-test-run.sh: Auto merged
-
unknown authored
Merged a different solution from 4.1 to 5.0. Unexplainable diffs. mysql-test/r/insert_select.result: BUG#6034 - Error code 124: Wrong medium type Merge seems to replace the test results by a new version of itself. mysql-test/t/insert_select.test: BUG#6034 - Error code 124: Wrong medium type Merge seems to replace the test case by a new version of itself. sql/sql_select.cc: BUG#6034 - Error code 124: Wrong medium type This is solved differently between 5.0 and 4.1. The differences are unexplainable. result->prepare2() is new to 5.0, but doesn't appear in the diffs. Weird.
-
unknown authored
added testcase for Bug#8035 added option to wait for not-started Bug#8035 mysql-test/mysql-test-run.sh: added variable NDB_MGM to be able to run the management client in tests mysql-test/r/ndb_autodiscover.result: added testcase for Bug#8035 mysql-test/t/ndb_autodiscover.test: added testcase for Bug#8035 ndb/tools/waiter.cpp: added option to wait for not-started sql/lock.cc: Bug#8035
-
unknown authored
into mysql.com:/usr/home/bar/mysql-5.0 mysql-test/r/func_in.result: Auto merged sql/item_cmpfunc.cc: Auto merged
-
unknown authored
Completely recoded the bugfix for 4.1. This is just a merge changeset. mysql-test/r/insert_select.result: BUG#6034 - Error code 124: Wrong medium type Replaced TYPE= by ENGINE= mysql-test/t/insert_select.test: BUG#6034 - Error code 124: Wrong medium type Replaced TYPE= by ENGINE= sql/sql_select.cc: BUG#6034 - Error code 124: Wrong medium type Completely recoded the bugfix for 4.1.
-
unknown authored
Bug#7834 Illegal mix of collations in IN operator IN was the first function supporting character set convertion. agg_arg_charsets() was written afterwards, which is more flexible. Now IN just reuses this function. sql/item_cmpfunc.cc: Bug#7834 Illegal mix of collations in IN operator IN was the first function supporting character set convertion. agg_arg_charsets() was written afterwards, which is more flexible. Now IN just reuses this function.
-
unknown authored
Adding Shift-JIS error messages for Japanese Windows distributions. Thanks to Serg for help with a perl program to merge 4.1 messages into 5.0 format :) sql/share/errmsg.txt: Adding Shift-JIS error messages for Japanese Windows distributions. Thanks Serg for help :)
-
unknown authored
into mysql.com:/home/jonas/src/mysql-5.0 ndb/src/kernel/blocks/dbtc/DbtcMain.cpp: Auto merged
-
unknown authored
into mysql.com:/home/jonas/src/mysql-4.1
-
unknown authored
-
unknown authored
release connections when last op was simple read ndb/src/kernel/blocks/dbtc/DbtcMain.cpp: bug#8010 release connections when last op was simple read
-
unknown authored
-
unknown authored
environment (using "build" on SUSE Linux) Build-tools/Do-rpm: - added functionality to perform RPM builds inside of a chrooted build environment (using "build" on SUSE Linux) - see "--help" for more details
-
unknown authored
into mysql.com:/usr/home/bar/mysql-5.0
-
unknown authored
into mysql.com:/space/my/mysql-4.1
-
unknown authored
into mysql.com:/home/jonas/src/mysql-5.0-ndb
-
unknown authored
into mysql.com:/home/jonas/src/mysql-5.0
-
unknown authored
into mysql.com:/home/jonas/src/mysql-4.1
-
unknown authored
into mysql.com:/usr/home/bar/mysql-5.0 BitKeeper/deleted/.del-errmsg.txt~31abf77f9e7b9211: Auto merged
-
unknown authored
Minor fix after character set conversion. sql/share/japanese-sjis/errmsg.txt: Minor fix after character set conversion.
-
unknown authored
into mysql.com:/home/psergey/mysql-5.0-fix-vg1
-
unknown authored
into mysql.com:/home/jonas/src/mysql-5.0
-
unknown authored
into mysql.com:/home/jonas/src/mysql-4.1
-
unknown authored
Auto-merge fix: removing this file: error messages are done in a different way in 5.0. .del-errmsg.txt~31abf77f9e7b9211: Delete: sql/share/japanese-sjis/errmsg.txt BitKeeper/deleted/.del-errmsg.txt~31abf77f9e7b9211: Delete: sql/share/japanese-sjis/errmsg.txt configure.in: Auto-merge fix: removing this file: error messages are done in a different way in 5.0.
-
unknown authored
into mysql.com:/usr/home/bar/mysql-5.0 configure.in: Auto merged
-
unknown authored
Add SJIS version of Japanese error messages. Windows version should include this new file, instead of the EUC-JP version. configure.in: Add SJIS version of Japanese error messages. Windows version should include this new file, instead of the EUC-JP version.
-
unknown authored
new file
-
- 19 Jan, 2005 8 commits
-
-
unknown authored
Version for 5.0. Committed for merge. If the result table is one of the select tables in INSERT SELECT, we must not disable the result tables indexes before selecting. Now the preparation is split into two prepare methods. The first detects the situation and defers some preparations until the second phase. mysql-test/r/insert_select.result: BUG#6034 - Error code 124: Wrong medium type. The test results. mysql-test/t/insert_select.test: BUG#6034 - Error code 124: Wrong medium type. The test case. sql/sql_class.h: BUG#6034 - Error code 124: Wrong medium type. Added a new method for deferred preparation actions. sql/sql_insert.cc: BUG#6034 - Error code 124: Wrong medium type. If the insert table is one of the select tables, a part of the result table preparations like disabling indexes has to be done after the select phase. This is now done in the new method select_insert::prepare2(). sql/sql_select.cc: BUG#6034 - Error code 124: Wrong medium type. The result table preparation is now split into prepare() and prepare2(). Disabling indexes and other preparation stuff is deferred until after the selection phase.
-
unknown authored
Version for 4.1. Committed for merge. If the result table is one of the select tables in INSERT SELECT, we must not disable the result tables indexes before selecting. mysql_execute_command() detects the match for other reasons and adds the flag OPTION_BUFFER_RESULT to the 'select_options'. In this case the result is put into a temporary table first. Hence, we can defer the preparation of the insert table until the result is to be used. mysql-test/r/insert_select.result: BUG#6034 - Error code 124: Wrong medium type. The test results. mysql-test/t/insert_select.test: BUG#6034 - Error code 124: Wrong medium type. The test case. sql/sql_select.cc: BUG#6034 - Error code 124: Wrong medium type. With OPTION_BUFFER_RESULT in the 'select_options', defer the preparation of the insert table until the result is to be used.
-
unknown authored
Version for 4.0. Committed for merge. If the result table is one of the select tables in INSERT SELECT, we must not disable the result tables indexes before selecting. mysql_execute_command() detects the match for other reasons and adds the flag OPTION_BUFFER_RESULT to the 'select_options'. In this case the result is put into a temporary table first. Hence, we can defer the preparation of the insert table until the result is to be used. mysql-test/r/insert_select.result: BUG#6034 - Error code 124: Wrong medium type. The test results. mysql-test/t/insert_select.test: BUG#6034 - Error code 124: Wrong medium type. The test case. sql/sql_select.cc: BUG#6034 - Error code 124: Wrong medium type. With OPTION_BUFFER_RESULT in the 'select_options', defer the preparation of the insert table until the result is to be used. Unfortunately, this happens at several places.
-
unknown authored
into mysql.com:/dbdata/psergey/mysql-5.0-bug7885 mysql-test/r/subselect.result: Auto merged mysql-test/t/subselect.test: Auto merged sql/item_subselect.cc: Auto merged
-
unknown authored
into mysql.com:/dbdata/psergey/mysql-4.1-bug7885
-
unknown authored
into mysql.com:/home/jimw/my/mysql-5.0-clean
-
unknown authored
BUILD/SETUP.sh: Add --with-federated-storage-engine to max_configs
-
unknown authored
into mysql.com:/home/jimw/my/mysql-5.0-clean BitKeeper/deleted/.del-compile-amd64-debug-max: Delete: BUILD/compile-amd64-debug-max BUILD/SETUP.sh: Auto merged BitKeeper/deleted/.del-compile-amd64-max: Delete: BUILD/compile-amd64-max
-