You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG#35304391 MySQL Shell detect/warm case sensitivity
Dump loader did not warn if any rows were replaced during the load, this
is now fixed.
Change-Id: Ie580e8097813b4f40a8aee1924463836cac3f8d9
(cherry picked from commit 857fcd2ce3dba380525c4952dfdb541e76bf8383)
#@<> BUG#35304391 - loader should notify if rows were replaced during load
2729
+
# constants
2730
+
dump_dir=os.path.join(outdir, "bug_35304391")
2731
+
tested_schema="tested_schema"
2732
+
tested_table="tested_table"
2733
+
2734
+
# setup
2735
+
shell.connect(__sandbox_uri1)
2736
+
session.run_sql("DROP SCHEMA IF EXISTS !", [ tested_schema ])
2737
+
session.run_sql("CREATE SCHEMA ! DEFAULT CHARACTER SET latin1 COLLATE latin1_general_cs", [ tested_schema ])
2738
+
session.run_sql("CREATE TABLE !.! (id tinyint AUTO_INCREMENT PRIMARY KEY, alias varchar(12) NOT NULL UNIQUE KEY, name varchar(32) NOT NULL)", [ tested_schema, tested_table ])
0 commit comments