File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/DataStreamTest Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,20 @@ public static void RunAllTestsForSingleServer_NP()
33
33
}
34
34
35
35
//[ActiveIssue("5540")]
36
- [ ConditionalFact ( typeof ( DataTestUtility ) , nameof ( DataTestUtility . AreConnStringsSetup ) ) ]
36
+ [ ConditionalFact ( typeof ( DataTestUtility ) , nameof ( DataTestUtility . AreConnStringsSetup ) , nameof ( DataTestUtility . IsNotNamedInstance ) ) ]
37
37
public static void RunAllTestsForSingleServer_TCP ( )
38
38
{
39
- RunAllTestsForSingleServer ( DataTestUtility . TCPConnectionString , false ) ;
39
+ try
40
+ {
41
+ RunAllTestsForSingleServer ( DataTestUtility . TCPConnectionString , false ) ;
42
+ }
43
+ catch ( Exception )
44
+ {
45
+ throw new Exception ( DataTestUtility . TCPConnectionString ) ;
46
+ }
40
47
}
41
48
42
- // Synapse: The statement failed. Column 'foo' has a data type that cannot participate in a columnstore index.
49
+ // Synapse: The statement failed. Column 'foo' has a data type that cannot participate in a columnstore index.
43
50
[ ConditionalFact ( typeof ( DataTestUtility ) , nameof ( DataTestUtility . AreConnStringsSetup ) , nameof ( DataTestUtility . IsNotAzureSynapse ) ) ]
44
51
public static async Task AsyncMultiPacketStreamRead ( )
45
52
{
You can’t perform that action at this time.
0 commit comments