mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
9ff59511a5
Added new big select test
17 lines
264 B
Text
17 lines
264 B
Text
# sel000002
|
|
#
|
|
# Versions
|
|
# --------
|
|
# 3.22
|
|
# 3.23
|
|
#
|
|
# Description
|
|
# -----------
|
|
# This test is just a simple select.
|
|
#
|
|
|
|
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1 (n INT);
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
@r/sel000002.result SELECT * FROM t1;
|
|
drop table t1;
|