Update module url to cloudberrydb repo
diff --git a/ci/pipeline.yml b/ci/pipeline.yml
index a0d8180..dec0dd2 100644
--- a/ci/pipeline.yml
+++ b/ci/pipeline.yml
@@ -3,7 +3,7 @@
 - name: gp-common-go-libs
   type: git
   source:
-    uri: https://github.com/greenplum-db/gp-common-go-libs
+    uri: https://github.com/cloudberrydb/gp-common-go-libs
     branch: ((branch))
 
 jobs:
@@ -22,7 +22,7 @@
           tag: ((golang-version))-buster
       inputs:
       - name: gp-common-go-libs
-        path: go/src/github.com/greenplum-db/gp-common-go-libs
+        path: go/src/github.com/cloudberrydb/gp-common-go-libs
       run:
         path: bash
         args:
@@ -31,5 +31,5 @@
           set -ex
           export GOPATH=$PWD/go
           export PATH=$GOPATH/bin:$PATH
-          cd $GOPATH/src/github.com/greenplum-db/gp-common-go-libs
+          cd $GOPATH/src/github.com/cloudberrydb/gp-common-go-libs
           make depend unit
diff --git a/cluster/cluster.go b/cluster/cluster.go
index 7422422..06d643b 100644
--- a/cluster/cluster.go
+++ b/cluster/cluster.go
@@ -11,9 +11,9 @@
 	"os/exec"
 	"strings"
 
-	"github.com/greenplum-db/gp-common-go-libs/dbconn"
-	"github.com/greenplum-db/gp-common-go-libs/gplog"
-	"github.com/greenplum-db/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/dbconn"
+	"github.com/cloudberrydb/gp-common-go-libs/gplog"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
 	"github.com/pkg/errors"
 )
 
diff --git a/cluster/cluster_test.go b/cluster/cluster_test.go
index f1a633b..7d737f9 100644
--- a/cluster/cluster_test.go
+++ b/cluster/cluster_test.go
@@ -9,10 +9,10 @@
 
 	sqlmock "github.com/DATA-DOG/go-sqlmock"
 
-	"github.com/greenplum-db/gp-common-go-libs/cluster"
-	"github.com/greenplum-db/gp-common-go-libs/dbconn"
-	"github.com/greenplum-db/gp-common-go-libs/operating"
-	"github.com/greenplum-db/gp-common-go-libs/testhelper"
+	"github.com/cloudberrydb/gp-common-go-libs/cluster"
+	"github.com/cloudberrydb/gp-common-go-libs/dbconn"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/testhelper"
 	"github.com/pkg/errors"
 
 	. "github.com/onsi/ginkgo/v2"
diff --git a/conv/float_test.go b/conv/float_test.go
index 02b3976..ea73862 100644
--- a/conv/float_test.go
+++ b/conv/float_test.go
@@ -5,7 +5,7 @@
 	"strconv"
 	"testing"
 
-	. "github.com/greenplum-db/gp-common-go-libs/conv"
+	. "github.com/cloudberrydb/gp-common-go-libs/conv"
 	. "github.com/onsi/ginkgo/v2"
 	. "github.com/onsi/gomega"
 )
diff --git a/conv/int_test.go b/conv/int_test.go
index 77842dc..14d34f9 100644
--- a/conv/int_test.go
+++ b/conv/int_test.go
@@ -8,7 +8,7 @@
 	"testing"
 	"time"
 
-	. "github.com/greenplum-db/gp-common-go-libs/conv"
+	. "github.com/cloudberrydb/gp-common-go-libs/conv"
 	. "github.com/onsi/ginkgo/v2"
 	. "github.com/onsi/gomega"
 )
diff --git a/conv/md5_test.go b/conv/md5_test.go
index 6000a51..4c52f0d 100644
--- a/conv/md5_test.go
+++ b/conv/md5_test.go
@@ -7,7 +7,7 @@
 	"testing"
 	"time"
 
-	. "github.com/greenplum-db/gp-common-go-libs/conv"
+	. "github.com/cloudberrydb/gp-common-go-libs/conv"
 	. "github.com/onsi/ginkgo/v2"
 	. "github.com/onsi/gomega"
 )
diff --git a/conv/uint_test.go b/conv/uint_test.go
index 44ca2a1..696b554 100644
--- a/conv/uint_test.go
+++ b/conv/uint_test.go
@@ -8,7 +8,7 @@
 	"testing"
 	"time"
 
-	. "github.com/greenplum-db/gp-common-go-libs/conv"
+	. "github.com/cloudberrydb/gp-common-go-libs/conv"
 	. "github.com/onsi/ginkgo/v2"
 	. "github.com/onsi/gomega"
 )
diff --git a/dbconn/dbconn.go b/dbconn/dbconn.go
index 2bc4fce..cf0cd67 100644
--- a/dbconn/dbconn.go
+++ b/dbconn/dbconn.go
@@ -12,8 +12,8 @@
 	"strconv"
 	"strings"
 
-	"github.com/greenplum-db/gp-common-go-libs/gplog"
-	"github.com/greenplum-db/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/gplog"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
 
 	/*
 	 * We previously used github.com/lib/pq as our Postgres driver,
diff --git a/dbconn/dbconn_test.go b/dbconn/dbconn_test.go
index 3fcb1bd..e5d342e 100644
--- a/dbconn/dbconn_test.go
+++ b/dbconn/dbconn_test.go
@@ -9,9 +9,9 @@
 	"time"
 
 	sqlmock "github.com/DATA-DOG/go-sqlmock"
-	"github.com/greenplum-db/gp-common-go-libs/dbconn"
-	"github.com/greenplum-db/gp-common-go-libs/operating"
-	"github.com/greenplum-db/gp-common-go-libs/testhelper"
+	"github.com/cloudberrydb/gp-common-go-libs/dbconn"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/testhelper"
 	"github.com/jmoiron/sqlx"
 
 	. "github.com/onsi/ginkgo/v2"
diff --git a/dbconn/version_test.go b/dbconn/version_test.go
index 8bba4ce..ab33be3 100644
--- a/dbconn/version_test.go
+++ b/dbconn/version_test.go
@@ -2,7 +2,7 @@
 
 import (
 	"github.com/blang/semver"
-	"github.com/greenplum-db/gp-common-go-libs/dbconn"
+	"github.com/cloudberrydb/gp-common-go-libs/dbconn"
 
 	. "github.com/onsi/ginkgo/v2"
 	. "github.com/onsi/gomega"
diff --git a/gplog/gplog.go b/gplog/gplog.go
index 81be2a7..1dbec86 100644
--- a/gplog/gplog.go
+++ b/gplog/gplog.go
@@ -12,7 +12,7 @@
 	"strings"
 	"sync"
 
-	"github.com/greenplum-db/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
 	"github.com/pkg/errors"
 )
 
diff --git a/gplog/gplog_test.go b/gplog/gplog_test.go
index c0032bf..7d387d4 100644
--- a/gplog/gplog_test.go
+++ b/gplog/gplog_test.go
@@ -10,9 +10,9 @@
 	"testing"
 	"time"
 
-	"github.com/greenplum-db/gp-common-go-libs/gplog"
-	"github.com/greenplum-db/gp-common-go-libs/operating"
-	"github.com/greenplum-db/gp-common-go-libs/testhelper"
+	"github.com/cloudberrydb/gp-common-go-libs/gplog"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/testhelper"
 	. "github.com/onsi/ginkgo/v2"
 	. "github.com/onsi/gomega"
 	"github.com/onsi/gomega/gbytes"
diff --git a/iohelper/iohelper.go b/iohelper/iohelper.go
index f28b35e..a32ffa7 100644
--- a/iohelper/iohelper.go
+++ b/iohelper/iohelper.go
@@ -11,8 +11,8 @@
 	"io"
 	"os"
 
-	"github.com/greenplum-db/gp-common-go-libs/gplog"
-	"github.com/greenplum-db/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/gplog"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
 	"github.com/pkg/errors"
 )
 
diff --git a/iohelper/iohelper_test.go b/iohelper/iohelper_test.go
index b19845e..b745579 100644
--- a/iohelper/iohelper_test.go
+++ b/iohelper/iohelper_test.go
@@ -6,9 +6,9 @@
 	"os"
 	"testing"
 
-	"github.com/greenplum-db/gp-common-go-libs/iohelper"
-	"github.com/greenplum-db/gp-common-go-libs/operating"
-	"github.com/greenplum-db/gp-common-go-libs/testhelper"
+	"github.com/cloudberrydb/gp-common-go-libs/iohelper"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/testhelper"
 
 	. "github.com/onsi/ginkgo/v2"
 	. "github.com/onsi/gomega"
diff --git a/structmatcher/structmatcher_test.go b/structmatcher/structmatcher_test.go
index 1e4dc47..e284785 100644
--- a/structmatcher/structmatcher_test.go
+++ b/structmatcher/structmatcher_test.go
@@ -1,7 +1,7 @@
 package structmatcher_test
 
 import (
-	"github.com/greenplum-db/gp-common-go-libs/structmatcher"
+	"github.com/cloudberrydb/gp-common-go-libs/structmatcher"
 
 	"testing"
 
diff --git a/testhelper/functions.go b/testhelper/functions.go
index 352bab2..c41c665 100644
--- a/testhelper/functions.go
+++ b/testhelper/functions.go
@@ -7,9 +7,9 @@
 	"strings"
 
 	sqlmock "github.com/DATA-DOG/go-sqlmock"
-	"github.com/greenplum-db/gp-common-go-libs/dbconn"
-	"github.com/greenplum-db/gp-common-go-libs/gplog"
-	"github.com/greenplum-db/gp-common-go-libs/operating"
+	"github.com/cloudberrydb/gp-common-go-libs/dbconn"
+	"github.com/cloudberrydb/gp-common-go-libs/gplog"
+	"github.com/cloudberrydb/gp-common-go-libs/operating"
 	"github.com/jmoiron/sqlx"
 	. "github.com/onsi/gomega"
 	"github.com/onsi/gomega/gbytes"
diff --git a/testhelper/structs.go b/testhelper/structs.go
index 015130d..e3e4245 100644
--- a/testhelper/structs.go
+++ b/testhelper/structs.go
@@ -5,7 +5,7 @@
  */
 
 import (
-	"github.com/greenplum-db/gp-common-go-libs/cluster"
+	"github.com/cloudberrydb/gp-common-go-libs/cluster"
 	"github.com/jmoiron/sqlx"
 )