Li Penglin created HIVE-26959:
---------------------------------
Summary: CREATE TABLE with external.table.purge=false is ignored
Key: HIVE-26959
URL: https://issues.apache.org/jira/browse/HIVE-26959
Project: Hive
Issue Type: Bug
Reporter: Li Penglin
We set the default external.table.purge=true in
https://issues.apache.org/jira/browse/HIVE-26064, but this property is still
true when I set it to false.
{code:java}
0: jdbc:hive2://localhost:11050> create table test_parq_hive (i int)
. . . . . . . . . . . . . . . .> stored as parquet
. . . . . . . . . . . . . . . .> tblproperties
('external.table.purge'='false');
INFO : Compiling
command(queryId=root_20230118111342_c60c0f5f-3e2f-45af-a7ab-13f099b7ead9):
create table test_parq_hive (i int)
stored as parquet
tblproperties ('external.table.purge'='false')
INFO : Semantic Analysis Completed (retrial = false)
0: jdbc:hive2://localhost:11050> describe formatted test_parq_hive;
| | bucketing_version
| 2 |
| | external.table.purge
| TRUE |
| | transient_lastDdlTime
| 1674011622 |
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)