Skip to content

Commit

Permalink
[native] Add support for ORC reader and add orc native tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wypb committed Jun 28, 2024
1 parent 9615017 commit dd5bf8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void testCreateTableWithUnsupportedFormats()
{
// Generate temporary table name.
String tmpTableName = generateRandomTableName();
String[] unsupportedTableFormats = {"JSON"};
String[] unsupportedTableFormats = {"ORC", "JSON"};
for (String unsupportedTableFormat : unsupportedTableFormats) {
assertQueryFails(String.format("CREATE TABLE %s WITH (format = '" + unsupportedTableFormat + "') AS SELECT * FROM nation", tmpTableName), " Unsupported file format in TableWrite: \"" + unsupportedTableFormat + "\".");
}
Expand Down

0 comments on commit dd5bf8f

Please sign in to comment.