mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-16 13:00:40 +00:00
* fix: flash table panic when table has interval column close #3235 Signed-off-by: yihong0618 <zouzou0208@gmail.com> * Revert "fix: flash table panic when table has interval column close #3235" This reverts commit ffc63efda39cd6ef525313b60ede061c5ec24b12. * fix: create table do not support interval type for now close #3235 Signed-off-by: yihong0618 <zouzou0208@gmail.com> * fix: sqlness Signed-off-by: yihong0618 <zouzou0208@gmail.com> * fix: address comments Signed-off-by: yihong0618 <zouzou0208@gmail.com> * fix: address comments fix conflict and more tests Signed-off-by: yihong0618 <zouzou0208@gmail.com> * fix: address final comments drop useless sqlness tests Signed-off-by: yihong0618 <zouzou0208@gmail.com> --------- Signed-off-by: yihong0618 <zouzou0208@gmail.com>
96 lines
1.7 KiB
SQL
96 lines
1.7 KiB
SQL
CREATE TABLE test_alt_table(h INTEGER, i INTEGER, j TIMESTAMP TIME INDEX, PRIMARY KEY (h, i));
|
|
|
|
DESC TABLE test_alt_table;
|
|
|
|
INSERT INTO test_alt_table VALUES (1, 1, 0), (2, 2, 1);
|
|
|
|
-- TODO: It may result in an error if `k` is with type INTEGER.
|
|
-- Error: 3001(EngineExecuteQuery), Invalid argument error: column types must match schema types, expected Int32 but found Utf8 at column index 3
|
|
ALTER TABLE test_alt_table ADD COLUMN k STRING PRIMARY KEY;
|
|
|
|
DESC TABLE test_alt_table;
|
|
|
|
SELECT * FROM test_alt_table;
|
|
|
|
SELECT * FROM test_alt_table WHERE i = 1;
|
|
|
|
-- SQLNESS ARG restart=true
|
|
ALTER TABLE test_alt_table ADD COLUMN m INTEGER;
|
|
|
|
-- Should fail issue #5422
|
|
ALTER TABLE test_alt_table ADD COLUMN n interval;
|
|
|
|
-- Should fail issue #5422
|
|
ALTER TABLE test_alt_table MODIFY COLUMN m interval;
|
|
|
|
DESC TABLE test_alt_table;
|
|
|
|
DROP TABLE test_alt_table;
|
|
|
|
-- to test if same name column can be added
|
|
CREATE TABLE phy (ts timestamp time index, val double) engine = metric with ("physical_metric_table" = "");
|
|
|
|
CREATE TABLE t1 (
|
|
ts timestamp time index,
|
|
val double,
|
|
host string primary key
|
|
) engine = metric with ("on_physical_table" = "phy");
|
|
|
|
INSERT INTO
|
|
t1
|
|
VALUES
|
|
('host1', 0, 1),
|
|
('host2', 1, 0,);
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
t1;
|
|
|
|
CREATE TABLE t2 (
|
|
ts timestamp time index,
|
|
job string primary key,
|
|
val double
|
|
) engine = metric with ("on_physical_table" = "phy");
|
|
|
|
ALTER TABLE
|
|
t1
|
|
ADD
|
|
COLUMN `at` STRING;
|
|
|
|
ALTER TABLE
|
|
t2
|
|
ADD
|
|
COLUMN at3 STRING;
|
|
|
|
ALTER TABLE
|
|
t2
|
|
ADD
|
|
COLUMN `at` STRING;
|
|
|
|
ALTER TABLE
|
|
t2
|
|
ADD
|
|
COLUMN at2 STRING;
|
|
|
|
ALTER TABLE
|
|
t2
|
|
ADD
|
|
COLUMN at4 UINT16;
|
|
|
|
INSERT INTO
|
|
t2
|
|
VALUES
|
|
("loc_1", "loc_2", "loc_3", 2, 'job1', 0, 1);
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
t2;
|
|
|
|
DROP TABLE t1;
|
|
|
|
DROP TABLE t2;
|
|
|
|
DROP TABLE phy;
|