summaryrefslogtreecommitdiff
path: root/mysql-test/suite/compat/oracle/r/truncate.result
blob: f04ce09a4f8a1ac45bfd08955fd59f2ad4e811ed (plain)
1
2
3
4
5
6
7
8
9
10
SET sql_mode=ORACLE;
#
# MDEV-10588 sql_mode=ORACLE: TRUNCATE TABLE t1 [ {DROP|REUSE} STORAGE ]
#
CREATE TABLE t1 (a INT);
TRUNCATE TABLE t1 REUSE STORAGE;
TRUNCATE TABLE t1 DROP STORAGE;
DROP TABLE t1;
CREATE TABLE reuse (reuse INT);
DROP TABLE reuse;