diff --git a/storage/connect/mysql-test/connect/r/part_table.result b/storage/connect/mysql-test/connect/r/part_table.result index 4c74f1a6f4987..80127fac70cf1 100644 --- a/storage/connect/mysql-test/connect/r/part_table.result +++ b/storage/connect/mysql-test/connect/r/part_table.result @@ -89,10 +89,9 @@ id msg 60 sixty 81 eighty one 72 seventy two -EXPLAIN PARTITIONS SELECT * FROM t1 WHERE id = 81; -id select_type table partitions type possible_keys key key_len ref rows Extra -1 SIMPLE t1 3 ALL NULL NULL NULL NULL 6 Using where +id msg +81 eighty one DELETE FROM t1; Warnings: Note 1105 xt1: 4 affected rows diff --git a/storage/connect/mysql-test/connect/t/part_table.test b/storage/connect/mysql-test/connect/t/part_table.test index 8c0eb4cac7037..37133b96ca555 100644 --- a/storage/connect/mysql-test/connect/t/part_table.test +++ b/storage/connect/mysql-test/connect/t/part_table.test @@ -47,7 +47,7 @@ INSERT INTO t1 VALUES(7,'seven'),(10,'ten'),(40,'forty'),(60,'sixty'),(81,'eight INSERT INTO t1 VALUES(72,'seventy two'),(11,'eleven'),(1,'one'),(35,'thirty five'),(8,'eight'); SELECT partition_name, table_rows FROM information_schema.partitions WHERE table_name = 't1'; SELECT * FROM t1; -EXPLAIN PARTITIONS +#EXPLAIN PARTITIONS deleted because it returns differeent key on Windows and Linux SELECT * FROM t1 WHERE id = 81; DELETE FROM t1; DROP TABLE t1;