Canner / wren-engine

🤖 The semantic engine for LLMs, bringing semantic context to AI agents. 🔥
https://getwren.ai/oss
Apache License 2.0
129 stars 34 forks source link

feat(core): register timestamptz type to DataFusion timestamp with time zone type #908

Closed goldmedal closed 4 days ago

goldmedal commented 4 days ago

Description

Now we can distinguish TIMESTAMP and TIMESTAMP WITH TIME ZONE in the DataFusion layer. We also know the sqlglot will transpile SQL for Bigquery

We can apply DataFusion's type coercion rule for them. If needed, DataFusion will cast the timestamp side to the timestamp with the time zone.

Additional change

goldmedal commented 4 days ago

Thanks @grieve54706 for reviewing