Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-893834 Arrow - support for all SF types #788

Merged
merged 4 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading