This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 6d542d382 chore(go/adbc): fix deprecation warning (#3538)
6d542d382 is described below

commit 6d542d3824da3bb7507102ef0623560b1dd0d7b9
Author: David Li <[email protected]>
AuthorDate: Tue Oct 7 14:12:59 2025 +0900

    chore(go/adbc): fix deprecation warning (#3538)
    
    Caused by merging an old PR that hadn't been rebased.
---
 go/adbc/driver/snowflake/driver_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/go/adbc/driver/snowflake/driver_test.go 
b/go/adbc/driver/snowflake/driver_test.go
index 429a8231e..8d7a4fb39 100644
--- a/go/adbc/driver/snowflake/driver_test.go
+++ b/go/adbc/driver/snowflake/driver_test.go
@@ -2053,7 +2053,7 @@ func (suite *SnowflakeTests) TestSchemaWithLowPrecision() 
{
 
        // Check actual data types in the record
        suite.True(rdr.Next())
-       rec := rdr.Record()
+       rec := rdr.RecordBatch()
 
        // Verify INTEGER_COL is actually Int64
        col0 := rec.Column(0)

Reply via email to