We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I realized trying to reproduce an incident related to #61705 that we always fall back to type String, even when the sized is fixed.
String
So, for CHARACTER(20), CHAR(20) or BPCHAR(20) we always use String instead of the more correct FixedString(20)
CHARACTER(20)
CHAR(20)
BPCHAR(20)
FixedString(20)
The text was updated successfully, but these errors were encountered:
pamarcos
Successfully merging a pull request may close this issue.
I realized trying to reproduce an incident related to #61705 that we always fall back to type
String
, even when the sized is fixed.So, for
CHARACTER(20)
,CHAR(20)
orBPCHAR(20)
we always useString
instead of the more correctFixedString(20)
The text was updated successfully, but these errors were encountered: