Python: Model sql executions

This commit is contained in:
Rasmus Lerchedahl Petersen
2021-09-27 14:15:58 +02:00
parent 520a2da8ab
commit 15b07bfcc0
4 changed files with 146 additions and 27 deletions

View File

@@ -7,8 +7,8 @@ async def test_connection():
try:
# The file-like object is passed in as a keyword-only argument.
# See https://magicstack.github.io/asyncpg/current/api/index.html#asyncpg.connection.Connection.copy_from_query
await conn.copy_from_query("sql", output="filepath") # $ MISSING: getAPathArgument="filepath" getSql="sql"
await conn.copy_from_query("sql", "arg1", "arg2", output="filepath") # $ MISSING: getAPathArgument="filepath" getSql="sql"
await conn.copy_from_query("sql", output="filepath") # $ getSql="sql" MISSING: getAPathArgument="filepath"
await conn.copy_from_query("sql", "arg1", "arg2", output="filepath") # $ getSql="sql" MISSING: getAPathArgument="filepath"
await conn.copy_from_table("table", output="filepath") # $ MISSING: getAPathArgument="filepath"
await conn.copy_to_table("table", source="filepath") # $ MISSING: getAPathArgument="filepath"
@@ -20,8 +20,8 @@ async def test_connection_pool():
pool = await asyncpg.create_pool()
try:
await pool.copy_from_query("sql", output="filepath") # $ MISSING: getAPathArgument="filepath"
await pool.copy_from_query("sql", "arg1", "arg2", output="filepath") # $ MISSING: getAPathArgument="filepath"
await pool.copy_from_query("sql", output="filepath") # $ getSql="sql" MISSING: getAPathArgument="filepath"
await pool.copy_from_query("sql", "arg1", "arg2", output="filepath") # $ getSql="sql" MISSING: getAPathArgument="filepath"
await pool.copy_from_table("table", output="filepath") # $ MISSING: getAPathArgument="filepath"
await pool.copy_to_table("table", source="filepath") # $ MISSING: getAPathArgument="filepath"