Java 6 compatibility bugfix
This commit is contained in:
parent
c6a2dc15e0
commit
00394069d0
@ -435,7 +435,7 @@ class MetaImpl implements Meta, Serializable {
|
||||
}
|
||||
}
|
||||
|
||||
private final Result<Record> getColumns0(String schema, String table) {
|
||||
private final Result<Record> getColumns0(final String schema, final String table) {
|
||||
return meta(new MetaFunction() {
|
||||
@Override
|
||||
public Result<Record> run(DatabaseMetaData meta) throws SQLException {
|
||||
@ -505,7 +505,7 @@ class MetaImpl implements Meta, Serializable {
|
||||
x
|
||||
xx [/pro] */
|
||||
|
||||
String schema = getSchema() == null ? null : getSchema().getName();
|
||||
final String schema = getSchema() == null ? null : getSchema().getName();
|
||||
Result<Record> result = meta(new MetaFunction() {
|
||||
@Override
|
||||
public Result<Record> run(DatabaseMetaData meta) throws SQLException {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user