MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: obrechts (544)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //usr/share/mysql-test/suite/engines/funcs/t/de_truncate_autoinc.test
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1(c1 TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE   t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 SMALLINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE   t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 MEDIUMINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE   t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE   t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE   t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE   t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE TABLE t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 SMALLINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE TABLE t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 MEDIUMINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE TABLE t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE TABLE t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE TABLE t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;
CREATE TABLE t1(c1 BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (null),(null),(null),(null),(null),(null);
TRUNCATE TABLE t1 ;
SELECT * FROM t1 ORDER BY c1;
INSERT INTO t1 VALUES (null),(null),(null);
SELECT * FROM t1 ORDER BY c1;
DROP TABLE t1;