Skip to content

Commit

Permalink
Close #1986 evict connection exceptions with (SQLState HY000) error c…
Browse files Browse the repository at this point in the history
…ode 1105.
  • Loading branch information
brettwooldridge committed Jan 31, 2023
1 parent a050d81 commit e4bbce7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/zaxxer/hikari/pool/ProxyConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public abstract class ProxyConnection implements Connection
ERROR_CODES = new HashSet<>();
ERROR_CODES.add(500150);
ERROR_CODES.add(2399);
ERROR_CODES.add(1105);
}

protected ProxyConnection(final PoolEntry poolEntry,
Expand Down

0 comments on commit e4bbce7

Please sign in to comment.