questdb / questdb

QuestDB is an open source time-series database for fast ingest and SQL queries
https://questdb.io
Apache License 2.0
14.47k stars 1.17k forks source link

varchar tasks #4360

Open bluestreak01 opened 6 months ago

bluestreak01 commented 6 months ago

MUST HAVE

NICE TO HAVE

COMPLETED

create table xyz as (select rnd_str(2,5,1) a, timestamp_sequence(0, 1000) ts from long_sequence(10000)) timestamp(ts) partition by DAY;
alter table xyz add column b varchar;
update xyz set b = a;

select count(*) from xyz where a is not null;
select count(*) from xyz where b is not null;
nwoolmer commented 6 months ago

Related issue: https://github.com/questdb/questdb/issues/4262