mariadb/mysql-test/t/sel000002.test
monty@donna.mysql.com 9ff59511a5 Cleanup of tests to make them less dependent of eachother
Added new big select test
2001-01-03 02:15:48 +02:00

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;