diff options
author | unknown <guilhem@mysql.com> | 2005-11-19 15:56:55 +0100 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2005-11-19 15:56:55 +0100 |
commit | a93a2a90e6ca025eaa33ef133338052c112b20ec (patch) | |
tree | 45dfb219381babc86dce7da04164901590f67493 /mysql-test/r/ndb_charset.result | |
parent | 51972f1aead92b17338c87ac8a79380ae5cefe32 (diff) | |
download | mariadb-git-a93a2a90e6ca025eaa33ef133338052c112b20ec.tar.gz |
Fix after merge of 5.0 into 5.1. Failed tests before merge: bdb-deadlock, ndb_cache2, ndb_multi2,
ps_6bdb (this one fails circa once over 4 runs). After the merge: the same PLUS mysql_client_test&sp (due to problem in fix of BUG#14845 which has also
been noticed in 5.0 too and Konstantin is looking at it) PLUS mysqlcheck (just consequence of mysql_client_test).
And a replication bugfix (thd->spcont must be taken into account when calling tables_ok(), as in 5.0,
and so some brackets were missing which changed one test).
Pekka will look at the NDB code where I just used "ul": ndb_charset test, and storage/ndb/src/kernel/vm/SimulatedBlock.cpp
and storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp (SimulatedBlock.hpp automerged);
please also check storage/ndb/src/ndbapi/NdbRecAttr.cpp. Petr please check ha_tina.cc.
mysql-test/r/ndb_charset.result:
"ul" in merge (Pekka please fix)
mysql-test/t/ndb_charset.test:
"ul" in merge (Pekka please fix)
sql/sql_acl.cc:
missing ()
sql/sql_parse.cc:
If thd->spcont is true, always replicate (as in 5.0) (bad old merge probably).
Diffstat (limited to 'mysql-test/r/ndb_charset.result')
-rw-r--r-- | mysql-test/r/ndb_charset.result | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/mysql-test/r/ndb_charset.result b/mysql-test/r/ndb_charset.result index b1f8190f0ca..32843fd7731 100644 --- a/mysql-test/r/ndb_charset.result +++ b/mysql-test/r/ndb_charset.result @@ -306,21 +306,11 @@ count(*) drop table t1; create table t1 ( a char(10) primary key -) engine=ndbcluster default charset=latin1; -insert into t1 values ('aaabb'); -select * from t1; -a -aaabb -replace into t1 set a = 'AAABB'; -select * from t1; -a -AAABB -replace into t1 set a = 'aAaBb'; -select * from t1; -a -aAaBb -replace into t1 set a = 'aaabb'; +) engine=ndb; +insert into t1 values ('jonas % '); +replace into t1 values ('jonas % '); +replace into t1 values ('jonas % '); select * from t1; a -aaabb +jonas % drop table t1; |