davidhcoe opened a new issue, #1019: URL: https://github.com/apache/arrow-adbc/issues/1019
Additional details to https://github.com/apache/arrow/issues/37369 It doesn't matter the type, if a time64 type comes before anything else, a problem occurs. ``` select NUMBERTYPE,TIMETYPE FROM DEMO_DB.PUBLIC.ADBC_ALLTYPES limit 1 ``` works as expected, but ``` select TIMETYPE,NUMBERTYPE FROM DEMO_DB.PUBLIC.ADBC_ALLTYPES limit 1 ``` results in: ``` goroutine 37 [running]: github.com/apache/arrow/go/v13/arrow/array.NewRecord(0xc00046a6c0, {0xc00044d5c0, 0x2, 0xc00049ab40?}, 0x1) C:/Users/davidcoe/go/pkg/mod/github.com/apache/arrow/go/[email protected]/arrow/array/record.go:151 +0x197 github.com/apache/arrow-adbc/go/adbc/driver/snowflake.getRecTransformer.func1({0x5f94b410, 0xc0003ec370}, {0x5f962ae8, 0xc000515860}) C:/dev/arrow-adbc/go/adbc/driver/snowflake/record_reader.go:74 +0x369 github.com/apache/arrow-adbc/go/adbc/driver/snowflake.newRecordReader.func2() C:/dev/arrow-adbc/go/adbc/driver/snowflake/record_reader.go:501 +0x1b7 golang.org/x/sync/errgroup.(*Group).Go.func1() C:/Users/davidcoe/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:75 +0x64 created by golang.org/x/sync/errgroup.(*Group).Go C:/Users/davidcoe/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:72 +0xa5 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
