summaryrefslogtreecommitdiff
path: root/mysql-test/t/sel000002.test
blob: 2bc8ed0c6d79d91acaf84b0d002e6d21f9c556a6 (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);
@r/sel000002.result SELECT * FROM t1;
drop table t1;