Skip to content

Commit 52f2ea6

Browse files
committed
Update parameter documentation & fix tests
1 parent 0fd5378 commit 52f2ea6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

asyncpg/connection.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ async def copy_to_table(self, table_name, *, source,
847847
An optional schema name to qualify the table.
848848
849849
:param str where:
850-
An optional condition used to filter rows when copying.
850+
An optional SQL expression used to filter rows when copying.
851851
852852
.. note::
853853
@@ -929,7 +929,7 @@ async def copy_records_to_table(self, table_name, *, records,
929929
An optional schema name to qualify the table.
930930
931931
:param str where:
932-
An optional condition used to filter rows when copying.
932+
An optional SQL expression used to filter rows when copying.
933933
934934
.. note::
935935
@@ -2390,7 +2390,8 @@ def _detect_server_capabilities(server_version, connection_settings):
23902390
notifications=notifications,
23912391
plpgsql=plpgsql,
23922392
sql_reset=sql_reset,
2393-
sql_close_all=sql_close_all
2393+
sql_close_all=sql_close_all,
2394+
sql_copy_from_where=sql_copy_from_where
23942395
)
23952396

23962397

0 commit comments

Comments
 (0)