calcite icon indicating copy to clipboard operation
calcite copied to clipboard

Apache Calcite

Results 356 calcite issues
Sort by recently updated
recently updated
newest added

This is regarding https://issues.apache.org/jira/browse/CALCITE-5227

* Introduce TIME/TIMESTAMP WITH TIME ZONE types * Introduce TimeWithTimeZone as internal representation of TIME WITH TIME ZONE type * Introduce TimestampWithTimeZone as internal representation of TIMESTAMP WITH TIME ZONE...

Fixed an issue where overflow from Long to Int was unsafe.

For ProjectMergeRule, EnumerableLimitRule and SortRemoveConstantKeysRule, once they are done with the transformation on logical nodes, there's no need to fire these rules on physical nodes again. So limit these rule...

discussion-in-jira

Fix ISSUE [CALCITE-3329](https://issues.apache.org/jira/browse/CALCITE-3329), Achieve similar features of FaceBook's osquery. E.g: select * from os_version; select * from system_info; select * from mounts; select * from interface_addresses select * from memory_info;...

The operands of various JSON functions are not validated correctly. If you run this test ```java json_value(1, 'strict $.foo')" ``` It will fail at runtime when compiling generated code, I...

fix issue [CALCITE-3200](https://issues.apache.org/jira/browse/CALCITE-3200) 1. SQL Server, Mysql, Oracle support TEXT data type. 2. java.sql.Types LONGVARCHAR is TEXT.

returned-with-feedback

Fix cast(? as DATE) won't work with PreparedStatement bug This is a fix about the problem when when `PreparedStatement` with DynamicParam. for example ``` PreparedStatement ps = connection.prepareStatement("select * from...

`JSON_EXTRACT(json_doc, path[, path] ...)` Returns data from a JSON document, selected from the parts of the document matched by the `path` arguments. Returns `NULL` if any argument is `NULL` or...