mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixing a test
This commit is contained in:
@ -6,7 +6,7 @@ SET @save_sort_buffer_size= @@sort_buffer_size;
|
|||||||
SET sort_buffer_size=1024;
|
SET sort_buffer_size=1024;
|
||||||
CREATE TABLE t1(c1 CHAR(255) PRIMARY KEY) ENGINE=InnoDB;
|
CREATE TABLE t1(c1 CHAR(255) PRIMARY KEY) ENGINE=InnoDB;
|
||||||
INSERT INTO t1 VALUES (0), ('a'), ('b');
|
INSERT INTO t1 VALUES (0), ('a'), ('b');
|
||||||
ANALYZE TABLE T1 PERSISTENT FOR ALL;
|
ANALYZE TABLE t1 PERSISTENT FOR ALL;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
test.t1 analyze status Engine-independent statistics collected
|
test.t1 analyze status Engine-independent statistics collected
|
||||||
test.t1 analyze status OK
|
test.t1 analyze status OK
|
||||||
|
@ -12,7 +12,7 @@ SET sort_buffer_size=1024;
|
|||||||
CREATE TABLE t1(c1 CHAR(255) PRIMARY KEY) ENGINE=InnoDB;
|
CREATE TABLE t1(c1 CHAR(255) PRIMARY KEY) ENGINE=InnoDB;
|
||||||
|
|
||||||
INSERT INTO t1 VALUES (0), ('a'), ('b');
|
INSERT INTO t1 VALUES (0), ('a'), ('b');
|
||||||
ANALYZE TABLE T1 PERSISTENT FOR ALL;
|
ANALYZE TABLE t1 PERSISTENT FOR ALL;
|
||||||
SELECT * FROM t1;
|
SELECT * FROM t1;
|
||||||
EXPLAIN DELETE b FROM t1 AS a JOIN t1 AS b;
|
EXPLAIN DELETE b FROM t1 AS a JOIN t1 AS b;
|
||||||
DELETE b FROM t1 AS a JOIN t1 AS b;
|
DELETE b FROM t1 AS a JOIN t1 AS b;
|
||||||
|
Reference in New Issue
Block a user