Skip to content

Commit 5fd0604

Browse files
author
Arik Fraimovich
authored
Fix the module name (#5)
1 parent 9185646 commit 5fd0604

File tree

15 files changed

+16
-17
lines changed

15 files changed

+16
-17
lines changed

connection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/apache/thrift/lib/go/thrift"
10-
"github.com/databricks/databricks-sql-node/hive"
10+
"github.com/databricks/databricks-sql-go/hive"
1111
)
1212

1313
// Connection

driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"time"
1616

1717
"github.com/apache/thrift/lib/go/thrift"
18-
"github.com/databricks/databricks-sql-node/hive"
18+
"github.com/databricks/databricks-sql-go/hive"
1919
)
2020

2121
var (

examples/go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
module github.com/databricks/databricks-sql-node/examples
1+
module github.com/databricks/databricks-sql-go/examples
22

33
go 1.18
44

55
require (
6-
github.com/databricks/databricks-sql-node
76
github.com/gdamore/tcell/v2 v2.5.1
87
github.com/rivo/tview v0.0.0-20220307222120-9994674d60a8
98
)

examples/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/apache/thrift v0.12.0 h1:pODnxUFNcjP9UTLZGTdeh+j16A8lJbRvD3rOtrk/7bs=
22
github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
3-
github.com/databricks/databricks-sql-node v0.0.0-20220505212136-faf7eca8ae21 h1:jrq2fljZP0eGyd8+KeJyxaIsc9me2CXui5zzYAbtoBM=
4-
github.com/databricks/databricks-sql-node v0.0.0-20220505212136-faf7eca8ae21/go.mod h1:dP+yng72ZiI3zWhhfjMYeoGnUvhZbNsAoEZQCwNBElY=
3+
github.com/databricks/databricks-sql-go v0.0.0-20220505212136-faf7eca8ae21 h1:jrq2fljZP0eGyd8+KeJyxaIsc9me2CXui5zzYAbtoBM=
4+
github.com/databricks/databricks-sql-go v0.0.0-20220505212136-faf7eca8ae21/go.mod h1:dP+yng72ZiI3zWhhfjMYeoGnUvhZbNsAoEZQCwNBElY=
55
github.com/gdamore/encoding v1.0.0 h1:+7OoQ1Bc6eTm5niUzBa0Ctsh6JbMW6Ra+YNuAtDBdko=
66
github.com/gdamore/encoding v1.0.0/go.mod h1:alR0ol34c49FCSBLjhosxzcPHQbf2trDkoo5dl+VrEg=
77
github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1/go.mod h1:Az6Jt+M5idSED2YPGtwnfJV0kXohgdCBPmHGSYc1r04=

examples/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99
"os"
1010

11-
_ "github.com/databricks/databricks-sql-node"
11+
_ "github.com/databricks/databricks-sql-go"
1212
)
1313

1414
func main() {

examples/tview/tview.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"time"
1010

11-
_ "github.com/databricks/databricks-sql-node"
11+
_ "github.com/databricks/databricks-sql-go"
1212
"github.com/gdamore/tcell/v2"
1313
"github.com/rivo/tview"
1414
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/databricks/databricks-sql-node
1+
module github.com/databricks/databricks-sql-go
22

33
go 1.18
44

hive/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66

77
"github.com/apache/thrift/lib/go/thrift"
8-
"github.com/databricks/databricks-sql-node/cli_service"
8+
"github.com/databricks/databricks-sql-go/cli_service"
99
)
1010

1111
// Client represents Hive Client

hive/hive.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"log"
77

8-
"github.com/databricks/databricks-sql-node/cli_service"
8+
"github.com/databricks/databricks-sql-go/cli_service"
99
)
1010

1111
const (

hive/metadata.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"time"
77

8-
"github.com/databricks/databricks-sql-node/cli_service"
8+
"github.com/databricks/databricks-sql-go/cli_service"
99
)
1010

1111
type TableSchema struct {

0 commit comments

Comments
 (0)