Skip to content

Commit

Permalink
Revert "Update module name (#1)" (#2)
Browse files Browse the repository at this point in the history
This reverts commit 818e398.
  • Loading branch information
aldld authored Jul 20, 2022
1 parent 818e398 commit 6312f8d
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/apache/thrift/lib/go/thrift"
"github.com/sigmacomputing/databricks-sql-go/hive"
"github.com/databricks/databricks-sql-go/hive"
)

// Connection
Expand Down
2 changes: 1 addition & 1 deletion driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"time"

"github.com/apache/thrift/lib/go/thrift"
"github.com/sigmacomputing/databricks-sql-go/hive"
"github.com/databricks/databricks-sql-go/hive"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/sigmacomputing/databricks-sql-go/examples
module github.com/databricks/databricks-sql-go/examples

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion examples/list/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"log"
"os"

_ "github.com/sigmacomputing/databricks-sql-go"
_ "github.com/databricks/databricks-sql-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/tview/tview.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"strconv"
"time"

_ "github.com/databricks/databricks-sql-go"
"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
_ "github.com/sigmacomputing/databricks-sql-go"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/sigmacomputing/databricks-sql-go
module github.com/databricks/databricks-sql-go

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion hive/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"

"github.com/apache/thrift/lib/go/thrift"
"github.com/sigmacomputing/databricks-sql-go/cli_service"
"github.com/databricks/databricks-sql-go/cli_service"
)

// Client represents Hive Client
Expand Down
2 changes: 1 addition & 1 deletion hive/hive.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"log"

"github.com/sigmacomputing/databricks-sql-go/cli_service"
"github.com/databricks/databricks-sql-go/cli_service"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion hive/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"reflect"
"time"

"github.com/sigmacomputing/databricks-sql-go/cli_service"
"github.com/databricks/databricks-sql-go/cli_service"
)

type TableSchema struct {
Expand Down
2 changes: 1 addition & 1 deletion hive/operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"strings"

"github.com/sigmacomputing/databricks-sql-go/cli_service"
"github.com/databricks/databricks-sql-go/cli_service"
)

// Operation represents hive operation
Expand Down
2 changes: 1 addition & 1 deletion hive/result_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io"
"time"

"github.com/sigmacomputing/databricks-sql-go/cli_service"
"github.com/databricks/databricks-sql-go/cli_service"
)

// ResultSet ...
Expand Down
2 changes: 1 addition & 1 deletion hive/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package hive
import (
"context"

"github.com/sigmacomputing/databricks-sql-go/cli_service"
"github.com/databricks/databricks-sql-go/cli_service"
)

// Session represents hive session
Expand Down
2 changes: 1 addition & 1 deletion rows.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"database/sql/driver"
"reflect"

"github.com/sigmacomputing/databricks-sql-go/hive"
"github.com/databricks/databricks-sql-go/hive"
)

// Rows is an iterator over an executed query's results.
Expand Down
2 changes: 1 addition & 1 deletion statement.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"time"

"github.com/sigmacomputing/databricks-sql-go/hive"
"github.com/databricks/databricks-sql-go/hive"
)

// Stmt is statement
Expand Down

0 comments on commit 6312f8d

Please sign in to comment.