summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/r/information_schema_tables_auto_increment_use.result
blob: 96d1b0ad32ee46e57cd2e7d5646d7530ff724c19 (plain)
1
2
3
4
5
6
7
8
9
10
DROP TABLE IF EXISTS ids;
CREATE TABLE ids (
id INT AUTO_INCREMENT PRIMARY KEY
);
SELECT AUTO_INCREMENT
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = "ids";
AUTO_INCREMENT
1
DROP TABLE ids;