diff --git a/db/h2.compat/db.properties b/db/h2.compat/db.properties index 7223f5bf..b1f054d0 100644 --- a/db/h2.compat/db.properties +++ b/db/h2.compat/db.properties @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -antville.url = jdbc:h2:./db/antville;ifexists=true;mode=postgresql +antville.url = jdbc:h2:./db/antville;ifexists=true;mode=postgresql;non_keywords=value antville.driver = org.h2.Driver antville.user = antville antville.password = antville diff --git a/tools/antclick/build.gradle b/tools/antclick/build.gradle index 9b906d7c..46f629d8 100644 --- a/tools/antclick/build.gradle +++ b/tools/antclick/build.gradle @@ -130,7 +130,7 @@ tasks.register('buildDatabase', JavaExec) { args = [ '-continueOnError', '-script', inputFile, - '-url', "jdbc:h2:$outputDir/antville", + '-url', "jdbc:h2:$outputDir/antville;mode=postgresql;non_keywords=value", '-user', 'antville', '-password', 'antville' ]