diff --git a/Cargo.toml b/Cargo.toml index 91943809..7438cc3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ siphasher = { version = "0.3.11", features = ["serde"] } mlua = { version = "0.9.1", features = ["luajit", "vendored", "macros", "async"], optional = true } pgwire = { version = "0.19.2", optional = true } async-trait = { version = "0.1.77", optional = true } -env_logger = { version = "0.11.1", optional = true } +env_logger = { version = "0.10.2", optional = true } log = { version = "0.4.20", optional = true } [dev-dependencies] diff --git a/tests/slt/analyze.slt b/tests/slt/analyze.slt deleted file mode 100644 index 79610b4b..00000000 --- a/tests/slt/analyze.slt +++ /dev/null @@ -1,48 +0,0 @@ -statement ok -create table t(id int primary key, v1 bigint null, v2 varchar null, v3 decimal null) - -statement ok -insert into t values (0,1,10,100) - -statement ok -insert into t values (1,1,10,100), (2,2,20,200), (3,3,30,300), (4,4,40,400) - -statement ok -insert into t(id, v1, v2, v3) values (5,1,10,100) - -statement ok -insert into t(id, v1, v2) values (6,1,10) - -statement ok -insert into t(id, v2, v1) values (7,1,10) - -statement error -insert into t(id, v1, v2, v3) values (0) - -statement error -insert into t(id, v1, v2, v3) values (0, 0) - -statement error -insert into t(id, v1, v2, v3) values (0, 0, 0) - -statement ok -insert into t values (8,NULL,NULL,NULL) - -query IIII rowsort -select * from t ----- -0 1 10 100 -1 1 10 100 -2 2 20 200 -3 3 30 300 -4 4 40 400 -5 1 10 100 -6 1 10 null -7 10 1 null -8 null null null - -statement ok -analyze table t - -statement ok -drop table t \ No newline at end of file