Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

varchar tasks #4360

Open
18 of 28 tasks
bluestreak01 opened this issue Apr 2, 2024 · 1 comment
Open
18 of 28 tasks

varchar tasks #4360

bluestreak01 opened this issue Apr 2, 2024 · 1 comment

Comments

@bluestreak01
Copy link
Member

bluestreak01 commented Apr 2, 2024

MUST HAVE

NICE TO HAVE

  • JIT support for varchar_col equals, substring equals, starts with, regexp (this might be moved to MUST HAVE, depending on benchmarking)
  • add varchar variants of io.questdb.griffin.engine.functions.regex SQL functions
  • to_uppercase(varchar) currently produces a string. this is unexpected. not sure if this is a blocker.
  • web console to understand rnd_varchar(): @jerrinot rnd_varchar function sql-grammar#34
  • Varchar equivalent of RndStrRndListFunctionFactory

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
Copy link
Contributor

nwoolmer commented Apr 3, 2024

Related issue: #4262

@nwoolmer nwoolmer linked a pull request May 8, 2024 that will close this issue
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants