# sel000002
#
# Versions
# --------
# 3.22
# 3.23
# Description
# -----------
# This test is just a simple select.
DROP TABLE IF EXISTS t;
CREATE TABLE t (n INT);
INSERT INTO t VALUES (1), (2), (3);
@r/3.23/sel000002.result SELECT * FROM t;