Skip to content
New issue

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

sqlite: Removed ToLower in typecast #3860

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

giuliano-macedo
Copy link

Fixes #3688 by not calling NewIdentifier(name) in convertCastExpr because this function was ending up calling strings.ToLower on the type name resulting in type overrides not matching because the cast type name was always lowerCase and the override was always uppercase in go_type.go@goInnerType.

Alternatively this issue could by changing this line in goInnerType:

if oride.DbType != "" && oride.DbType == columnType && oride.Nullable != notNull && oride.Unsigned == col.Unsigned {

to

if oride.DbType != "" && strings.EqualFold(oride.DbType, columnType) && oride.Nullable != notNull && oride.Unsigned == col.Unsigned {

But I don't know if this would be a good idea...

Since we're already here, I've added tests for this specific case of type casts + overrides in sqlite, and refacted a variable in convertCastExpr because name could be confused with the column name instead of type name.

@dosubot dosubot bot added size:L This PR changes 100-499 lines, ignoring generated files. 🔧 golang labels Feb 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size:L This PR changes 100-499 lines, ignoring generated files. 🔧 golang
Projects
None yet
Development

Successfully merging this pull request may close these issues.

CAST in SQLite yields incorrect type
1 participant