forked from apache/calcite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CALCITE-5037] Upgrade HSQLDB to 2.5.2
Upgrade HSQLDB to 2.5.2 (the last version that also supports Java 8) and allow people to run using HSQLDB 2.6.1 (the most recent version, which requires Java 11 or higher). Also upgrade data sets: * scott-data-hsqldb from 0.1 to 0.2; * foodmart-data-hsqldb from 0.4 to 0.5; * chinook-data-hsqldb from 0.1 to 0.2. The previous versions of those data sets used HSQLDB file format 1.8, and the newer versions use 2.0 format.
- Loading branch information
1 parent
cd5229b
commit 92843e8
Showing
8 changed files
with
37 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ CROSS JOIN LATERAL TABLE(AUX.CODES(SC.email)) TF limit 6; | |
# Checks whether CROSS JOIN LATERAL WORK WITH VIEW EXPANSION | ||
SELECT * FROM EXAMPLES.CODED_EMAILS; | ||
+-----------------------+----------+------------------------------+ | ||
| EMAIL | TYPE | CODEVALUE | | ||
| Email | TYPE | CODEVALUE | | ||
+-----------------------+----------+------------------------------+ | ||
| [email protected] | BASE64 | ZnRyZW1ibGF5QGdtYWlsLmNvbQ== | | ||
| [email protected] | HASHCODE | 1248316799 | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ SELECT email, ASCONCATOFPARAMS(firstname, lastname) AS joined FROM SIMPLE_CUSTOM | |
# Checks whether CHOOSENCUSTOMFUNCTION function is properly computed and not passed to subschema, like jdbc | ||
SELECT * FROM SIMPLE_CUSTOMER WHERE email = CHOSENCUSTOMEREMAIL(); | ||
+-----------+----------+---------------------+ | ||
| FIRSTNAME | LASTNAME | EMAIL | | ||
| FirstName | LastName | Email | | ||
+-----------+----------+---------------------+ | ||
| François | Tremblay | [email protected] | | ||
+-----------+----------+---------------------+ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters