Skip to content

Commit

Permalink
feat(go/adbc/driver/flightsql): enable incremental queries
Browse files Browse the repository at this point in the history
Closes #1451.
  • Loading branch information
lidavidm committed Jan 19, 2024
1 parent 53f3128 commit 6441dbd
Show file tree
Hide file tree
Showing 36 changed files with 670 additions and 138 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ $ cd go/adbc && go-licenses report ./... \
--ignore github.com/apache/arrow/go/v11 \
--ignore github.com/apache/arrow/go/v12 \
--ignore github.com/apache/arrow/go/v13 \
--ignore github.com/apache/arrow/go/v14 \
--ignore github.com/apache/arrow/go/v15 \
--template ../../license.tpl > ../../LICENSE.txt 2> /dev/null
```

Expand Down
4 changes: 2 additions & 2 deletions go/adbc/adbc.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ import (
"context"
"fmt"

"github.com/apache/arrow/go/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/array"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/array"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/known/anypb"
)
Expand Down
2 changes: 1 addition & 1 deletion go/adbc/driver/driverbase/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"context"

"github.com/apache/arrow-adbc/go/adbc"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow/memory"
"golang.org/x/exp/slog"
)

Expand Down
2 changes: 1 addition & 1 deletion go/adbc/driver/driverbase/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package driverbase

import (
"github.com/apache/arrow-adbc/go/adbc"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow/memory"
)

// DriverImpl is an interface that drivers implement to provide
Expand Down
10 changes: 5 additions & 5 deletions go/adbc/driver/flightsql/cmd/testserver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ import (
"strconv"
"strings"

"github.com/apache/arrow/go/v14/arrow"
"github.com/apache/arrow/go/v14/arrow/array"
"github.com/apache/arrow/go/v14/arrow/flight"
"github.com/apache/arrow/go/v14/arrow/flight/flightsql"
"github.com/apache/arrow/go/v14/arrow/memory"
"github.com/apache/arrow/go/v15/arrow"
"github.com/apache/arrow/go/v15/arrow/array"
"github.com/apache/arrow/go/v15/arrow/flight"
"github.com/apache/arrow/go/v15/arrow/flight/flightsql"
"github.com/apache/arrow/go/v15/arrow/memory"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"google.golang.org/protobuf/proto"
Expand Down
Loading

0 comments on commit 6441dbd

Please sign in to comment.