Skip to content

Commit 0046c4b

Browse files
author
quackable
committed
CHANGELOG & linter
1 parent cc2110a commit 0046c4b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* Fixed config.WithDatabase behaviour with empty database in DSN string
12
* Added experimental method `query/Client.Execute` for execute query and read materialized result
23

34
## v3.69.0

internal/dsn/dsn_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func TestParseConnectionStringEmptyDatabase(t *testing.T) {
132132
}
133133
c := config.New(config.WithDatabase("mydb"))
134134
c = c.With(info.Options...)
135-
require.Equal(t, false, c.Secure())
135+
require.False(t, c.Secure())
136136
require.Equal(t, "ydb-ru.yandex.net:2135", c.Endpoint())
137137
require.Equal(t, "mydb", c.Database())
138138
}

0 commit comments

Comments
 (0)