mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
18 lines
264 B
Plaintext
18 lines
264 B
Plaintext
# 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;
|