From f726a93b8d6feb2277168d6b7cc81dc815537468 Mon Sep 17 00:00:00 2001 From: Yang Yang Date: Tue, 6 Aug 2019 22:13:55 -0700 Subject: [PATCH] fix ci --- connection.go | 2 +- driver.go | 2 +- result.go | 2 +- rows.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/connection.go b/connection.go index cc53793..e73b408 100644 --- a/connection.go +++ b/connection.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - hiveserver2 "sqlflow.org/gohive/hiveserver2/gen-go/tcliservice" + hiveserver2 "github.com/sql-machine-learning/gohive/hiveserver2/gen-go/tcliservice" ) // hiveOptions for opened Hive sessions. diff --git a/driver.go b/driver.go index 6c93b25..748f6c5 100644 --- a/driver.go +++ b/driver.go @@ -7,7 +7,7 @@ import ( "errors" "github.com/apache/thrift/lib/go/thrift" - hiveserver2 "sqlflow.org/gohive/hiveserver2/gen-go/tcliservice" + hiveserver2 "github.com/sql-machine-learning/gohive/hiveserver2/gen-go/tcliservice" ) type drv struct{} diff --git a/result.go b/result.go index 475817c..c0b8143 100644 --- a/result.go +++ b/result.go @@ -3,7 +3,7 @@ package gohive import ( "database/sql/driver" - hiveserver2 "sqlflow.org/gohive/hiveserver2/gen-go/tcliservice" + hiveserver2 "github.com/sql-machine-learning/gohive/hiveserver2/gen-go/tcliservice" ) type hiveResult struct { diff --git a/rows.go b/rows.go index cf0f795..33bf7fd 100644 --- a/rows.go +++ b/rows.go @@ -9,7 +9,7 @@ import ( "reflect" "time" - hiveserver2 "sqlflow.org/gohive/hiveserver2/gen-go/tcliservice" + hiveserver2 "github.com/sql-machine-learning/gohive/hiveserver2/gen-go/tcliservice" ) // rowSet implements the interface database/sql/driver.Rows.