Bulk replace project references in go code

This commit is contained in:
Eli Ribble 2026-05-09 01:43:14 +00:00
parent 814ebddfa2
commit 4474319e73
No known key found for this signature in database
170 changed files with 488 additions and 488 deletions

View file

@ -7,8 +7,8 @@ import (
"testing"
"time"
"github.com/go-jet/jet/v2/internal/utils/ptr"
"github.com/go-jet/jet/v2/qrm"
"github.com/Gleipnir-Technology/jet/internal/utils/ptr"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/lib/pq"
"github.com/stretchr/testify/assert"
@ -16,12 +16,12 @@ import (
"github.com/google/uuid"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/table"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/view"
"github.com/go-jet/jet/v2/tests/testdata/results/common"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/table"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/view"
"github.com/Gleipnir-Technology/jet/tests/testdata/results/common"
)
func TestAllTypesSelect(t *testing.T) {
@ -1855,21 +1855,21 @@ Column type: *jet.timestampColumnImpl
Column type: *jet.timestampzColumnImpl
Column type: *jet.intervalColumnImpl
Column type: *jet.blobColumnImpl
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.BoolExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.IntegerExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.StringExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.DateExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.TimeExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.TimezExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.TimestampExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.TimestampzExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.IntervalExpression]
Column type: *jet.arrayColumnImpl[github.com/go-jet/jet/v2/internal/jet.BlobExpression]
Column type: *jet.rangeColumnImpl[github.com/go-jet/jet/v2/internal/jet.IntegerExpression]
Column type: *jet.rangeColumnImpl[github.com/go-jet/jet/v2/internal/jet.DateExpression]
Column type: *jet.rangeColumnImpl[github.com/go-jet/jet/v2/internal/jet.NumericExpression]
Column type: *jet.rangeColumnImpl[github.com/go-jet/jet/v2/internal/jet.TimestampExpression]
Column type: *jet.rangeColumnImpl[github.com/go-jet/jet/v2/internal/jet.TimestampzExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.BoolExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.IntegerExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.StringExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.DateExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.TimeExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.TimezExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.TimestampExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.TimestampzExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.IntervalExpression]
Column type: *jet.arrayColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.BlobExpression]
Column type: *jet.rangeColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.IntegerExpression]
Column type: *jet.rangeColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.DateExpression]
Column type: *jet.rangeColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.NumericExpression]
Column type: *jet.rangeColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.TimestampExpression]
Column type: *jet.rangeColumnImpl[github.com/Gleipnir-Technology/jet/internal/jet.TimestampzExpression]
`)
stmt := SELECT(

View file

@ -4,13 +4,13 @@ import (
"testing"
"time"
"github.com/go-jet/jet/v2/internal/testutils"
"github.com/go-jet/jet/v2/internal/utils/ptr"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/qrm"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/enum"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
"github.com/Gleipnir-Technology/jet/internal/utils/ptr"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/enum"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/table"
"github.com/google/uuid"
"github.com/lib/pq"
"github.com/stretchr/testify/require"

View file

@ -6,12 +6,12 @@ import (
"time"
"github.com/bytedance/sonic"
"github.com/go-jet/jet/v2/internal/testutils"
"github.com/go-jet/jet/v2/internal/utils/ptr"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/chinook/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/chinook/table"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/chinook2/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
"github.com/Gleipnir-Technology/jet/internal/utils/ptr"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/chinook/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/chinook/table"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/chinook2/table"
"github.com/stretchr/testify/require"
)

View file

@ -2,13 +2,13 @@ package postgres
import (
"context"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/qrm"
model2 "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/table"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/qrm"
model2 "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/table"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/table"
"github.com/stretchr/testify/require"
"testing"
"time"

View file

@ -8,15 +8,15 @@ import (
"github.com/stretchr/testify/require"
"github.com/go-jet/jet/v2/generator/metadata"
"github.com/go-jet/jet/v2/generator/postgres"
"github.com/go-jet/jet/v2/generator/template"
"github.com/go-jet/jet/v2/internal/3rdparty/snaker"
"github.com/go-jet/jet/v2/internal/testutils"
"github.com/go-jet/jet/v2/internal/utils/dbidentifier"
postgres2 "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/dbconfig"
file2 "github.com/go-jet/jet/v2/tests/internal/utils/file"
"github.com/Gleipnir-Technology/jet/generator/metadata"
"github.com/Gleipnir-Technology/jet/generator/postgres"
"github.com/Gleipnir-Technology/jet/generator/template"
"github.com/Gleipnir-Technology/jet/internal/3rdparty/snaker"
"github.com/Gleipnir-Technology/jet/internal/testutils"
"github.com/Gleipnir-Technology/jet/internal/utils/dbidentifier"
postgres2 "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/dbconfig"
file2 "github.com/Gleipnir-Technology/jet/tests/internal/utils/file"
)
const tempTestDir = "./.tempTestDir"
@ -569,7 +569,7 @@ func TestRenameEnumValueName(t *testing.T) {
package enum
import "github.com/go-jet/jet/v2/postgres"
import "github.com/Gleipnir-Technology/jet/postgres"
var MpaaRating = &struct {
GRating postgres.StringExpression

View file

@ -14,15 +14,15 @@ import (
"github.com/stretchr/testify/require"
"github.com/go-jet/jet/v2/generator/metadata"
"github.com/go-jet/jet/v2/generator/postgres"
"github.com/go-jet/jet/v2/generator/template"
"github.com/go-jet/jet/v2/internal/testutils"
postgres2 "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
"github.com/go-jet/jet/v2/tests/dbconfig"
"github.com/go-jet/jet/v2/tests/internal/utils/file"
file2 "github.com/go-jet/jet/v2/tests/internal/utils/file"
"github.com/Gleipnir-Technology/jet/generator/metadata"
"github.com/Gleipnir-Technology/jet/generator/postgres"
"github.com/Gleipnir-Technology/jet/generator/template"
"github.com/Gleipnir-Technology/jet/internal/testutils"
postgres2 "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
"github.com/Gleipnir-Technology/jet/tests/dbconfig"
"github.com/Gleipnir-Technology/jet/tests/internal/utils/file"
file2 "github.com/Gleipnir-Technology/jet/tests/internal/utils/file"
)
func dsn(host string, port int, dbName, user, password string) string {
@ -479,7 +479,7 @@ var mpaaRatingEnumFile = `
package enum
import "github.com/go-jet/jet/v2/postgres"
import "github.com/Gleipnir-Technology/jet/postgres"
var MpaaRating = &struct {
G postgres.StringExpression
@ -507,7 +507,7 @@ var actorSQLBuilderFile = `
package table
import (
"github.com/go-jet/jet/v2/postgres"
"github.com/Gleipnir-Technology/jet/postgres"
)
var Actor = newActorTable("dvds", "actor", "")
@ -650,7 +650,7 @@ var actorInfoSQLBuilderFile = `
package view
import (
"github.com/go-jet/jet/v2/postgres"
"github.com/Gleipnir-Technology/jet/postgres"
)
var ActorInfo = newActorInfoTable("dvds", "actor_info", "")
@ -827,7 +827,7 @@ var moodEnumContent = `
package enum
import "github.com/go-jet/jet/v2/postgres"
import "github.com/Gleipnir-Technology/jet/postgres"
var Mood = &struct {
Sad postgres.StringExpression
@ -850,7 +850,7 @@ var levelEnumContent = `
package enum
import "github.com/go-jet/jet/v2/postgres"
import "github.com/Gleipnir-Technology/jet/postgres"
// Level enum
var Level = &struct {
@ -981,7 +981,7 @@ var allTypesTableContent = `
package table
import (
"github.com/go-jet/jet/v2/postgres"
"github.com/Gleipnir-Technology/jet/postgres"
)
var AllTypes = newAllTypesTable("test_sample", "all_types", "")
@ -1248,7 +1248,7 @@ var sampleRangeTableContent = `
package table
import (
"github.com/go-jet/jet/v2/postgres"
"github.com/Gleipnir-Technology/jet/postgres"
)
var SampleRanges = newSampleRangesTable("test_sample", "sample_ranges", "")
@ -1344,7 +1344,7 @@ var linkTableContent = `
package table
import (
"github.com/go-jet/jet/v2/postgres"
"github.com/Gleipnir-Technology/jet/postgres"
)
var Link = newLinkTable("test_sample", "link", "")
@ -1783,7 +1783,7 @@ type SampleArrays struct {
package table
import (
"github.com/go-jet/jet/v2/postgres"
"github.com/Gleipnir-Technology/jet/postgres"
)
var SampleArrays = newSampleArraysTable("test_sample", "sample_arrays", "")

View file

@ -2,11 +2,11 @@ package postgres
import (
"context"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/qrm"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/table"
"github.com/stretchr/testify/require"
"math/rand"
"testing"

View file

@ -6,8 +6,8 @@ import (
"github.com/stretchr/testify/require"
. "github.com/go-jet/jet/v2/postgres"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/table"
. "github.com/Gleipnir-Technology/jet/postgres"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/table"
)
type AllTypesJsonRawMessageResult struct {

View file

@ -2,13 +2,13 @@ package postgres
import (
"context"
"github.com/go-jet/jet/v2/internal/testutils"
"github.com/Gleipnir-Technology/jet/internal/testutils"
"github.com/stretchr/testify/require"
"testing"
"time"
. "github.com/go-jet/jet/v2/postgres"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/table"
. "github.com/Gleipnir-Technology/jet/postgres"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/table"
)
func TestLockTable(t *testing.T) {

View file

@ -9,13 +9,13 @@ import (
"runtime"
"testing"
"github.com/go-jet/jet/v2/qrm"
"github.com/go-jet/jet/v2/stmtcache"
"github.com/go-jet/jet/v2/tests/internal/utils/repo"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/Gleipnir-Technology/jet/stmtcache"
"github.com/Gleipnir-Technology/jet/tests/internal/utils/repo"
"github.com/jackc/pgx/v5/stdlib"
"github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/dbconfig"
"github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/dbconfig"
_ "github.com/lib/pq"
"github.com/pkg/profile"
"github.com/stretchr/testify/require"

View file

@ -2,10 +2,10 @@ package postgres
import (
"github.com/bytedance/sonic"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/northwind/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/northwind/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/northwind/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/northwind/table"
"github.com/stretchr/testify/require"
"testing"
)

View file

@ -8,15 +8,15 @@ import (
"testing"
"time"
"github.com/go-jet/jet/v2/internal/testutils"
"github.com/go-jet/jet/v2/qrm"
"github.com/Gleipnir-Technology/jet/internal/testutils"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/google/go-cmp/cmp"
"github.com/jackc/pgtype"
"github.com/stretchr/testify/require"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/model"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/table"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/model"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/table"
)
func TestRangeTableSelect(t *testing.T) {

View file

@ -2,17 +2,17 @@ package postgres
import (
"context"
"github.com/go-jet/jet/v2/qrm"
"github.com/Gleipnir-Technology/jet/qrm"
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/go-jet/jet/v2/internal/testutils"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
model2 "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/model"
"github.com/Gleipnir-Technology/jet/internal/testutils"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
model2 "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/go-jet/jet/v2/postgres"
. "github.com/Gleipnir-Technology/jet/postgres"
)
func TestRawStatementSelect(t *testing.T) {

View file

@ -3,16 +3,16 @@ package postgres
import (
"testing"
"github.com/go-jet/jet/v2/internal/utils/ptr"
"github.com/go-jet/jet/v2/qrm"
"github.com/Gleipnir-Technology/jet/internal/utils/ptr"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/google/uuid"
"github.com/stretchr/testify/require"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/table"
"github.com/shopspring/decimal"
)

View file

@ -2,7 +2,7 @@ package postgres
import (
"context"
"github.com/go-jet/jet/v2/internal/utils/ptr"
"github.com/Gleipnir-Technology/jet/internal/utils/ptr"
"github.com/lib/pq"
"gopkg.in/guregu/null.v4"
"testing"
@ -11,11 +11,11 @@ import (
"github.com/google/uuid"
"github.com/stretchr/testify/require"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/qrm"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/table"
)
var oneInventoryQuery = Inventory.

View file

@ -4,15 +4,15 @@ import (
"testing"
"time"
"github.com/go-jet/jet/v2/internal/testutils"
"github.com/go-jet/jet/v2/internal/utils/ptr"
"github.com/go-jet/jet/v2/qrm"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/view"
"github.com/Gleipnir-Technology/jet/internal/testutils"
"github.com/Gleipnir-Technology/jet/internal/utils/ptr"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/view"
"github.com/stretchr/testify/require"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/table"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/table"
)
func TestSelectJsonObject(t *testing.T) {

View file

@ -3,22 +3,22 @@ package postgres
import (
"context"
"database/sql"
"github.com/go-jet/jet/v2/internal/utils/ptr"
"github.com/Gleipnir-Technology/jet/internal/utils/ptr"
"github.com/lib/pq"
"gopkg.in/guregu/null.v4"
"testing"
"time"
"github.com/go-jet/jet/v2/qrm"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/stretchr/testify/require"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/enum"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/table"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/view"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/enum"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/table"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/view"
)
func TestSelect_ScanToStruct(t *testing.T) {

View file

@ -3,11 +3,11 @@ package postgres
import (
"context"
"database/sql"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/stmtcache"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/stmtcache"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/table"
"github.com/stretchr/testify/require"
"testing"
)

View file

@ -2,13 +2,13 @@ package postgres
import (
"context"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/qrm"
model2 "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/table"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/test_sample/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/qrm"
model2 "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/table"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/test_sample/table"
"github.com/stretchr/testify/require"
"testing"
"time"

View file

@ -1,11 +1,11 @@
package postgres
import (
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/qrm"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/dvds/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/qrm"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/dvds/table"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"testing"

View file

@ -2,10 +2,10 @@ package postgres
import (
"context"
"github.com/go-jet/jet/v2/internal/testutils"
. "github.com/go-jet/jet/v2/postgres"
"github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/northwind/model"
. "github.com/go-jet/jet/v2/tests/.gentestdata/jetdb/northwind/table"
"github.com/Gleipnir-Technology/jet/internal/testutils"
. "github.com/Gleipnir-Technology/jet/postgres"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/northwind/model"
. "github.com/Gleipnir-Technology/jet/tests/.gentestdata/jetdb/northwind/table"
"github.com/stretchr/testify/require"
"testing"
)