We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16b678e commit e939d95Copy full SHA for e939d95
client/conn_test.go
@@ -194,3 +194,13 @@ func (s *connTestSuite) TestAttributes() {
194
require.Equal(s.T(), "go-mysql", s.c.attributes["_client_name"])
195
require.Equal(s.T(), "attrvalue", s.c.attributes["attrtest"])
196
}
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