[
https://issues.apache.org/jira/browse/AMBARI-10022?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alejandro Fernandez updated AMBARI-10022:
-----------------------------------------
Attachment: AMBARI-10022.patch
> RU - DB Schema differs between Postgres internal and external
> -------------------------------------------------------------
>
> Key: AMBARI-10022
> URL: https://issues.apache.org/jira/browse/AMBARI-10022
> Project: Ambari
> Issue Type: Bug
> Components: ambari-server
> Affects Versions: 2.0.0
> Reporter: Alejandro Fernandez
> Assignee: Alejandro Fernandez
> Fix For: 2.0.0
>
> Attachments: AMBARI-10022.patch
>
>
> The DB schema differs between the internal and external Postgres databases,
> and this affects RU.
> Impact: If not fixed in Ambari 2.0, then a future release will have to absorb
> the technical debt and need the Ambari Update to correct the schema in order
> to keep it consistent in order to prevent bugs.
>
> Ambari-DDL-Postgres-EMBEDDED-CREATE.sql
> {code}
> CREATE TABLE ambari.repo_version (
> repo_version_id BIGINT, -- should have NOT NULL modifier
> ...
> INSERT INTO ambari_sequences (sequence_name, sequence_value)
> ...
> union all
> select 'upgrade_group_id_seq', 0
> {code}
> vs
> Ambari-DDL-Postgres-CREATE.sql
> {code}
> CREATE TABLE ambari.repo_version (
> repo_version_id BIGINT NOT NULL,
> ...
> INSERT INTO ambari_sequences (sequence_name, sequence_value)
> ...
> -- Doesn't insert upgrade_group_id_seq
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)