Skip to content

Commit

Permalink
fixup! Support CTAS for Hive transactional tables
Browse files Browse the repository at this point in the history
  • Loading branch information
losipiuk committed Jul 22, 2020
1 parent 22eb2aa commit 6c0985b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ List<String> getHiveTableProperties()
{
return ImmutableList.of("'transactional'='false'");
}

@Override
List<String> getPrestoTableProperties()
{
return ImmutableList.of("transactional = false");
}
},
/**/;

Expand Down

0 comments on commit 6c0985b

Please sign in to comment.