Skip to content

Commit

Permalink
0003243: AS400 default catalog must be null and not empty string or
Browse files Browse the repository at this point in the history
readTables on the meta data will never return results
  • Loading branch information
jumpmind-josh committed Aug 30, 2017
1 parent eb02543 commit 8559f60
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -35,5 +35,11 @@ public String getDefaultSchema() {
}
return defaultSchema;
}

@Override
public String getDefaultCatalog() {
// This must return null for AS400, an empty string will return no match on readTable meta data.
return null;
}

}

0 comments on commit 8559f60

Please sign in to comment.