Browse Source

[hive] Removing extra transactional table properties in samples

Romain Rigaux 4 years ago
parent
commit
32f59cf37e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      apps/beeswax/data/tables_transactional.json

+ 2 - 2
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"]