summaryrefslogtreecommitdiff
path: root/mysql-test/t/sel000002.test
blob: 9a89db2821c750060e81317c531d35f01ad37e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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);
SELECT * FROM t1;
drop table t1;