-
Notifications
You must be signed in to change notification settings - Fork 546
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 view model has wrong type and can't be replaced #1369
Comments
UPD: it's the same for client_statuses view too. Also, the values are valid, but i have to parse them with |
I will label this as a bug, but I need more information The title says it can't be replaced, can you share how you are configuring the type replacement? |
AFAIR i also tried matching the capitalized name and it didn't work too |
@stephenafamo [[types]]
[types.match]
type = "null.String"
[types.replace]
type = "float32" the matcher is literally copied from README so it must work, but it doesn't. I still have the Are there ways to add more clues to my db schema so that sqlboiler could infer the types correctly? |
I just tried the following and it worked. I thought less matchers must match more as it uses logical AND. That "boolean values must always match" in doc sounds ambiguous imo. [[types]]
[types.match]
name = "balance"
nullable = true
[types.replace]
type = "float32" So, i at least know how to fix it myself now. If it's not possible to do more accurate type detection on views, the issue can be closed |
If you're having a generation problem please answer these questions before submitting your issue. Thanks!
What version of SQLBoiler are you using (
sqlboiler --version
)?4.16.1
What is your database and version (eg. Postgresql 10)
3.44.2
If this happened at generation time what was the full SQLBoiler command you used to generate your models? (if not applicable leave blank)
sqlboiler sqlite3
If this happened at runtime what code produced the issue? (if not applicable leave blank)
What is the output of the command above with the
-d
flag added to it? (Provided you are comfortable sharing this, it contains a blueprint of your schema)Please provide a relevant database schema so we can replicate your issue (Provided you are comfortable sharing this)
Further information. What did you do, what did you expect?
It generates the entity for client_balance with balance as nullable string, which is a float actually. E.g. if i do a query with
sqlite3 -json
it is floatThere is the whole repo
The text was updated successfully, but these errors were encountered: