davidhcoe
davidhcoe
It also appears I can't multiple statements that only have one result when using Arrow. For example, I can't run: ``` ALTER SESSION SET MULTI_STATEMENT_COUNT = 3; ``` followed by...
That works @sfc-gh-dszmolka in the sense that it doesn't _fail_, but the only result I get back in this case is a string that says "Multiple statements executed successfully." where...
Circling back - any updates on this?
This one has been idle for a while, but we continue to see the ask for this with ADBC/Arrow. Has there been any movement on this item?
Hmm, definitely not a small ask. Let me research some potential options and get back to you.
I was wondering if there is an update on this for the performance comparison. And whether any research had gone in to whether this might work with https://github.com/timescale/timescaledb.
I can't run it as is, I get the error: ``` 2024/04/22 11:35:08 failed to get result. err: sql: expected 22 destination arguments in Scan, not 23 ``` But I...
But, that call is also just a JSON call with no Arrow context to it. I will try to get a closer re-creation.
not quite the repro, but this is closer to the scenario: ``` package main import ( "context" "database/sql" "flag" "fmt" "log" "github.com/apache/arrow/go/v15/arrow/memory" "github.com/snowflakedb/gosnowflake" sf "github.com/snowflakedb/gosnowflake" ) func main() { if...
The problem is that the call isn't consistent. When the call has the lower number, it runs correctly, and the JSON can be parsed. https://github.com/snowflakedb/gosnowflake/blob/088150ca61eca6409cf682931cc2991d117bcaf0/connection.go#L651 indicates that the JSONData should...