Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
import static io.trino.tests.product.utils.QueryExecutors.onTrino;
import static java.lang.String.format;

/**
* Tests interactions between Iceberg and Hive connectors, when one tries to read a table created by the other.
*
* @see TestIcebergRedirectionToHive
* @see TestIcebergHiveViewsCompatibility
*/
public class TestIcebergHiveTablesCompatibility
extends ProductTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
import static java.util.stream.Collectors.toList;
import static org.assertj.core.api.Assertions.assertThatThrownBy;

/**
* Tests interactions between Iceberg and Hive connectors, when one tries to read a view created by the other.
*
* @see TestIcebergHiveTablesCompatibility
*/
public class TestIcebergHiveViewsCompatibility
extends ProductTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@
import static java.lang.String.format;
import static java.sql.JDBCType.VARCHAR;

/**
* Tests interactions between Iceberg and Hive connectors, when one tries to read a table created by the other
* with redirects enabled.
*
* @see TestIcebergHiveTablesCompatibility
*/
public class TestIcebergRedirectionToHive
extends ProductTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
import static java.util.concurrent.TimeUnit.SECONDS;
import static org.testng.Assert.assertTrue;

/**
* Tests compatibility between Iceberg connector and Spark Iceberg.
*/
public class TestIcebergSparkCompatibility
extends ProductTest
{
Expand Down