CREATE TABLE integers (i BIGINT); CREATE TABLE integers (i BIGINT TIME INDEX); CREATE TABLE IF NOT EXISTS integers (i BIGINT TIME INDEX); CREATE TABLE test1 (i INTEGER, j INTEGER); CREATE TABLE test1 (i INTEGER, j BIGINT TIME INDEX NOT NULL); CREATE TABLE test2 (i INTEGER, j BIGINT TIME INDEX NULL); CREATE TABLE test2 (i INTEGER, j BIGINT TIME INDEX); DESC TABLE integers; DESC TABLE test1; DESC TABLE test2; DROP TABLE integers; DROP TABLE test1; DROP TABLE test2;