You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using bulk() in NewUpdate(), bun tries to type cast all rows. But in postrgresql, type casting only the first column is enough. Also type casting primitive types such as string,int is not really needed. Here is an example query produced by bun:
This issue has been automatically marked as stale because it has not had activity in the last 30 days. If there is no update within the next 7 days, this issue will be closed.
When using bulk() in NewUpdate(), bun tries to type cast all rows. But in postrgresql, type casting only the first column is enough. Also type casting primitive types such as string,int is not really needed. Here is an example query produced by bun:
This query can be shortened to:
Also when bun doesn't recognize a type, it tried to typecast it to some random type such as bigint,json etc.
The text was updated successfully, but these errors were encountered: