mirror of
https://github.com/MariaDB/server.git
synced 2025-02-07 06:12:18 +01:00
![Thirunarayanan Balathandayuthapani](/assets/img/avatar_default.png)
- Remove the usage of alter_algorithm variable and disable the persistent statistics in alter_copy_bulk test case.
11 lines
495 B
Text
11 lines
495 B
Text
--- bulk_copy_alter.result
|
|
+++ bulk_copy_alter,non_bulk_alter_copy.result
|
|
@@ -6,7 +6,7 @@
|
|
INSERT INTO t1 SELECT repeat('b', 200), seq FROM seq_3_to_65536;
|
|
ALTER TABLE t1 ALGORITHM=COPY, ADD INDEX(f2);
|
|
ALTER TABLE t1 ALGORITHM=COPY, ADD PRIMARY KEY(f1(2));
|
|
-ERROR 23000: Duplicate entry 'bb' for key 'PRIMARY'
|
|
+ERROR 23000: Duplicate entry 'aa' for key 'PRIMARY'
|
|
INSERT INTO t1 VALUES(repeat('a', 200), 1);
|
|
ALTER TABLE t1 ADD UNIQUE KEY(f2);
|
|
ERROR 23000: Duplicate entry '1' for key 'f2_2'
|