Skip to content

Commit c6a371e

Browse files
author
Shlomi Noach
committed
Merge pull request #34 from github/rename-gh-ost
Rename to gh-ost
2 parents 92d09db + 21f6ae9 commit c6a371e

26 files changed

+101
-101
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# gh-osc
1+
# gh-ost
22
GitHub's Online Schema Change for MySQL

build.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
#
33
#
44

5-
buildpath=/tmp/gh-osc
6-
target=gh-osc
5+
buildpath=/tmp/gh-ost
6+
target=gh-ost
77
timestamp=$(date "+%Y%m%d%H%M%S")
88
mkdir -p ${buildpath}
9-
gobuild="go build -o $buildpath/$target go/cmd/gh-osc/main.go"
9+
gobuild="go build -o $buildpath/$target go/cmd/gh-ost/main.go"
1010

1111
echo "Building OS/X binary"
1212
echo "GO15VENDOREXPERIMENT=1 GOOS=darwin GOARCH=amd64 $gobuild" | bash
13-
(cd $buildpath && tar cfz ./gh-osc-binary-osx-${timestamp}.tar.gz $target)
13+
(cd $buildpath && tar cfz ./gh-ost-binary-osx-${timestamp}.tar.gz $target)
1414

1515
echo "Building linux binary"
1616
echo "GO15VENDOREXPERIMENT=1 GOOS=linux GOARCH=amd64 $gobuild" | bash
17-
(cd $buildpath && tar cfz ./gh-osc-binary-linux-${timestamp}.tar.gz $target)
17+
(cd $buildpath && tar cfz ./gh-ost-binary-linux-${timestamp}.tar.gz $target)
1818

1919
echo "Binaries found in:"
20-
ls -1 $buildpath/gh-osc-binary*${timestamp}.tar.gz
20+
ls -1 $buildpath/gh-ost-binary*${timestamp}.tar.gz

go/base/context.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Copyright 2016 GitHub Inc.
3-
See https://github.com/github/gh-osc/blob/master/LICENSE
3+
See https://github.com/github/gh-ost/blob/master/LICENSE
44
*/
55

66
package base
@@ -13,8 +13,8 @@ import (
1313
"sync/atomic"
1414
"time"
1515

16-
"github.com/github/gh-osc/go/mysql"
17-
"github.com/github/gh-osc/go/sql"
16+
"github.com/github/gh-ost/go/mysql"
17+
"github.com/github/gh-ost/go/sql"
1818

1919
"gopkg.in/gcfg.v1"
2020
)

go/base/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Copyright 2016 GitHub Inc.
3-
See https://github.com/github/gh-osc/blob/master/LICENSE
3+
See https://github.com/github/gh-ost/blob/master/LICENSE
44
*/
55

66
package base

go/binlog/binlog_dml_event.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*
22
Copyright 2016 GitHub Inc.
3-
See https://github.com/github/gh-osc/blob/master/LICENSE
3+
See https://github.com/github/gh-ost/blob/master/LICENSE
44
*/
55

66
package binlog
77

88
import (
99
"fmt"
10-
"github.com/github/gh-osc/go/sql"
10+
"github.com/github/gh-ost/go/sql"
1111
"strings"
1212
)
1313

go/binlog/binlog_entry.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*
22
Copyright 2016 GitHub Inc.
3-
See https://github.com/github/gh-osc/blob/master/LICENSE
3+
See https://github.com/github/gh-ost/blob/master/LICENSE
44
*/
55

66
package binlog
77

88
import (
99
"fmt"
10-
"github.com/github/gh-osc/go/mysql"
10+
"github.com/github/gh-ost/go/mysql"
1111
)
1212

1313
// BinlogEntry describes an entry in the binary log

go/binlog/binlog_reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Copyright 2016 GitHub Inc.
3-
See https://github.com/github/gh-osc/blob/master/LICENSE
3+
See https://github.com/github/gh-ost/blob/master/LICENSE
44
*/
55

66
package binlog

go/binlog/binlog_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Copyright 2016 GitHub Inc.
3-
See https://github.com/github/gh-osc/blob/master/LICENSE
3+
See https://github.com/github/gh-ost/blob/master/LICENSE
44
*/
55

66
package binlog

go/binlog/gomysql_reader.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/*
22
Copyright 2016 GitHub Inc.
3-
See https://github.com/github/gh-osc/blob/master/LICENSE
3+
See https://github.com/github/gh-ost/blob/master/LICENSE
44
*/
55

66
package binlog
77

88
import (
99
"fmt"
1010

11-
"github.com/github/gh-osc/go/mysql"
12-
"github.com/github/gh-osc/go/sql"
11+
"github.com/github/gh-ost/go/mysql"
12+
"github.com/github/gh-ost/go/sql"
1313

1414
"github.com/outbrain/golib/log"
1515
gomysql "github.com/siddontang/go-mysql/mysql"

go/binlog/mysqlbinlog_reader.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Copyright 2016 GitHub Inc.
3-
See https://github.com/github/gh-osc/blob/master/LICENSE
3+
See https://github.com/github/gh-ost/blob/master/LICENSE
44
*/
55

66
package binlog
@@ -14,7 +14,7 @@ import (
1414
"strconv"
1515
// "strings"
1616

17-
"github.com/github/gh-osc/go/os"
17+
"github.com/github/gh-ost/go/os"
1818
"github.com/outbrain/golib/log"
1919
)
2020

0 commit comments

Comments
 (0)