File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -313,7 +313,7 @@ func (s *testSuite2) TestSetVar(c *C) {
313313 tk .MustExec ("SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE" )
314314 tk .MustQuery ("show warnings" ).Check (testkit .Rows (
315315 "Warning 1105 variable 'tx_isolation' does not yet support value: SERIALIZABLE" ,
316- "Warning 1105 variable 'transaction_isolation' does not yet support value: SERIALIZABLE" ))
316+ "Warning 1105 variable 'transaction_isolation' does not yet support value: SERIALIZABLE" ))
317317 tk .MustQuery ("select @@session.tx_isolation" ).Check (testkit .Rows ("SERIALIZABLE" ))
318318 tk .MustQuery ("select @@session.transaction_isolation" ).Check (testkit .Rows ("SERIALIZABLE" ))
319319
@@ -323,7 +323,7 @@ func (s *testSuite2) TestSetVar(c *C) {
323323 tk .MustExec ("SET GLOBAL TRANSACTION ISOLATION LEVEL READ UNCOMMITTED" )
324324 tk .MustQuery ("show warnings" ).Check (testkit .Rows (
325325 "Warning 1105 variable 'tx_isolation' does not yet support value: READ-UNCOMMITTED" ,
326- "Warning 1105 variable 'transaction_isolation' does not yet support value: READ-UNCOMMITTED" ))
326+ "Warning 1105 variable 'transaction_isolation' does not yet support value: READ-UNCOMMITTED" ))
327327 tk .MustQuery ("select @@global.tx_isolation" ).Check (testkit .Rows ("READ-UNCOMMITTED" ))
328328 tk .MustQuery ("select @@global.transaction_isolation" ).Check (testkit .Rows ("READ-UNCOMMITTED" ))
329329
You can’t perform that action at this time.
0 commit comments