Skip to content

Commit 75de738

Browse files
committed
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
1 parent 1ce4da5 commit 75de738

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

Diff for: spring-batch-core/src/main/resources/batch-sqlf.properties

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Placeholders batch.*
22
# for SQLFire:
3+
# As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0
4+
35
batch.jdbc.driver=com.vmware.sqlfire.jdbc.ClientDriver
46
batch.jdbc.url=jdbc:sqlfire://localhost:1257/;update=true
57
batch.jdbc.user=SAMPLES

Diff for: spring-batch-core/src/main/resources/org/springframework/batch/core/schema-drop-sqlf.sql

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
-- Autogenerated: do not edit this file
2+
-- As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0
23

34
DROP TABLE IF EXISTS BATCH_STEP_EXECUTION_CONTEXT ;
45
DROP TABLE IF EXISTS BATCH_JOB_EXECUTION_CONTEXT ;

Diff for: spring-batch-core/src/main/resources/org/springframework/batch/core/schema-sqlf.sql

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
-- Autogenerated: do not edit this file
2+
-- As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0
23

34
CREATE TABLE BATCH_JOB_INSTANCE (
45
JOB_INSTANCE_ID BIGINT NOT NULL PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY,

Diff for: spring-batch-samples/src/main/resources/batch-sqlf.properties

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Placeholders batch.*
22
# for SQLFire:
3+
# As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0
4+
35
batch.jdbc.driver=com.vmware.sqlfire.jdbc.ClientDriver
46
batch.jdbc.url=jdbc:sqlfire://localhost:1257/;update=true
57
batch.jdbc.user=SAMPLES

Diff for: spring-batch-samples/src/main/resources/business-schema-sqlf.sql

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
-- Autogenerated: do not edit this file
22
-- You might need to remove this section the first time you run against a clean database
3+
-- As of v4.3, SQLFire support is deprecated and scheduled for removal in v5.0
4+
35
DROP TABLE IF EXISTS BATCH_STAGING_SEQ ;
46
DROP TABLE IF EXISTS TRADE_SEQ ;
57
DROP TABLE IF EXISTS CUSTOMER_SEQ ;

0 commit comments

Comments
 (0)