Skip to content

Commit e939d95

Browse files
committed
Add another test
1 parent 16b678e commit e939d95

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

client/conn_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,13 @@ func (s *connTestSuite) TestAttributes() {
194194
require.Equal(s.T(), "go-mysql", s.c.attributes["_client_name"])
195195
require.Equal(s.T(), "attrvalue", s.c.attributes["attrtest"])
196196
}
197+
198+
func (s *connTestSuite) TestSetQueryAttributes() {
199+
qa := mysql.QueryAttribute{
200+
Name: "qattr1",
201+
Value: "qattr1val",
202+
}
203+
s.c.SetQueryAttributes(qa)
204+
expected := []mysql.QueryAttribute([]mysql.QueryAttribute{mysql.QueryAttribute{Name: "qattr1", Value: "qattr1val"}})
205+
require.Equal(s.T(), expected, s.c.queryAttributes)
206+
}

0 commit comments

Comments
 (0)