Browse Source

AMBARI-6628. Cannot start ambari-server due to empty metainfo table. (srimanth)

Srimanth Gunturi 10 years ago
parent
commit
b12ab25642

+ 1 - 1
ambari-server/src/main/resources/Ambari-DDL-Postgres-CREATE.sql

@@ -304,7 +304,7 @@ BEGIN;
   union all
   select 'alert_history_id_seq', 0
   union all
-  select 'alert_notice_id_seq', 0,
+  select 'alert_notice_id_seq', 0
   union all
   select 'alert_current_id_seq', 0;
 

+ 1 - 1
ambari-server/src/main/resources/Ambari-DDL-Postgres-EMBEDDED-CREATE.sql

@@ -376,7 +376,7 @@ INSERT INTO ambari.ambari_sequences (sequence_name, "value")
   union all
   select 'alert_history_id_seq', 0
   union all
-  select 'alert_notice_id_seq', 0,
+  select 'alert_notice_id_seq', 0
   union all
   select 'alert_current_id_seq', 0;