DataSources: Update SDKs in support of auth service (#112101)

* DataSources: Update SDKs for auth service

* Fix deprecated methods & types for new arrow-go version
This commit is contained in:
Nathan Vērzemnieks
2025-11-07 10:15:27 +01:00
committed by GitHub
parent 06e1c83276
commit f4b23253b1
12 changed files with 321 additions and 221 deletions
+1 -3
View File
@@ -114,9 +114,7 @@ func (w *parquetWriter) Close() error {
// writes the current buffer to parquet and re-inits the arrow buffer
func (w *parquetWriter) flush() error {
w.logger.Info("flush", "count", w.rv.Len())
//TODO: fix deprecation warning
//nolint:staticcheck
rec := array.NewRecord(w.schema, []arrow.Array{
rec := array.NewRecordBatch(w.schema, []arrow.Array{
w.rv.NewArray(),
w.namespace.NewArray(),
w.group.NewArray(),