Skip to content

Commit

Permalink
Merge pull request #215 from AdaptiveScale/release-2.2.3
Browse files Browse the repository at this point in the history
Release 2.2.3
  • Loading branch information
nbesimi authored May 2, 2024
2 parents 714979c + ad26047 commit 30d9c26
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ tables:
- test
- apply
- generate
- query

#### init
This command will generate a project (directory) if specified, a default configuration file located in the current directory with example connections for `bigquery` and `snowflake`, and the model directory.
Expand Down
2 changes: 1 addition & 1 deletion binary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ext{

runtime {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
modules = ['java.base', 'java.naming', 'java.xml', 'java.sql', 'java.rmi', 'java.management', 'java.prefs', 'java.desktop']
modules = ['java.base', 'java.naming', 'java.xml', 'java.sql', 'java.rmi', 'java.management', 'java.prefs', 'java.desktop', 'jdk.unsupported']

targetPlatform("linux-x64") {
imageZip = project.ext.imageFile
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {

allprojects {
group = 'com.adaptivescale'
version = '2.2.2'
version = '2.2.3'
sourceCompatibility = 11
targetCompatibility = 11
}
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/java/com/adaptivescale/rosetta/cli/Cli.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
@Slf4j
@CommandLine.Command(name = "cli",
mixinStandardHelpOptions = true,
version = "2.2.2",
version = "2.2.3",
description = "Declarative Database Management - DDL Transpiler"
)
class Cli implements Callable<Void> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2357,4 +2357,5 @@
2542;;kinetica;;INTEGER;;kinetica;;integer
2543;;kinetica;;DOUBLE;;kinetica;;double
2544;;kinetica;;DATE;;kinetica;;date
2545;;kinetica;;BYTES;;kinetica;;bytes
2545;;kinetica;;BYTES;;kinetica;;bytes
2546;;postgres;;_text;;oracle;;varchar2

0 comments on commit 30d9c26

Please sign in to comment.