In asyncpg (version 0.18.3), is this code: ``` for bind in bind_list: conn.execute("some insert query", *bind) ``` identical to this: `conn.executemany("some insert query", bind_list)`? Because AFAIK this was/is the case with psycopg2.