[jira] [Created] (CALCITE-6323) Serialize return type during RelJson.toJson(RexNode node) for SqlKind.SAFE_CAST

2024-03-12 Thread Tanner Clary (Jira)
Tanner Clary created CALCITE-6323: - Summary: Serialize return type during RelJson.toJson(RexNode node) for SqlKind.SAFE_CAST Key: CALCITE-6323 URL: https://issues.apache.org/jira/browse/CALCITE-6323

Build failed in Jenkins: Calcite » Calcite-snapshots #840

2024-03-12 Thread Apache Jenkins Server
See Changes: [Sergey Nuyanzin] [CALCITE-6138] Parser does not accept TIMESTAMP WITH TIME ZONE as a data type -- [...truncated 122.11 KB...] public

Incorrect Quidem test in agg.iq

2024-03-12 Thread Mihai Budiu
I have been staring at a particular Quidem test from agg.iq: https://github.com/apache/calcite/blame/b412fa4ac0b1340a9f4e50c1d7ae4c869dcd1d2f/core/src/test/resources/sql/agg.iq#L1304 select sum(sal) as s, grouping_id(job, deptno, comm is null) as g, group_id() as i from "scott".emp group by

[jira] [Created] (CALCITE-6324) Type inferred for result of STDDEV, VAR_SAMP, etc. is incorrect

2024-03-12 Thread Mihai Budiu (Jira)
Mihai Budiu created CALCITE-6324: Summary: Type inferred for result of STDDEV, VAR_SAMP, etc. is incorrect Key: CALCITE-6324 URL: https://issues.apache.org/jira/browse/CALCITE-6324 Project: Calcite

Re: [DISCUSS] Towards Calcite 1.37.0

2024-03-12 Thread Hongyu Guo
I would like to take on the role of RM for one release On Thu, Mar 7, 2024 at 2:58 AM Alessandro Solimando < alessandro.solima...@gmail.com> wrote: > Hey Sergey, > thanks for being the release manager for 1.37.0. > > I have added fixVersion=1.37.0 to CALCITE-2040 >

[jira] [Created] (CALCITE-6325) Add LOG function (enabled in Mysql, Spark library)

2024-03-12 Thread Caican Cai (Jira)
Caican Cai created CALCITE-6325: --- Summary: Add LOG function (enabled in Mysql, Spark library) Key: CALCITE-6325 URL: https://issues.apache.org/jira/browse/CALCITE-6325 Project: Calcite Issue

[jira] [Created] (CALCITE-6326) Add LOG10 and LN function (enabled in Mysql, Spark library)

2024-03-12 Thread Caican Cai (Jira)
Caican Cai created CALCITE-6326: --- Summary: Add LOG10 and LN function (enabled in Mysql, Spark library) Key: CALCITE-6326 URL: https://issues.apache.org/jira/browse/CALCITE-6326 Project: Calcite

@Deprecated annotation

2024-03-12 Thread Hongyu Guo
Hi devs, I found there are over 800 @Deprecated in the project, and most of them have the comment 'to be removed before 2.0'. So do we have a schedule or plan to remove them? You can use GREP to quickly check deprecated annotations. ``` > grep -roh "@Deprecated" . | wc -l 802 > grep -roh

Re: Supporting a function with different capabilities depending on database

2024-03-12 Thread James Duong
I’m referring to using the “fun” connection property and setting it to ‘postgresql’, which enables PostgreSQL built-in functions and operators. I believe this is referred to as a “library” as well. I saw this SOUNDEX PR and think it covers what I’m looking for: