Peter Fačko
Peter Fačko
Hello, would it be possible to make the `validate_json` function accept `memoryview`? Currently, it doesn't and it means unnecessarily copying data to make a `bytes` object.
### To reproduce ```sql CREATE TABLE t (b BOOLEAN); ``` ```Python async def f(connection: asyncpg.Connection): await connection.execute("INSERT INTO t VALUES ($1)", True) ``` ### QuestDB version: 8.1.2 ### OS, in...
### Is your feature request related to a problem? I have two tables: open and close deals. I need to join the opens with closes by timestamp to form positions....