-
-
Notifications
You must be signed in to change notification settings - Fork 144
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
boolean
type acting odd with unnest
#326
Comments
Have you tried using 'bool' instead of 'boolean'? My experience so far is that unnest doesn't always use the same type names as the ones used for table definitions. Unfortunately I still don't understand how to map a type in a table definition to a type for unnest. |
Interesting, that does work! Yeah I would love some way to know which type to use 😅 For example this has the same problem: await pool.any(
sql`
select bar from ${sql.unnest([[5]], ['integer'])} as foo(bar)
`,
)
|
I believe I used int4 for integer |
Looks like the “aliases” column here is what’s being used? https://www.postgresql.org/docs/9.6/datatype.html |
What you are looking for are called "type name identifiers". It is mentioned in documentation here: https://github.com/gajus/slonik#sqlarray-membertype I don't know where they are listed in documentation, but you can find all of them in the source code: You are looking for We could theoretically add a TypeScript type ENUM for |
I am pretty sure this PR improves developer experience: |
I just realized that I misread the entire thread. The issue is that (unlike |
🎉 This issue has been resolved in version 28.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Hey guys! Thank you for this awesome library; we love using it.
I think I've found an issue with
unnest
, although it could definitely be in my usage.Expected Behavior
A query like the following should work fine:
Current Behavior
It gives the error:
Possible Solution
You guys would know better than I would, but I think the boolean type is being interpreted incorrectly with unnest.
here is a workaround:
The text was updated successfully, but these errors were encountered: