This is an automated email from the ASF dual-hosted git repository. zeroshade pushed a commit to branch fixup-metadata-getobjects-snowflake in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
commit a5a18a4dc50163dc6696a7ea648c3d5fd8ffad48 Author: Matt Topol <[email protected]> AuthorDate: Wed Oct 16 14:16:04 2024 -0400 remove unused func --- go/adbc/driver/snowflake/connection.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/go/adbc/driver/snowflake/connection.go b/go/adbc/driver/snowflake/connection.go index 973fdaa29..04ed56348 100644 --- a/go/adbc/driver/snowflake/connection.go +++ b/go/adbc/driver/snowflake/connection.go @@ -372,10 +372,6 @@ func (c *connectionImpl) GetObjects(ctx context.Context, depth adbc.ObjectDepth, return driverbase.BuildGetObjectsRecordReader(c.Alloc, catalogCh, errCh) } -func isNilOrEmpty(str *string) bool { - return str == nil || *str == "" -} - // PrepareDriverInfo implements driverbase.DriverInfoPreparer. func (c *connectionImpl) PrepareDriverInfo(ctx context.Context, infoCodes []adbc.InfoCode) error { if err := c.ConnectionImplBase.DriverInfo.RegisterInfoCode(adbc.InfoVendorSql, true); err != nil {
