Skip to content

Commit

Permalink
chore: cleanup unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite committed May 1, 2024
1 parent 93d0738 commit 6847c86
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -406,13 +406,6 @@ boolean isClient(List<String> orderedParameterKeys, Map<String, String> paramete
return false;
}

private final String prefix =
"SELECT version();%s"
+ "%s"
+ "SELECT ns.nspname, t.oid, t.typname, t.typtype, t.typnotnull, t.elemtypoid%s";
private final String unixPrefix = String.format(prefix, "\n", "\n", "\n");
private final String windowsPrefix = String.format(prefix, "\r\n", "\r\n", "\r\n");

@Override
boolean isClient(List<ParseMessage> skippedParseMessages, List<Statement> statements) {
// The npgsql client always starts with sending a query that contains multiple statements
Expand Down

0 comments on commit 6847c86

Please sign in to comment.