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 ;