Skip to content

Commit

Permalink
SNOW-893834 Arrow - support for all SF types
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-dstempniak committed Oct 11, 2023
1 parent 127343f commit 55562c7
Show file tree
Hide file tree
Showing 34 changed files with 2,024 additions and 493 deletions.
14 changes: 7 additions & 7 deletions Snowflake.Data.Tests/IntegrationTests/SFConnectionIT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ public void TestConnectViaSecureString()
}
}

[Test, NonParallelizable]
[Test]
public void TestLoginTimeout()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
Expand Down Expand Up @@ -410,7 +410,7 @@ public void TestLoginTimeout()
}
}

[Test, NonParallelizable]
[Test]
public void TestLoginWithMaxRetryReached()
{
using (IDbConnection conn = new MockSnowflakeDbConnection())
Expand Down Expand Up @@ -438,7 +438,7 @@ public void TestLoginWithMaxRetryReached()
}
}

[Test, NonParallelizable]
[Test]
[Ignore("Disable unstable test cases for now")]
public void TestDefaultLoginTimeout()
{
Expand Down Expand Up @@ -1660,7 +1660,7 @@ class SFConnectionITAsync : SFBaseTestAsync
private static SFLogger logger = SFLoggerFactory.GetLogger<SFConnectionITAsync>();


[Test, NonParallelizable]
[Test]
public void TestCancelLoginBeforeTimeout()
{
using (var conn = new MockSnowflakeDbConnection())
Expand Down Expand Up @@ -1708,7 +1708,7 @@ public void TestCancelLoginBeforeTimeout()
}
}

[Test, NonParallelizable]
[Test]
public void TestAsyncLoginTimeout()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
Expand Down Expand Up @@ -1748,7 +1748,7 @@ public void TestAsyncLoginTimeout()
}
}

[Test, NonParallelizable]
[Test]
public void TestAsyncDefaultLoginTimeout()
{
using (var conn = new MockSnowflakeDbConnection())
Expand Down Expand Up @@ -1884,7 +1884,7 @@ public void TestCloseAsync()
}
#endif

[Test, NonParallelizable]
[Test]
public void TestCloseAsyncFailure()
{
using (var conn = new MockSnowflakeDbConnection(new MockCloseSessionException()))
Expand Down
3 changes: 1 addition & 2 deletions Snowflake.Data.Tests/IntegrationTests/SFDbCommandIT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,7 @@ public void TestSimpleLargeResultSet()
conn.Close();
}
}



[Test, NonParallelizable]
public void TestUseV1ResultParser()
{
Expand Down
Loading

0 comments on commit 55562c7

Please sign in to comment.