Merge pull request #20 from rasilon/dev

H2 security update
This commit is contained in:
Derry Hamilton 2023-07-11 12:50:27 +01:00 committed by GitHub
commit 584f83de0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
<groupId>com.rasilon.ujetl</groupId> <groupId>com.rasilon.ujetl</groupId>
<artifactId>CopyingApp</artifactId> <artifactId>CopyingApp</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>2.4.3</version> <version>2.4.4</version>
<name>uJETL</name> <name>uJETL</name>
<url>https://github.com/rasilon/ujetl</url> <url>https://github.com/rasilon/ujetl</url>
<properties> <properties>

View file

@ -12,7 +12,7 @@ public class CopyingAppCommandParser {
private String configFile; private String configFile;
@Parameter(names = {"-log4j","--log4j"}, description = "Log4J config file for this run") @Parameter(names = {"-log4j","--log4j"}, description = "Log4J config file for this run")
private String log4jConfigFile = "/etc/ppl/default_log4j_config.properties"; private String log4jConfigFile = "/etc/ujetl/default_log4j_config.properties";
public CopyingAppCommandParser(String[] args) { public CopyingAppCommandParser(String[] args) {
super(); super();

View file

@ -42,7 +42,7 @@ public class TestJob {
dest, dest,
"jUnit Test Config", "jUnit Test Config",
"jUnit Test Job", "jUnit Test Job",
"SELECT -1 AS key", "SELECT -1 AS \"key\"",
"SELECT id,dat FROM src WHERE id > ?", "SELECT id,dat FROM src WHERE id > ?",
"INSERT INTO dest VALUES(?,?)", "INSERT INTO dest VALUES(?,?)",
null, null,

View file

@ -42,7 +42,7 @@ public class TestPrePost {
dest, dest,
"jUnit Test Config", "jUnit Test Config",
"jUnit Test Job", "jUnit Test Job",
"SELECT -1 AS key", "SELECT -1 AS \"key\"",
"SELECT id,dat FROM src WHERE id > ?", "SELECT id,dat FROM src WHERE id > ?",
"INSERT INTO tmp_dest VALUES(?,?)", "INSERT INTO tmp_dest VALUES(?,?)",
"CREATE TEMP TABLE tmp_dest(id bigint not null primary key, dat varchar);", "CREATE TEMP TABLE tmp_dest(id bigint not null primary key, dat varchar);",