davidhcoe opened a new issue, #1020:
URL: https://github.com/apache/arrow-adbc/issues/1020
Consider this script:
```
create or replace TRANSIENT TABLE DEMO_DB.PUBLIC.NUMBERTYPETEST(
NUMBERTYPE NUMBER(38,0),
);
INSERT INTO DEMO_DB.PUBLIC.NUMBERTYPETEST (NUMBERTYPE) VALUES (1);
INSERT INTO DEMO_DB.PUBLIC.NUMBERTYPETEST (NUMBERTYPE) VALUES
(12345678901234567890123456789012345678);
```
and the query
```
SELECT * FROM DEMO_DB.PUBLIC.NUMBERTYPETEST
```
The expected result should contain two items. In Python, the values just get
converted to object, but the Go driver panics that the schema type and the
value type do not match, despite these being valid in Snowflake and other
languages. The Go driver should be able to support these valid values in a
result.
--
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]