We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3437cf4 commit 227f1deCopy full SHA for 227f1de
3 files changed
localtests/fail-float-unique-key/create.sql
@@ -0,0 +1,11 @@
1
+drop table if exists gh_ost_test;
2
+create table gh_ost_test (
3
+ f float,
4
+ i int not null,
5
+ ts timestamp default current_timestamp,
6
+ dt datetime,
7
+ key i_idx(i),
8
+ unique key f_uidx(f)
9
+) auto_increment=1;
10
+
11
+drop event if exists gh_ost_test;
localtests/fail-float-unique-key/expect_failure
@@ -0,0 +1 @@
+No shared unique key can be found
localtests/fail-float-unique-key/extra_args
+--alter="add column v varchar(32)"
0 commit comments