Skip to content

Commit bfe1b8d

Browse files
yjh0502scritchley
authored andcommitted
rename imports (#4)
1 parent 8a5b083 commit bfe1b8d

9 files changed

+9
-9
lines changed

columnstatistics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package orc
22

33
import (
4-
"code.simon-critchley.co.uk/orc/proto"
4+
"github.com/scritchley/orc/proto"
55
)
66

77
type statisticsMap map[int]ColumnStatistics

cursor_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package orc
33
import (
44
"testing"
55

6-
"code.simon-critchley.co.uk/orc/proto"
6+
"github.com/scritchley/orc/proto"
77
)
88

99
func TestCursor(t *testing.T) {

reader.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
gproto "github.com/golang/protobuf/proto"
1111

12-
"code.simon-critchley.co.uk/orc/proto"
12+
"github.com/scritchley/orc/proto"
1313
)
1414

1515
var (

streamname.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"io"
66

7-
"code.simon-critchley.co.uk/orc/proto"
7+
"github.com/scritchley/orc/proto"
88
)
99

1010
type streamMap map[streamName]io.Reader

treereader.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"math"
1111
"time"
1212

13-
"code.simon-critchley.co.uk/orc/proto"
13+
"github.com/scritchley/orc/proto"
1414
)
1515

1616
var (

treereaderfactory.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package orc
33
import (
44
"fmt"
55

6-
"code.simon-critchley.co.uk/orc/proto"
6+
"github.com/scritchley/orc/proto"
77
)
88

99
func createTreeReader(schema *TypeDescription, m streamMap, r *Reader) (TreeReader, error) {

treewriter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"math"
88
"reflect"
99

10-
"code.simon-critchley.co.uk/orc/proto"
10+
"github.com/scritchley/orc/proto"
1111
)
1212

1313
// TreeWriter is an interface for writing to a stream.

typedescription.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"unicode"
88
"unicode/utf8"
99

10-
"code.simon-critchley.co.uk/orc/proto"
10+
"github.com/scritchley/orc/proto"
1111
)
1212

1313
type Category struct {

writer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
gproto "github.com/golang/protobuf/proto"
88

9-
"code.simon-critchley.co.uk/orc/proto"
9+
"github.com/scritchley/orc/proto"
1010
)
1111

1212
var (

0 commit comments

Comments
 (0)