Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
elprans committed Aug 17, 2023
1 parent 6b283ff commit eee1203
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions asyncpg/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -888,8 +888,8 @@ async def copy_to_table(self, table_name, *, source,
.. versionadded:: 0.11.0
.. versionadded:: 0.27.0
Added ``where`` parameter.
.. versionadded:: 0.29.0
Added the *where* parameter.
"""
tabname = utils._quote_ident(table_name)
if schema_name:
Expand Down Expand Up @@ -988,8 +988,8 @@ async def copy_records_to_table(self, table_name, *, records,
.. versionchanged:: 0.24.0
The ``records`` argument may be an asynchronous iterable.
.. versionadded:: 0.27.0
Added ``where`` parameter.
.. versionadded:: 0.29.0
Added the *where* parameter.
"""
tabname = utils._quote_ident(table_name)
if schema_name:
Expand Down

0 comments on commit eee1203

Please sign in to comment.