mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
140cc614c9
+ Fix for Bug#43114 wait_until_count_sessions too restrictive, random PB failures + Removal of a lot of other weaknesses found + modifications according to review
9 lines
126 B
Text
9 lines
126 B
Text
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1 (n INT);
|
|
INSERT INTO t1 VALUES (1),(2),(3);
|
|
SELECT * FROM t1;
|
|
n
|
|
1
|
|
2
|
|
3
|
|
DROP TABLE t1;
|