mirror of
https://github.com/rasilon/ujetl.git
synced 2026-04-11 10:29:29 +00:00
Add test config
This commit is contained in:
parent
8fdbc6a78e
commit
4f905dd47a
2 changed files with 58 additions and 4 deletions
|
|
@ -180,12 +180,12 @@ public class Job extends Thread {
|
|||
|
||||
log.info(String.format("%s - Processing table: %s",jobName,name));
|
||||
if(preTarget != null){
|
||||
log.debug("Trying to execute preTarget SQL");
|
||||
log.info("Trying to execute preTarget SQL");
|
||||
PreparedStatement s = dConn.prepareStatement(preTarget);
|
||||
s.executeUpdate();
|
||||
s.close();
|
||||
}else{
|
||||
log.debug("No preTarget; skipping.");
|
||||
log.info("No preTarget; skipping.");
|
||||
}
|
||||
|
||||
log.debug("Trying to execute: "+key);
|
||||
|
|
@ -225,12 +225,12 @@ public class Job extends Thread {
|
|||
c.join();
|
||||
|
||||
if(postTarget != null){
|
||||
log.debug("Trying to execute postTarget SQL");
|
||||
log.info("Trying to execute postTarget SQL");
|
||||
PreparedStatement s = dConn.prepareStatement(postTarget);
|
||||
s.executeUpdate();
|
||||
s.close();
|
||||
}else{
|
||||
log.debug("No postTarget; skipping.");
|
||||
log.info("No postTarget; skipping.");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue