From 75de738b0422e70cbf0d0d7cfc2b4a6ff5b9603e Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Wed, 30 Sep 2020 15:55:35 +0200 Subject: [PATCH] Deprecate SQLFire support SQLFire was announced [1] to be in EOL as of November 1st, 2014. This commit marks SQL scripts for SQLFire as deprecated and scheduled for removal in v5. [1]: https://www.vmware.com/latam/products/pivotal-sqlfire.html Resolves #815 --- spring-batch-core/src/main/resources/batch-sqlf.properties | 2 ++ .../org/springframework/batch/core/schema-drop-sqlf.sql | 1 + .../resources/org/springframework/batch/core/schema-sqlf.sql | 1 + spring-batch-samples/src/main/resources/batch-sqlf.properties | 2 ++ .../src/main/resources/business-schema-sqlf.sql | 2 ++ 5 files changed, 8 insertions(+) diff --git a/spring-batch-core/src/main/resources/batch-sqlf.properties b/spring-batch-core/src/main/resources/batch-sqlf.properties index 6593892c5..4f577e512 100644 --- a/spring-batch-core/src/main/resources/batch-sqlf.properties +++ b/spring-batch-core/src/main/resources/batch-sqlf.properties @@ -1,5 +1,7 @@ # Placeholders batch.* # for SQLFire: +# As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0 + batch.jdbc.driver=com.vmware.sqlfire.jdbc.ClientDriver batch.jdbc.url=jdbc:sqlfire://localhost:1257/;update=true batch.jdbc.user=SAMPLES diff --git a/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-drop-sqlf.sql b/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-drop-sqlf.sql index b65c4869e..5b39eacf8 100644 --- a/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-drop-sqlf.sql +++ b/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-drop-sqlf.sql @@ -1,4 +1,5 @@ -- Autogenerated: do not edit this file +-- As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0 DROP TABLE IF EXISTS BATCH_STEP_EXECUTION_CONTEXT ; DROP TABLE IF EXISTS BATCH_JOB_EXECUTION_CONTEXT ; diff --git a/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-sqlf.sql b/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-sqlf.sql index 791064106..3ed2b996c 100644 --- a/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-sqlf.sql +++ b/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-sqlf.sql @@ -1,4 +1,5 @@ -- Autogenerated: do not edit this file +-- As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0 CREATE TABLE BATCH_JOB_INSTANCE ( JOB_INSTANCE_ID BIGINT NOT NULL PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, diff --git a/spring-batch-samples/src/main/resources/batch-sqlf.properties b/spring-batch-samples/src/main/resources/batch-sqlf.properties index d2a57b94b..9ec5fc1bc 100644 --- a/spring-batch-samples/src/main/resources/batch-sqlf.properties +++ b/spring-batch-samples/src/main/resources/batch-sqlf.properties @@ -1,5 +1,7 @@ # Placeholders batch.* # for SQLFire: +# As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0 + batch.jdbc.driver=com.vmware.sqlfire.jdbc.ClientDriver batch.jdbc.url=jdbc:sqlfire://localhost:1257/;update=true batch.jdbc.user=SAMPLES diff --git a/spring-batch-samples/src/main/resources/business-schema-sqlf.sql b/spring-batch-samples/src/main/resources/business-schema-sqlf.sql index 59d67936e..7578d0147 100644 --- a/spring-batch-samples/src/main/resources/business-schema-sqlf.sql +++ b/spring-batch-samples/src/main/resources/business-schema-sqlf.sql @@ -1,5 +1,7 @@ -- Autogenerated: do not edit this file -- You might need to remove this section the first time you run against a clean database +-- As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0 + DROP TABLE IF EXISTS BATCH_STAGING_SEQ ; DROP TABLE IF EXISTS TRADE_SEQ ; DROP TABLE IF EXISTS CUSTOMER_SEQ ;