- 22 Mar, 2006 2 commits
- 21 Mar, 2006 13 commits
-
-
unknown authored
mysql-test/extra/binlog_tests/ctype_cp932_binlog.test: Moving statement-based replication test away from common file. mysql-test/r/ctype_cp932_binlog_stm.result: Result change mysql-test/t/ctype_cp932_binlog_stm.test: Moving statement-based replication test away from common file.
-
unknown authored
(approved by kostja) libmysql/libmysql.c: fixed merge problem (bk commit - 5.1 tree (anozdrin:1.2163) (approved by kostja)
-
unknown authored
into mysql.com:/home/bk/b18293-mysql-5.1-new sql/item.cc: Auto merged mysql-test/extra/binlog_tests/ctype_cp932_binlog.test: Auto merged sql/log_event.cc: Auto merged sql/mysql_priv.h: Auto merged sql/sp_head.cc: Auto merged mysql-test/r/binlog_stm_ctype_ucs.result: Merge with mysql-5.0
-
unknown authored
This to save 5 seconds of test time. More test to follow. :-) mysql-test/r/rpl_flushlog_loop.result: Updated result file mysql-test/t/rpl_flushlog_loop.test: Make test use wait_slave_status instead of sleep
-
unknown authored
into mysql.com:/home/bk/b18293-mysql-5.0
-
unknown authored
Generating character set-independent quoting of strings for the binary log when executing statements from inside stored procedure. mysql-test/r/ctype_cp932_binlog.result: Result change mysql-test/t/ctype_cp932_binlog.test: Adding check that string literals are written correctly for multi-byte character sets. sql/item.cc: Cutting out character set-independent string escaping code and putting it in a separate function. sql/log_event.cc: Adding characters set-independent code to separate function. sql/mysql_priv.h: Adding new function. sql/sp_head.cc: Escaping string value representing a string item.
-
unknown authored
configure.in: Auto merged mysql-test/lib/mtr_timer.pl: Auto merged mysql-test/r/information_schema.result: Auto merged mysql-test/r/information_schema_db.result: Auto merged mysql-test/r/query_cache_notembedded.result: Auto merged mysql-test/t/information_schema.test: Auto merged mysql-test/t/query_cache_notembedded.test: Auto merged scripts/make_binary_distribution.sh: Auto merged sql/sql_acl.cc: Auto merged sql/sql_parse.cc: Auto merged sql/sql_show.cc: Auto merged sql/sql_yacc.yy: Auto merged storage/ndb/src/kernel/blocks/backup/Backup.cpp: Auto merged sql/ha_innodb.cc: manual merge sql/sql_insert.cc: manual merge
-
unknown authored
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.1-new
-
unknown authored
-
unknown authored
into c-8808e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/bug17754
-
unknown authored
-
unknown authored
into c-8808e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/bug17754 mysql-test/r/partition.result: Auto merged mysql-test/t/partition.test: Auto merged sql/sql_table.cc: Auto merged sql/sql_partition.cc: manual merge
-
unknown authored
Fixed result files mysql-test/r/ndb_partition_key.result: Fixed result files mysql-test/r/partition.result: Fixed result files
-
- 20 Mar, 2006 15 commits
-
-
unknown authored
by previous push.
-
unknown authored
into c-8808e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/bug17754 mysql-test/r/partition.result: Auto merged mysql-test/t/partition.test: Auto merged sql/sql_lex.h: Auto merged sql/sql_partition.cc: Auto merged sql/sql_table.cc: Auto merged sql/sql_yacc.yy: Auto merged mysql-test/r/ndb_partition_key.result: manual merge mysql-test/t/ndb_partition_key.test: manual merge
-
unknown authored
Added new syntax ALTER TABLE t1 REMOVE PARTITIONING, changed semantics of ALTER TABLE t1 ENGINE=X; to not remove partitioning Fix a number of mix engine bugs in partitioning mysql-test/r/ndb_partition_key.result: Added a number of new test cases mysql-test/r/partition.result: Added a number of new test cases mysql-test/t/ndb_partition_key.test: Added a number of new test cases mysql-test/t/partition.test: Added a number of new test cases sql/lex.h: REMOVE and PARTITIONING added as keywords in parser sql/sql_lex.h: Added flag to alter_info flag sql/sql_partition.cc: Fixes for the new syntax, changes of the current semantics of the syntax. Fixes for errors in handling mixes of table handlers in partitioning syntax for ALTER TABLE sql/sql_table.cc: Bug fix sql/sql_yacc.yy: New syntax for REMOVE PARTITIONING
-
unknown authored
-
unknown authored
sql/sql_partition.cc: Auto merged
-
unknown authored
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.1-new
-
unknown authored
-
unknown authored
added HA_EXTRA_WRITE_CACHE case to ha_partition::extra() mysql-test/r/partition.result: Fix for bug#15336 Partitions: crash if create table as select test case mysql-test/t/partition.test: Fix for bug#15336 Partitions: crash if create table as select test case
-
unknown authored
sql/sql_class.h: line #ifdef-ed
-
unknown authored
use part_info->item_free_list instead of thd->free_list during partition function parsing mysql-test/r/partition.result: Bug#14367 Partitions: crash if utf8 column test case mysql-test/t/partition.test: Bug#14367 Partitions: crash if utf8 column test case sql/item.cc: Bug#14367 Partitions: crash if utf8 column create copy of string in current mem_root to avoid memory leak
-
unknown authored
additional fixes mysql-test/r/partition.result: result fixed mysql-test/t/partition.test: testcase sql/sql_parse.cc: part_info cloning moved here sql/sql_partition.cc: fixes sql/sql_table.cc: part_info cloning removed
-
unknown authored
into mysql.com:/home/hf/work/mysql-5.1.clean
-
unknown authored
additional check for subselect mysql-test/r/information_schema.result: Fix for bug#18224 VIEW on information_schema crashes the server test case mysql-test/t/information_schema.test: Fix for bug#18224 VIEW on information_schema crashes the server test case
-
unknown authored
Crash happened when one selected data from one of INFORMATION_SCHEMA tables and in order to build its contents server had to open view which used stored function and table or view on which one had not global or database-level privileges (e.g. had only table-level or had no privileges at all). The crash was caused by usage of check_grant() function, which assumes that either number of tables to be inspected by it is limited explicitly or table list used and thd->lex->query_tables_own_last value correspond to each other (the latter should be either 0 or point to next_global member of one of elements of this table list), in conditions when above assumptions were not true. This fix just explicitly limits number of tables to be inspected. Other negative effects which are caused by the fact that thd->lex->query_tables_own_last might not be set properly during processing of I_S tables are less disastrous and will be reported and fixed separetely. mysql-test/r/information_schema_db.result: Fix for bug #18113 "SELECT * FROM information_schema.xxx crashes server" test case mysql-test/t/information_schema_db.test: Fix for bug #18113 "SELECT * FROM information_schema.xxx crashes server" test case sql/sql_acl.cc: added note
-
unknown authored
sql/ha_ndbcluster.h: Fix HPUX compilation (copy-paste error I think).
-
- 18 Mar, 2006 9 commits
-
-
unknown authored
into mysql.com:/home/hartmut/projects/mysql/dev/5.1/gcc41
-
unknown authored
-
unknown authored
into mysql.com:/home/bk/b17400-mysql-5.1-new
-
unknown authored
Fixing tests to get the test suite passing. This does not hide the bug since it's a matter of performance, not correctness. mysql-test/t/binlog_row_blackhole.test: Disabling ps-protocol for the test. mysql-test/t/binlog_row_insert_select.test: Disabling ps-protocol for the test. mysql-test/t/binlog_row_mix_innodb_myisam.test: Disabling ps-protocol for the test. mysql-test/t/rpl_row_create_table.test: Disabling ps-protocol for the test. mysql-test/t/rpl_row_flsh_tbls.test: Disabling ps-protocol for the test.
-
unknown authored
into mysql.com:/home/hf/work/mysql-5.1.clean sql/sql_partition.cc: Auto merged
-
unknown authored
added THD::work_part_info member where we now store modified partition_info structure. It allows no solve problem when different parts of the part_info get into different mem_roots sql/partition_info.cc: get_clone implementation sql/partition_info.h: get_clone() declared sql/sql_class.h: THD::work_part_info added sql/sql_partition.cc: thd->work_part_info instead of lex->part_info sql/sql_table.cc: thd->work_part_info instad of lex->part_info sql/unireg.cc: thd->work_part_info instad of lex->part_info
-
unknown authored
sql/ha_innodb.cc: Auto merged
-
unknown authored
-
unknown authored
into mysql.com:/usr/local/home/marty/MySQL/mysql-5.1-new
-
- 17 Mar, 2006 1 commit
-
-
unknown authored
into mysql.com:/home/bk/b17400-mysql-5.1-new
-