Github user kaspersorensen commented on a diff in the pull request:
https://github.com/apache/metamodel/pull/190#discussion_r222489367
--- Diff: jdbc/src/main/java/org/apache/metamodel/jdbc/JdbcDataContext.java
---
@@ -903,4 +905,17 @@ public String getDatabaseProductName() {
public String getDatabaseVersion() {
return _databaseVersion;
}
+
+ public static int getSystemPropertyValue(String property, int
defaultValue) {
--- End diff --
We should probably make this protected scope. I don't think we should
expose this method outside of the JDBC module.
---