-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Postgres support #100
Postgres support #100
Conversation
@@ -166,6 +166,11 @@ | |||
<scope>test</scope> | |||
</dependency> | |||
|
|||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we're manually adding the postgres driver into tomcat, can you remove this?
@@ -162,7 +162,7 @@ private void insertInstanceRow(InstanceInfo instanceInfo) throws WdkModelExcepti | |||
Types.VARCHAR, // table name | |||
Types.VARCHAR, // query name | |||
Types.VARCHAR, // checksum | |||
Types.CLOB // result message | |||
Types.OTHER // result message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious about what led to this choice. Can we use platform functions to do this? Looks like we just have schema gen and writing methods, but I think that's because writing the value can be the same on both DBs? Maybe with a different column type in postgres?
} | ||
catch (SQLRunnerException e) { | ||
throw WdkModelException.translateFrom(e); | ||
} | ||
} | ||
|
||
private String getInsertUserRefSql() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will have to take your word for it on this one. :)
No description provided.