File tree Expand file tree Collapse file tree
Snowflake.Data.Tests/IntegrationTests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -130,13 +130,7 @@ public void TestSelectWithBinding()
130130 {
131131 conn . ConnectionString = ConnectionString ;
132132 conn . Open ( ) ;
133- SessionParameterAlterer . SetResultFormat ( conn , ResultFormat . ARROW ) ;
134-
135- using ( var command = conn . CreateCommand ( ) )
136- {
137- command . CommandText = "alter session set ENABLE_FIX_1758055_ADD_ARROW_SUPPORT_FOR_MULTI_STMTS = true" ;
138- command . ExecuteNonQuery ( ) ;
139- }
133+ SessionParameterAlterer . SetResultFormat ( conn , ResultFormat . JSON ) ;
140134
141135 IDbCommand cmd = conn . CreateCommand ( ) ;
142136 // Set statement count
@@ -189,13 +183,7 @@ public void TestMixedQueryTypeWithBinding()
189183 {
190184 conn . ConnectionString = ConnectionString ;
191185 conn . Open ( ) ;
192- SessionParameterAlterer . SetResultFormat ( conn , ResultFormat . ARROW ) ;
193-
194- using ( var cmd = conn . CreateCommand ( ) )
195- {
196- cmd . CommandText = "alter session set ENABLE_FIX_1758055_ADD_ARROW_SUPPORT_FOR_MULTI_STMTS = true" ;
197- cmd . ExecuteNonQuery ( ) ;
198- }
186+ SessionParameterAlterer . SetResultFormat ( conn , ResultFormat . JSON ) ;
199187
200188 using ( DbCommand cmd = conn . CreateCommand ( ) )
201189 {
You can’t perform that action at this time.
0 commit comments