Skip to content

Commit 3e55e1c

Browse files
committed
Rename cloudberrydb/cbcopy to cloudberry-contrib/cbcopy
1 parent 81fdabf commit 3e55e1c

File tree

125 files changed

+323
-323
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+323
-323
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ COPYHELPER=cbcopy_helper
66

77
GINKGO_FLAGS := -r --keep-going --no-color
88
GIT_VERSION := $(shell git describe --tags | perl -pe 's/(.*)-([0-9]*)-(g[0-9a-f]*)/\1+dev.\2.\3/')
9-
VERSION_STR="-X github.com/cloudberrydb/cbcopy/utils.Version=$(GIT_VERSION)"
9+
VERSION_STR="-X github.com/cloudberry-contrib/cbcopy/utils.Version=$(GIT_VERSION)"
1010

1111
SUBDIRS_HAS_UNIT= meta/builtin/ testutils/ utils/
1212
GINKGO=$(shell go env GOPATH)/bin/ginkgo

cbcopy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package main
55
import (
66
"os"
77

8-
"github.com/cloudberrydb/cbcopy/copy"
9-
"github.com/cloudberrydb/cbcopy/utils"
8+
"github.com/cloudberry-contrib/cbcopy/copy"
9+
"github.com/cloudberry-contrib/cbcopy/utils"
1010
"github.com/spf13/cobra"
1111
)
1212

cbcopy_helper.go

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

8-
"github.com/cloudberrydb/cbcopy/helper"
8+
"github.com/cloudberry-contrib/cbcopy/helper"
99
"github.com/greenplum-db/gp-common-go-libs/gplog"
1010
)
1111

copy/copy.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"sync"
99
"time"
1010

11-
"github.com/cloudberrydb/cbcopy/internal/dbconn"
12-
"github.com/cloudberrydb/cbcopy/option"
13-
"github.com/cloudberrydb/cbcopy/utils"
11+
"github.com/cloudberry-contrib/cbcopy/internal/dbconn"
12+
"github.com/cloudberry-contrib/cbcopy/option"
13+
"github.com/cloudberry-contrib/cbcopy/utils"
1414
"github.com/greenplum-db/gp-common-go-libs/gplog"
1515
"github.com/spf13/cobra"
1616
"github.com/spf13/pflag"

copy/copy_command.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"strconv"
99
"strings"
1010

11-
"github.com/cloudberrydb/cbcopy/internal/dbconn"
12-
"github.com/cloudberrydb/cbcopy/option"
13-
"github.com/cloudberrydb/cbcopy/utils"
11+
"github.com/cloudberry-contrib/cbcopy/internal/dbconn"
12+
"github.com/cloudberry-contrib/cbcopy/option"
13+
"github.com/cloudberry-contrib/cbcopy/utils"
1414
"github.com/greenplum-db/gp-common-go-libs/gplog"
1515
uuid "github.com/satori/go.uuid"
1616
)

copy/copy_manager.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"os"
66
"sync"
77

8-
"github.com/cloudberrydb/cbcopy/internal/dbconn"
9-
"github.com/cloudberrydb/cbcopy/option"
10-
"github.com/cloudberrydb/cbcopy/utils"
8+
"github.com/cloudberry-contrib/cbcopy/internal/dbconn"
9+
"github.com/cloudberry-contrib/cbcopy/option"
10+
"github.com/cloudberry-contrib/cbcopy/utils"
1111
"github.com/greenplum-db/gp-common-go-libs/gplog"
1212
"github.com/greenplum-db/gp-common-go-libs/operating"
1313
)

copy/copy_metadata.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package copy
22

33
import (
4-
"github.com/cloudberrydb/cbcopy/internal/dbconn"
5-
"github.com/cloudberrydb/cbcopy/meta"
6-
"github.com/cloudberrydb/cbcopy/option"
7-
"github.com/cloudberrydb/cbcopy/utils"
4+
"github.com/cloudberry-contrib/cbcopy/internal/dbconn"
5+
"github.com/cloudberry-contrib/cbcopy/meta"
6+
"github.com/cloudberry-contrib/cbcopy/option"
7+
"github.com/cloudberry-contrib/cbcopy/utils"
88
)
99

1010
// MetadataManager handles all metadata related operations during copy process

copy/copy_operation.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"context"
55
"time"
66

7-
"github.com/cloudberrydb/cbcopy/internal/dbconn"
8-
"github.com/cloudberrydb/cbcopy/option"
9-
"github.com/cloudberrydb/cbcopy/utils"
7+
"github.com/cloudberry-contrib/cbcopy/internal/dbconn"
8+
"github.com/cloudberry-contrib/cbcopy/option"
9+
"github.com/cloudberry-contrib/cbcopy/utils"
1010
"github.com/greenplum-db/gp-common-go-libs/gplog"
1111
"github.com/pkg/errors"
1212
uuid "github.com/satori/go.uuid"

copy/copy_port_helper.go

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

8-
"github.com/cloudberrydb/cbcopy/internal/dbconn"
8+
"github.com/cloudberry-contrib/cbcopy/internal/dbconn"
99
"github.com/greenplum-db/gp-common-go-libs/gplog"
1010
)
1111

copy/copy_query.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/cloudberrydb/cbcopy/internal/dbconn"
8-
"github.com/cloudberrydb/cbcopy/option"
9-
"github.com/cloudberrydb/cbcopy/utils"
7+
"github.com/cloudberry-contrib/cbcopy/internal/dbconn"
8+
"github.com/cloudberry-contrib/cbcopy/option"
9+
"github.com/cloudberry-contrib/cbcopy/utils"
1010
"github.com/greenplum-db/gp-common-go-libs/gplog"
1111
)
1212

0 commit comments

Comments
 (0)