TDengine
TDengine copied to clipboard
create table can't assign encode type
taos> create table t1(ts timestamp, b varchar(64), a int compress 'disabled'); Create OK, 0 row(s) affected (0.001057s)
taos> drop table t1; Drop OK, 0 row(s) affected (0.000812s)
taos> create table t1(ts timestamp, b varchar(64), a int encode 'disabled' compress 'disabled');
DB error: Invalid encode param (0.000256s)
we are checking on this , but out of curiosity ,May I know why you disabled them both?
what kind of scenario ?