-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59ce9e0
commit 9448f1c
Showing
9 changed files
with
203 additions
and
39 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/test/java/net/snowflake/ingest/streaming/internal/FDNOpenManyChannelsIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Copyright (c) 2024 Snowflake Computing Inc. All rights reserved. | ||
*/ | ||
|
||
package net.snowflake.ingest.streaming.internal; | ||
|
||
import org.junit.Before; | ||
|
||
public class FDNOpenManyChannelsIT extends OpenManyChannelsITBase { | ||
@Before | ||
public void before() throws Exception { | ||
super.setUp(false); | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/test/java/net/snowflake/ingest/streaming/internal/IcebergOpenManyChannelsIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright (c) 2024 Snowflake Computing Inc. All rights reserved. | ||
*/ | ||
|
||
package net.snowflake.ingest.streaming.internal; | ||
|
||
import net.snowflake.ingest.IcebergIT; | ||
import org.junit.Before; | ||
import org.junit.experimental.categories.Category; | ||
|
||
@Category(IcebergIT.class) | ||
public class IcebergOpenManyChannelsIT extends OpenManyChannelsITBase { | ||
@Before | ||
public void before() throws Exception { | ||
super.setUp(true); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/test/java/net/snowflake/ingest/streaming/internal/it/FDNBigFilesIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright (c) 2024 Snowflake Computing Inc. All rights reserved. | ||
*/ | ||
|
||
package net.snowflake.ingest.streaming.internal.it; | ||
|
||
import org.junit.Before; | ||
import org.junit.runners.Parameterized; | ||
|
||
public class FDNBigFilesIT extends BigFilesITBase { | ||
@Parameterized.Parameters(name = "compressionAlgorithm={0}") | ||
public static Object[][] compressionAlgorithms() { | ||
return new Object[][] {{"GZIP", null}, {"ZSTD", null}}; | ||
} | ||
|
||
@Before | ||
public void before() throws Exception { | ||
super.beforeAll(false); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
src/test/java/net/snowflake/ingest/streaming/internal/it/FDNManyTablesIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
* Copyright (c) 2024 Snowflake Computing Inc. All rights reserved. | ||
*/ | ||
|
||
package net.snowflake.ingest.streaming.internal.it; | ||
|
||
import org.junit.Before; | ||
|
||
public class FDNManyTablesIT extends ManyTablesITBase { | ||
@Before | ||
public void before() throws Exception { | ||
super.setUp(false); | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
src/test/java/net/snowflake/ingest/streaming/internal/it/IcebergBigFilesIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright (c) 2024 Snowflake Computing Inc. All rights reserved. | ||
*/ | ||
|
||
package net.snowflake.ingest.streaming.internal.it; | ||
|
||
import net.snowflake.ingest.IcebergIT; | ||
import net.snowflake.ingest.utils.Constants; | ||
import org.junit.Before; | ||
import org.junit.experimental.categories.Category; | ||
import org.junit.runners.Parameterized; | ||
|
||
@Category(IcebergIT.class) | ||
public class IcebergBigFilesIT extends BigFilesITBase { | ||
@Parameterized.Parameters(name = "icebergSerializationPolicy={1}") | ||
public static Object[][] compressionAlgorithms() { | ||
return new Object[][] { | ||
{"ZSTD", Constants.IcebergSerializationPolicy.COMPATIBLE}, | ||
{"ZSTD", Constants.IcebergSerializationPolicy.OPTIMIZED} | ||
}; | ||
} | ||
|
||
@Before | ||
public void before() throws Exception { | ||
super.beforeAll(true); | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/test/java/net/snowflake/ingest/streaming/internal/it/IcebergManyTablesIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright (c) 2024 Snowflake Computing Inc. All rights reserved. | ||
*/ | ||
|
||
package net.snowflake.ingest.streaming.internal.it; | ||
|
||
import net.snowflake.ingest.IcebergIT; | ||
import org.junit.Before; | ||
import org.junit.experimental.categories.Category; | ||
|
||
@Category(IcebergIT.class) | ||
public class IcebergManyTablesIT extends ManyTablesITBase { | ||
@Before | ||
public void before() throws Exception { | ||
super.setUp(true); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters