Skip to content

Commit 383de44

Browse files
committed
chore: upgrade the DLE module version to v3
1 parent 13716b7 commit 383de44

File tree

105 files changed

+384
-384
lines changed

Some content is hidden

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

105 files changed

+384
-384
lines changed

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ BUILD_DIR=${GOPATH}/${SERVER_BINARY}
1414

1515
# Setup the -ldflags option for go build here, interpolate the variable values
1616
LDFLAGS = -ldflags "-s -w \
17-
-X gitlab.com/postgres-ai/database-lab/v2/version.version=${VERSION} \
18-
-X gitlab.com/postgres-ai/database-lab/v2/version.buildTime=${BUILD_TIME}"
17+
-X gitlab.com/postgres-ai/database-lab/v3/version.version=${VERSION} \
18+
-X gitlab.com/postgres-ai/database-lab/v3/version.buildTime=${BUILD_TIME}"
1919

2020
# Go tooling command aliases
2121
GOBUILD = GO111MODULE=on GOARCH=${GOARCH} go build ${LDFLAGS}

Diff for: cmd/cli/commands/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"github.com/urfave/cli/v2"
1212

13-
"gitlab.com/postgres-ai/database-lab/v2/pkg/client/dblabapi"
13+
"gitlab.com/postgres-ai/database-lab/v3/pkg/client/dblabapi"
1414
)
1515

1616
// CLI configuration keys.

Diff for: cmd/cli/commands/clone/actions.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import (
1818
"github.com/pkg/errors"
1919
"github.com/urfave/cli/v2"
2020

21-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
22-
"gitlab.com/postgres-ai/database-lab/v2/internal/observer"
23-
"gitlab.com/postgres-ai/database-lab/v2/pkg/client/dblabapi/types"
24-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
25-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
21+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
22+
"gitlab.com/postgres-ai/database-lab/v3/internal/observer"
23+
"gitlab.com/postgres-ai/database-lab/v3/pkg/client/dblabapi/types"
24+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
25+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
2626
)
2727

2828
// list runs a request to list clones of an instance.

Diff for: cmd/cli/commands/clone/command_list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package clone
77
import (
88
"github.com/urfave/cli/v2"
99

10-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
10+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
1111
)
1212

1313
const (

Diff for: cmd/cli/commands/config/actions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
"github.com/urfave/cli/v2"
1515

16-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
16+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
1717
)
1818

1919
// headers of a config list.

Diff for: cmd/cli/commands/config/environment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/pkg/errors"
99
"github.com/urfave/cli/v2"
1010

11-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
11+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
1212
)
1313

1414
// CLIConfig defines a format of CLI configuration.

Diff for: cmd/cli/commands/global/actions.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"github.com/pkg/errors"
1414
"github.com/urfave/cli/v2"
1515

16-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
17-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands/config"
18-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
16+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
17+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands/config"
18+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
1919
)
2020

2121
func initCLI(c *cli.Context) error {

Diff for: cmd/cli/commands/global/command_list.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ package global
77
import (
88
"github.com/urfave/cli/v2"
99

10-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
11-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/templates"
10+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
11+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/templates"
1212
)
1313

1414
// List provides commands for getting started.

Diff for: cmd/cli/commands/instance/actions.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111

1212
"github.com/urfave/cli/v2"
1313

14-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
15-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
14+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
15+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
1616
)
1717

1818
// status runs a request to get status of the instance.

Diff for: cmd/cli/commands/port_forwarding.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/urfave/cli/v2"
1515
"golang.org/x/crypto/ssh"
1616

17-
"gitlab.com/postgres-ai/database-lab/v2/internal/portfwd"
17+
"gitlab.com/postgres-ai/database-lab/v3/internal/portfwd"
1818
)
1919

2020
// BuildTunnel creates a new instance of SSH tunnel.

Diff for: cmd/cli/commands/snapshot/actions.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111

1212
"github.com/urfave/cli/v2"
1313

14-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
15-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
14+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
15+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
1616
)
1717

1818
// list runs a request to list snapshots of an instance.

Diff for: cmd/cli/main.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ import (
88

99
"github.com/urfave/cli/v2"
1010

11-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands"
12-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands/clone"
13-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands/config"
14-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands/global"
15-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands/instance"
16-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/commands/snapshot"
17-
"gitlab.com/postgres-ai/database-lab/v2/cmd/cli/templates"
18-
dblabLog "gitlab.com/postgres-ai/database-lab/v2/pkg/log"
19-
"gitlab.com/postgres-ai/database-lab/v2/version"
11+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands"
12+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands/clone"
13+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands/config"
14+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands/global"
15+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands/instance"
16+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/commands/snapshot"
17+
"gitlab.com/postgres-ai/database-lab/v3/cmd/cli/templates"
18+
dblabLog "gitlab.com/postgres-ai/database-lab/v3/pkg/log"
19+
"gitlab.com/postgres-ai/database-lab/v3/version"
2020
)
2121

2222
func main() {

Diff for: cmd/database-lab/main.go

+18-18
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@ import (
2020
"github.com/docker/docker/client"
2121
"github.com/pkg/errors"
2222

23-
"gitlab.com/postgres-ai/database-lab/v2/internal/cloning"
24-
"gitlab.com/postgres-ai/database-lab/v2/internal/estimator"
25-
"gitlab.com/postgres-ai/database-lab/v2/internal/localui"
26-
"gitlab.com/postgres-ai/database-lab/v2/internal/observer"
27-
"gitlab.com/postgres-ai/database-lab/v2/internal/platform"
28-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision"
29-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/pool"
30-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/resources"
31-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/runners"
32-
"gitlab.com/postgres-ai/database-lab/v2/internal/retrieval"
33-
"gitlab.com/postgres-ai/database-lab/v2/internal/retrieval/engine/postgres/tools/cont"
34-
"gitlab.com/postgres-ai/database-lab/v2/internal/srv"
35-
"gitlab.com/postgres-ai/database-lab/v2/internal/telemetry"
36-
"gitlab.com/postgres-ai/database-lab/v2/pkg/config"
37-
"gitlab.com/postgres-ai/database-lab/v2/pkg/config/global"
38-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
39-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util/networks"
40-
"gitlab.com/postgres-ai/database-lab/v2/version"
23+
"gitlab.com/postgres-ai/database-lab/v3/internal/cloning"
24+
"gitlab.com/postgres-ai/database-lab/v3/internal/estimator"
25+
"gitlab.com/postgres-ai/database-lab/v3/internal/localui"
26+
"gitlab.com/postgres-ai/database-lab/v3/internal/observer"
27+
"gitlab.com/postgres-ai/database-lab/v3/internal/platform"
28+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision"
29+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/pool"
30+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
31+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
32+
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval"
33+
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools/cont"
34+
"gitlab.com/postgres-ai/database-lab/v3/internal/srv"
35+
"gitlab.com/postgres-ai/database-lab/v3/internal/telemetry"
36+
"gitlab.com/postgres-ai/database-lab/v3/pkg/config"
37+
"gitlab.com/postgres-ai/database-lab/v3/pkg/config/global"
38+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
39+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/networks"
40+
"gitlab.com/postgres-ai/database-lab/v3/version"
4141
)
4242

4343
const (

Diff for: cmd/runci/main.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import (
1111
"github.com/docker/docker/client"
1212
"github.com/pkg/errors"
1313

14-
"gitlab.com/postgres-ai/database-lab/v2/internal/platform"
15-
"gitlab.com/postgres-ai/database-lab/v2/internal/retrieval/engine/postgres/tools"
16-
"gitlab.com/postgres-ai/database-lab/v2/internal/runci"
17-
"gitlab.com/postgres-ai/database-lab/v2/internal/runci/source"
18-
"gitlab.com/postgres-ai/database-lab/v2/pkg/client/dblabapi"
19-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
20-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util/networks"
14+
"gitlab.com/postgres-ai/database-lab/v3/internal/platform"
15+
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools"
16+
"gitlab.com/postgres-ai/database-lab/v3/internal/runci"
17+
"gitlab.com/postgres-ai/database-lab/v3/internal/runci/source"
18+
"gitlab.com/postgres-ai/database-lab/v3/pkg/client/dblabapi"
19+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
20+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/networks"
2121
)
2222

2323
func main() {

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module gitlab.com/postgres-ai/database-lab/v2
1+
module gitlab.com/postgres-ai/database-lab/v3
22

33
go 1.17
44

Diff for: internal/cloning/base.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ import (
2121
"github.com/pkg/errors"
2222
"github.com/rs/xid"
2323

24-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision"
25-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/resources"
26-
"gitlab.com/postgres-ai/database-lab/v2/internal/telemetry"
27-
"gitlab.com/postgres-ai/database-lab/v2/pkg/client/dblabapi/types"
28-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
29-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
30-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util"
31-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util/pglog"
32-
"gitlab.com/postgres-ai/database-lab/v2/version"
24+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision"
25+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
26+
"gitlab.com/postgres-ai/database-lab/v3/internal/telemetry"
27+
"gitlab.com/postgres-ai/database-lab/v3/pkg/client/dblabapi/types"
28+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
29+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
30+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util"
31+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/pglog"
32+
"gitlab.com/postgres-ai/database-lab/v3/version"
3333
)
3434

3535
const (

Diff for: internal/cloning/base_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/stretchr/testify/require"
1212
"github.com/stretchr/testify/suite"
1313

14-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
14+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
1515
)
1616

1717
func TestBaseCloningSuite(t *testing.T) {

Diff for: internal/cloning/snapshots.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010

1111
"github.com/pkg/errors"
1212

13-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
14-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
15-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util"
13+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
14+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
15+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util"
1616
)
1717

1818
// SnapshotBox contains instance snapshots.

Diff for: internal/cloning/snapshots_test.go

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

1010
"github.com/stretchr/testify/require"
1111

12-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
12+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
1313
)
1414

1515
func (s *BaseCloningSuite) TestLatestSnapshot() {

Diff for: internal/cloning/storage.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"fmt"
1111
"os"
1212

13-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
14-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
15-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util"
13+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
14+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
15+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util"
1616
)
1717

1818
const sessionsFilename = "sessions.json"

Diff for: internal/cloning/storage_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77

88
"github.com/stretchr/testify/assert"
99

10-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision"
11-
"gitlab.com/postgres-ai/database-lab/v2/internal/telemetry"
10+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision"
11+
"gitlab.com/postgres-ai/database-lab/v3/internal/telemetry"
1212
)
1313

1414
const (

Diff for: internal/cloning/wrapper.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ package cloning
88
import (
99
"time"
1010

11-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/resources"
11+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
1212

13-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
13+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
1414
)
1515

1616
// CloneWrapper represents a cloning service wrapper.

Diff for: internal/estimator/monitor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717

1818
"github.com/pkg/errors"
1919

20-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
20+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
2121
)
2222

2323
const (

Diff for: internal/estimator/profile.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"github.com/jackc/pgx/v4"
2020
"github.com/pkg/errors"
2121

22-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
22+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
2323
)
2424

2525
const (

Diff for: internal/localui/local_ui.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ import (
1717
"github.com/docker/docker/client"
1818
"github.com/docker/go-connections/nat"
1919

20-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/docker"
21-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/runners"
22-
"gitlab.com/postgres-ai/database-lab/v2/internal/retrieval/engine/postgres/tools"
23-
"gitlab.com/postgres-ai/database-lab/v2/internal/retrieval/engine/postgres/tools/cont"
24-
"gitlab.com/postgres-ai/database-lab/v2/pkg/config/global"
25-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util/networks"
20+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/docker"
21+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
22+
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools"
23+
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools/cont"
24+
"gitlab.com/postgres-ai/database-lab/v3/pkg/config/global"
25+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/networks"
2626
)
2727

2828
const (

Diff for: internal/observer/observer.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import (
1919
"github.com/docker/docker/client"
2020
"github.com/pkg/errors"
2121

22-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/pool"
23-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
24-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util/pglog"
22+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/pool"
23+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
24+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/pglog"
2525
)
2626

2727
const (

Diff for: internal/observer/observing_clone.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ import (
1818
"github.com/jackc/pgx/v4"
1919
"github.com/pkg/errors"
2020

21-
"gitlab.com/postgres-ai/database-lab/v2/internal/provision/resources"
22-
"gitlab.com/postgres-ai/database-lab/v2/pkg/client/dblabapi/types"
23-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
24-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
21+
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
22+
"gitlab.com/postgres-ai/database-lab/v3/pkg/client/dblabapi/types"
23+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
24+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
2525
)
2626

2727
const (

Diff for: internal/observer/session.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ package observer
88
import (
99
"time"
1010

11-
"gitlab.com/postgres-ai/database-lab/v2/pkg/client/dblabapi/types"
12-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
11+
"gitlab.com/postgres-ai/database-lab/v3/pkg/client/dblabapi/types"
12+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
1313
)
1414

1515
// Session describes a session of service monitoring.

Diff for: internal/observer/sql.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ import (
1414
"github.com/jackc/pgx/v4"
1515
"github.com/pkg/errors"
1616

17-
"gitlab.com/postgres-ai/database-lab/v2/internal/retrieval/engine/postgres/tools/defaults"
18-
"gitlab.com/postgres-ai/database-lab/v2/pkg/log"
19-
"gitlab.com/postgres-ai/database-lab/v2/pkg/models"
20-
"gitlab.com/postgres-ai/database-lab/v2/pkg/util"
17+
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools/defaults"
18+
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
19+
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
20+
"gitlab.com/postgres-ai/database-lab/v3/pkg/util"
2121
)
2222

2323
// InitConnection creates a new connection to the clone database.

0 commit comments

Comments
 (0)