Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sqlx named exec context #1582

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions internal/bind/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,13 @@ func toValue(v interface{}) (_ value.Value, err error) {
return x, nil
}

if valuer, ok := v.(driver.Valuer); ok {
v, err = valuer.Value()
if err != nil {
return nil, fmt.Errorf("ydb: driver.Valuer error: %w", err)
}
}

switch x := v.(type) {
case nil:
return value.VoidValue(), nil
Expand Down Expand Up @@ -337,16 +344,17 @@ func supportNewTypeLink(x interface{}) string {
}

func toYdbParam(name string, value interface{}) (*params.Parameter, error) {
if na, ok := value.(driver.NamedValue); ok {
n, v := na.Name, na.Value
switch tv := value.(type) {
case driver.NamedValue:
n, v := tv.Name, tv.Value
if n != "" {
name = n
}
value = v
case *params.Parameter:
return tv, nil
}
if v, ok := value.(*params.Parameter); ok {
return v, nil
}

v, err := toValue(value)
if err != nil {
return nil, xerrors.WithStackTrace(err)
Expand Down
14 changes: 14 additions & 0 deletions internal/bind/params_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ import (
"github.com/ydb-platform/ydb-go-sdk/v3/table"
)

type testValuer struct {
value driver.Value
}

func (v testValuer) Value() (driver.Value, error) {
return v.value, nil
}

func TestToValue(t *testing.T) {
for _, tt := range []struct {
name string
Expand Down Expand Up @@ -601,6 +609,12 @@ func TestToValue(t *testing.T) {
dst: nil,
err: value.ErrIssue1501BadUUID,
},
{
name: xtest.CurrentFileLine(),
src: testValuer{value: "1234567890"},
dst: value.TextValue("1234567890"),
err: nil,
},
} {
t.Run(tt.name, func(t *testing.T) {
dst, err := toValue(tt.src)
Expand Down
38 changes: 38 additions & 0 deletions tests/integration/database_sql_regression_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package integration
import (
"context"
"database/sql"
"database/sql/driver"
"errors"
"fmt"
"math/rand"
Expand Down Expand Up @@ -435,3 +436,40 @@ func TestUUIDSerializationDatabaseSQLIssue1501(t *testing.T) {
require.Equal(t, id.String(), res.String())
})
}

type testValuer struct {
value driver.Value
}

func (v *testValuer) Value() (driver.Value, error) {
return v.value, nil
}

func TestSQLX(t *testing.T) {
// test sqlx

t.Run("named-exec-context", func(t *testing.T) {
// test old behavior - for test way of safe work with data, written with bagged API version
var (
scope = newScope(t)
db = scope.SQLDriver()
)

id := "6E73B41C-4EDE-4D08-9CFB-B7462D9E498B"
v := testValuer{value: id}

row := db.QueryRow(`
DECLARE $val AS String;
SELECT $val as result_s`,
sql.Named("val", v),
)

require.NoError(t, row.Err())

var res string
err := row.Scan(&res)
require.NoError(t, err)

require.Equal(t, id, res)
})
}
Loading