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
dbutil.BulkQuery currently only works when statement includes the exact text VALUES( but sometimes depending on formatting style it might be preferable to write it VALUES (.
Would be useful if it allowed casts as well, e.g. VALUES (:id::int) so that the column is created with type int and you don't have to use ::int elsewhere in the query.
The text was updated successfully, but these errors were encountered:
dbutil.BulkQuery
currently only works when statement includes the exact textVALUES(
but sometimes depending on formatting style it might be preferable to write itVALUES (
.Would be useful if it allowed casts as well, e.g.
VALUES (:id::int)
so that the column is created with typeint
and you don't have to use::int
elsewhere in the query.The text was updated successfully, but these errors were encountered: