Commit dae0eb52124475fe6c37b82479d2761a1072e6f2

Authored by Igor Kulikov
1 parent 34a587ff

Add transactional support for HSQLDB

@@ -14,6 +14,9 @@ @@ -14,6 +14,9 @@
14 -- limitations under the License. 14 -- limitations under the License.
15 -- 15 --
16 16
  17 +SET DATABASE SQL SYNTAX PGS TRUE;
  18 +SET DATABASE TRANSACTION CONTROL MVCC;
  19 +
17 CREATE TABLE IF NOT EXISTS admin_settings ( 20 CREATE TABLE IF NOT EXISTS admin_settings (
18 id uuid NOT NULL CONSTRAINT admin_settings_pkey PRIMARY KEY, 21 id uuid NOT NULL CONSTRAINT admin_settings_pkey PRIMARY KEY,
19 created_time bigint NOT NULL, 22 created_time bigint NOT NULL,
@@ -15,6 +15,7 @@ @@ -15,6 +15,7 @@
15 -- 15 --
16 16
17 SET DATABASE SQL SYNTAX PGS TRUE; 17 SET DATABASE SQL SYNTAX PGS TRUE;
  18 +SET DATABASE TRANSACTION CONTROL MVCC;
18 19
19 CREATE TABLE IF NOT EXISTS ts_kv ( 20 CREATE TABLE IF NOT EXISTS ts_kv (
20 entity_id uuid NOT NULL, 21 entity_id uuid NOT NULL,