pgAdmin 4 commit: Ensure the properties dialogues create objects in a s

From: Dave Page <dpage(at)pgadmin(dot)org>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: pgAdmin 4 commit: Ensure the properties dialogues create objects in a s
Date: 2016-06-10 15:07:35
Message-ID: E1bBO23-0002GC-2B@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Ensure the properties dialogues create objects in a single transaction/statement. Fixes #1107

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=d5a91c969c4a3c5d76d8cd53120562f5afc80a87
Author: Sanket Mehta <sanket(dot)mehta(at)enterprisedb(dot)com>

Modified Files
--------------
.../servers/databases/schemas/__init__.py | 33 +------------------
.../servers/databases/schemas/tables/__init__.py | 32 -------------------
.../constraints/check_constraint/__init__.py | 18 -----------
.../constraints/exclusion_constraint/__init__.py | 16 ----------
.../tables/constraints/foreign_key/__init__.py | 16 ----------
.../constraints/index_constraint/__init__.py | 19 -----------
.../databases/schemas/tables/indexes/__init__.py | 14 +++++++-
.../check_constraint/sql/9.1_plus/alter.sql | 4 ---
.../check_constraint/sql/9.1_plus/create.sql | 5 +++
.../check_constraint/sql/9.2_plus/alter.sql | 4 ---
.../check_constraint/sql/9.2_plus/create.sql | 5 +++
.../exclusion_constraint/sql/9.1_plus/alter.sql | 4 ---
.../exclusion_constraint/sql/9.1_plus/create.sql | 7 +++-
.../exclusion_constraint/sql/9.2_plus/alter.sql | 4 ---
.../exclusion_constraint/sql/9.2_plus/create.sql | 7 +++-
.../tables/templates/foreign_key/sql/alter.sql | 4 ---
.../tables/templates/foreign_key/sql/create.sql | 7 +++-
.../templates/index_constraint/sql/alter.sql | 4 ---
.../templates/index_constraint/sql/create.sql | 7 +++-
.../templates/catalog/pg/9.1_plus/sql/alter.sql | 1 -
.../templates/catalog/pg/9.2_plus/sql/alter.sql | 1 -
.../templates/catalog/ppas/9.1_plus/sql/alter.sql | 1 -
.../templates/catalog/ppas/9.2_plus/sql/alter.sql | 1 -
.../templates/schema/pg/9.1_plus/sql/alter.sql | 35 --------------------
.../templates/schema/pg/9.1_plus/sql/create.sql | 37 ++++++++++++++++++++++
.../templates/schema/pg/9.2_plus/sql/alter.sql | 35 --------------------
.../templates/schema/pg/9.2_plus/sql/create.sql | 37 ++++++++++++++++++++++
.../templates/schema/ppas/9.1_plus/sql/alter.sql | 35 --------------------
.../templates/schema/ppas/9.1_plus/sql/create.sql | 37 ++++++++++++++++++++++
.../templates/schema/ppas/9.2_plus/sql/alter.sql | 35 --------------------
.../templates/schema/ppas/9.2_plus/sql/create.sql | 37 ++++++++++++++++++++++
.../templates/databases/sql/9.3_plus/grant.sql | 6 ++--
32 files changed, 199 insertions(+), 309 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2016-06-10 15:12:54 pgAdmin 4 commit: Fix role valid until date handling. Fixes #1107
Previous Message Dave Page 2016-06-10 15:07:31 Re: PAtch for RM 1107 [pgadmin4]