Add Integration Tests testing the Inline Caching support using a RDBMS (HSQLDB Database).

This commit is contained in:
John Blum
2019-06-13 00:19:10 -07:00
parent 759fa1b9a1
commit 7b5824f4c7
4 changed files with 159 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
CREATE TABLE IF NOT EXISTS customers (
id BIGINT PRIMARY KEY,
name VARCHAR(256) NOT NULL
);