- 17 Oct, 2004 1 commit
-
-
unknown authored
ndb/src/ndbapi/ndberror.c: 4006
-
- 15 Oct, 2004 5 commits
-
-
unknown authored
into mysql.com:/home/jonas/src/mysql-4.1-ndb
-
unknown authored
into mysql.com:/home/jonas/src/mysql-4.1
-
unknown authored
into mysql.com:/home/jonas/src/mysql-4.1-ndb
-
unknown authored
ndb/src/kernel/blocks/dblqh/Dblqh.hpp: Fix scan out of keyinfo buffers ndb/src/kernel/blocks/dblqh/DblqhMain.cpp: Fix scan out of keyinfo buffers ndb/src/ndbapi/NdbOperationExec.cpp: Handle TCKEYREF connect wrt dirty/simple read ndb/src/ndbapi/NdbScanOperation.cpp: Set error code ndb/test/src/UtilTransactions.cpp: Handle temporary errors
-
unknown authored
Tagged ChangeSet 1.2091 as mysql-4.1.6 configure.in: Updated version string to 4.1.7 configure.in: Updated version string to 4.1.7
-
- 14 Oct, 2004 19 commits
-
-
unknown authored
let's not assume that char is signed (its signedness is not defined). The server was also affected by the wrong typedef. include/my_global.h: Fix for Bug#6024 "Test "client_test" fails in 4.1.6-gamma build (1)": let's not assume that char is signed (its signedness is not defined). libmysql/libmysql.c: Fix for Bug#6024 "Test "client_test" fails in 4.1.6-gamma build (1)": let's not assume that char is signed (its signedness is not defined).
-
unknown authored
Fix for Bug#6025 "Test "client_test" fails in 4.1.6-gamma build (2)". No need for a test case, the bug is covered already. libmysql/libmysql.c: Fix for Bug#6025 "Test "client_test" fails in 4.1.6-gamma build (2)": the bug was in assignments like: *row+= read_binary_time(tm, row); which makes two assingments without a sequence point (read_binary_* changes *row too) => undefined behaviour. The fix changes read_binary_{time,date,datetime} signature to get rid of any probability to fall into the same trouble in future.
-
unknown authored
Fix a typo. Cleanup. BUILD/compile-hpux11-parisc2-aCC: Fix a typo. Cleanup.
-
unknown authored
into mysql.com:/space/my/mysql-4.1
-
unknown authored
into mysql.com:/space/my/mysql-4.1-build
-
unknown authored
client/mysqlimport.c: - Cleanup: removed unreferenced local variable "local_file"
-
unknown authored
into sanja.is.com.ua:/home/bell/mysql/bk/work-4.1
-
unknown authored
ndb/src/kernel/blocks/dbtux/Dbtux.hpp: remove obsolete node-access-size stuff ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp: remove obsolete node-access-size stuff ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp: remove obsolete node-access-size stuff ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp: remove obsolete node-access-size stuff ndb/src/kernel/blocks/dbtux/DbtuxSearch.cpp: remove obsolete node-access-size stuff ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp: remove obsolete node-access-size stuff
-
unknown authored
into mysql.com:/space/my/mysql-4.1
-
unknown authored
mysqlclient.dsp project files VC++Files/client/mysqlclient.dsp: - added missing file strings/my_strtoll10.c to the mysqlclient.dsp project file VC++Files/libmysql/libmysql.dsp: - added missing file strings/my_strtoll10.c to the libmysql.dsp project file
-
unknown authored
into sanja.is.com.ua:/home/bell/mysql/bk/work-4.1
-
unknown authored
Wrong handler. mysql-test/r/ctype_utf8.result: Wrong handler. mysql-test/t/ctype_utf8.test: Wrong handler.
-
unknown authored
-
unknown authored
into mysql.com:/home/jonas/src/mysql-4.1-ndb
-
unknown authored
ndb/src/kernel/blocks/dbtux/Dbtux.hpp: remove TreePos::m_ent ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp: remove TreePos::m_ent ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp: remove TreePos::m_ent mysql-test/ndb/ndb_range_bounds.pl: more options
-
unknown authored
Bug#6086 "ctype_utf8" test fails when MySQL does not include InnoDB support mysql-test/t/ctype_utf8.test: Bug#6086 "ctype_utf8" test fails when MySQL does not include InnoDB support
-
unknown authored
into sanja.is.com.ua:/home/bell/mysql/bk/work-4.1
-
unknown authored
-
unknown authored
into mysql.com:/space/pekka/ndb/version/my41-tux ndb/src/kernel/blocks/dblqh/DblqhMain.cpp: Auto merged sql/ha_ndbcluster.cc: Auto merged
-
- 13 Oct, 2004 15 commits
-
-
unknown authored
-
unknown authored
into mysql.com:/media/sda1/mysql/mysql-4.1-5985 sql/sql_class.h: Auto merged
-
unknown authored
crashes server." The fix makes Item_func_rand prepared-statements aware plus it fixes the case when RAND is used in prepared statements and replication is on (as well as several similar issues). Until now we did not reset THD before every execution of a prepared statement, so if some execution had set thd->time_zone_used or thd->rand_used they would not be reset until next mysql_parse. Some of post-review fixes done. mysql-test/r/ps.result: A test case for Bug#5985: test results fixed. mysql-test/t/ps.test: A test case for Bug#5985 "prepare stmt from "select rand(?)" crashes server." sql/item_func.cc: Actual fix for Bug#5985: Item_func_rand rewritten to be prepared statements aware. sql/item_func.h: Actual fix for Bug#5985: Item_func_rand rewritten to be prepared statements aware. sql/mysql_priv.h: We need a separate call to reset THD state before every execute of a prepared statement. Otherwise things like THD->user_var_events are never cleaned up and bloat binary log (as the list of events grows from execution to execution). sql/sql_class.cc: Statement::end_statement -> THD::end_statement() (a leftover from some design change which is not to pushed now, but the leftover is to be pushed). sql/sql_class.h: Statement::end_statement -> THD::end_statement() (a leftover from some design change which is not to pushed now, but the leftover is to be pushed). sql/sql_lex.cc: Move the part responsible for initializing LEX from mysql_init_query to lex_start. sql/sql_lex.h: All lex-related initialization is now in lex_start. Move thd->select_number to lex->select_number to be able to use it easily in lex_start. sql/sql_parse.cc: Split mysql_init_query into two functions: mysql_reset_thd_for_next_query, which is used in PS and conventional execution, and lex_start, used only when we want to parse something. Fix init_connect to use initialized THD. sql/sql_prepare.cc: Deploy mysql_reset_thd_for_next_query to reset THD state before execution of a prepared statement. Normally this should have been added to just one place, but we have to reset thd before assigning placeholders from variables, thus we can't do that in execute_stmt (yuck).
-
unknown authored
into sanja.is.com.ua:/home/bell/mysql/bk/work-4.1 sql/item_subselect.cc: Auto merged
-
unknown authored
into mysql.com:/home/jonas/src/mysql-4.1
-
unknown authored
Implement innobase_very_fast_shutdown and innobase_start_trx_and_assign_read_view(); these were requested by Guilhem sql/ha_innodb.h: Implement innobase_very_fast_shutdown and innobase_start_trx_and_assign_read_view(); these were requested by Guilhem sql/ha_innodb.cc: Implement innobase_very_fast_shutdown and innobase_start_trx_and_assign_read_view(); these were requested by Guilhem innobase/include/srv0srv.h: Implement innobase_very_fast_shutdown and innobase_start_trx_and_assign_read_view(); these were requested by Guilhem innobase/log/log0log.c: Implement innobase_very_fast_shutdown and innobase_start_trx_and_assign_read_view(); these were requested by Guilhem innobase/srv/srv0srv.c: Implement innobase_very_fast_shutdown and innobase_start_trx_and_assign_read_view(); these were requested by Guilhem
-
unknown authored
into mysql.com:/home/mydev/mysql-4.1
-
unknown authored
BUG#4335 - one name can be handler open'ed many times. Fixed problems detected on Windows build by VC++. Removed unused variables. Applied a neccessary cast.
-
unknown authored
Make checks (asserts) performed in client_test.c work in non-debug builds. tests/client_test.c: Make checks (asserts) performed in client_test.c work in non-debug builds: all asserts/DBUG_ASSERTs replaced with if (!(expr)) abort();
-
unknown authored
-
unknown authored
-
unknown authored
-
unknown authored
-
unknown authored
-
unknown authored
Handle commit of zero operations ndb/test/ndbapi/testBasic.cpp: Update usage of HugoOperattions::pkReadRecord More test for IgnoreError
-