Skip to content

Commit

Permalink
SNOW-1259709 - basic types for arrays and maps - fix for date/time types
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pmotacki committed Mar 27, 2024
1 parent 5623506 commit 3580239
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ public void testMapStructsFromChunks() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapIntegerArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -360,7 +360,7 @@ public void testMapIntegerArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapFixedToLongArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -374,7 +374,7 @@ public void testMapFixedToLongArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapDecimalArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
// when: jdbc_treat_decimal_as_int=true scale=0
Expand Down Expand Up @@ -419,7 +419,7 @@ public void testMapDecimalArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapVarcharArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -434,7 +434,7 @@ public void testMapVarcharArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapDatesArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -447,7 +447,7 @@ public void testMapDatesArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapTimeArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -460,7 +460,7 @@ public void testMapTimeArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapTimestampArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -475,7 +475,7 @@ public void testMapTimestampArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapBooleanArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -488,7 +488,7 @@ public void testMapBooleanArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapBinaryArray() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -501,7 +501,7 @@ public void testMapBinaryArray() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapArrayOfStructToMap() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -514,7 +514,7 @@ public void testMapArrayOfStructToMap() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testMapArrayOfArrays() throws SQLException {
Assume.assumeTrue(queryResultFormat != ResultSetFormatType.NATIVE_ARROW);
withFirstRow(
Expand All @@ -527,7 +527,7 @@ public void testMapArrayOfArrays() throws SQLException {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGithubAction.class)
public void testColumnTypeWhenStructureTypeIsDisabled() throws Exception {
withStructureTypeTemporaryDisabled(
() -> {
Expand Down

0 comments on commit 3580239

Please sign in to comment.