Skip to content

Commit

Permalink
Update parameter documentation & fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
redgoldlace authored and elprans committed May 8, 2023
1 parent c1b154c commit 14a4c10
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions asyncpg/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ async def copy_to_table(self, table_name, *, source,
An optional schema name to qualify the table.
:param str where:
An optional condition used to filter rows when copying.
An optional SQL expression used to filter rows when copying.
.. note::
Expand Down Expand Up @@ -928,7 +928,7 @@ async def copy_records_to_table(self, table_name, *, records,
An optional schema name to qualify the table.
:param str where:
An optional condition used to filter rows when copying.
An optional SQL expression used to filter rows when copying.
.. note::
Expand Down Expand Up @@ -2408,7 +2408,8 @@ def _detect_server_capabilities(server_version, connection_settings):
notifications=notifications,
plpgsql=plpgsql,
sql_reset=sql_reset,
sql_close_all=sql_close_all
sql_close_all=sql_close_all,
sql_copy_from_where=sql_copy_from_where
)


Expand Down

0 comments on commit 14a4c10

Please sign in to comment.