If you are hive user and ETL developer, you may see a lot of INSERT OVERWRITE. Though it's not yet documented, Presto also supports OVERWRITE mode for partitioned table.

Currently, there are 3 modes, OVERWRITE, APPEND and ERROR.

You can change the mode by set session command.

SET SESSION hive.insert_existing_partitions_behavior = 'overwrite';
SET SESSION hive.insert_existing_partitions_behavior = 'append';
SET SESSION hive.insert_existing_partitions_behavior = 'error';

The enhanced feature for an unpartitioned table is ongoing in this PR (https://github.com/prestosql/presto/pull/648) by James Xu.

The enhancement was merged as

https://github.com/prestosql/presto/pull/924