mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
16 lines
245 B
Text
16 lines
245 B
Text
# 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/sel000002.result SELECT * FROM t;
|