Skip to content

Commit

Permalink
Support tinyInt1isBit
Browse files Browse the repository at this point in the history
Motivation:
Aligning with MySQL connector.

Modifications:
Implemented `tinyInt1isBit` flag.

Result:
Improved compatibility with MySQL connectors.
  • Loading branch information
jchrys committed Jan 31, 2025
1 parent ea5a23d commit ef62618
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,11 @@ public boolean isMariaDb() {
return (capability != null && capability.isMariaDb()) || serverVersion.isMariaDb();
}

@Override
public boolean isTinyInt1isBit() {
return tinyInt1isBit;
}

public boolean isNoBackslashEscapes() {
return (serverStatuses & ServerStatuses.NO_BACKSLASH_ESCAPES) != 0;
}
Expand Down

0 comments on commit ef62618

Please sign in to comment.