-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
When passing a "quoting" column name to binary_copy_to_table
, psqlpy raises syntax error. Callers have to wrap those columns in a double quote by themselves. It would be great to support this in the library.
workaround,
async def main():
res = await conn.binary_copy_to_table(
columns=[
'"a-b"',
],
...
)
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers