Skip to content

Commit

Permalink
[hive] Removing extra transactional table properties in samples
Browse files Browse the repository at this point in the history
  • Loading branch information
romainr committed Feb 5, 2021
1 parent a34cad5 commit 32f59cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/beeswax/data/tables_transactional.json
@@ -1,14 +1,14 @@
[
{
"data_file": "sample_07.csv",
"create_sql": "CREATE TABLE `sample_07` (\n `code` string ,\n `description` string ,\n `total_emp` int ,\n `salary` int )\nSTORED AS parquet\nTBLPROPERTIES ('transactional'='true', 'transactional_properties'='insert_only')\n",
"create_sql": "CREATE TABLE `sample_07` (\n `code` string ,\n `description` string ,\n `total_emp` int ,\n `salary` int )\nSTORED AS parquet\n",
"table_name": "sample_07",
"transactional": true,
"dialects": ["hive", "impala"]
},
{
"data_file": "sample_08.csv",
"create_sql": "CREATE TABLE `sample_08` (\n `code` string ,\n `description` string ,\n `total_emp` int ,\n `salary` int )\nSTORED AS parquet\nTBLPROPERTIES ('transactional'='true', 'transactional_properties'='insert_only')\n",
"create_sql": "CREATE TABLE `sample_08` (\n `code` string ,\n `description` string ,\n `total_emp` int ,\n `salary` int )\nSTORED AS parquet\n",
"table_name": "sample_08",
"transactional": true,
"dialects": ["hive", "impala"]
Expand Down

0 comments on commit 32f59cf

Please sign in to comment.