pgAdmin 4 commit: Statistics support remaining object types that suppor

From: Dave Page <dpage(at)pgadmin(dot)org>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: pgAdmin 4 commit: Statistics support remaining object types that suppor
Date: 2016-06-07 12:16:16
Message-ID: E1bAFvc-0006zp-0Q@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Statistics support remaining object types that support them.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=4ace8bb5b6cae4428c1ce3c749e46a5c684e536d
Author: Murtuza Zabuawala <murtuza(dot)zabuawala(at)enterprisedb(dot)com>

Modified Files
--------------
.../databases/schemas/functions/__init__.py | 29 +++++++++
.../functions/templates/function/js/functions.js | 1 +
.../templates/function/pg/sql/9.1_plus/stats.sql | 8 +++
.../templates/function/pg/sql/9.2_plus/stats.sql | 8 +++
.../templates/function/pg/sql/9.5_plus/stats.sql | 8 +++
.../templates/function/ppas/sql/9.1_plus/stats.sql | 8 +++
.../templates/function/ppas/sql/9.2_plus/stats.sql | 8 +++
.../templates/function/ppas/sql/9.5_plus/stats.sql | 8 +++
.../functions/templates/procedure/js/procedures.js | 1 +
.../procedure/ppas/sql/9.1_plus/stats.sql | 8 +++
.../procedure/ppas/sql/9.2_plus/stats.sql | 8 +++
.../procedure/ppas/sql/9.5_plus/stats.sql | 8 +++
.../trigger_function/js/trigger_functions.js | 1 +
.../trigger_function/pg/sql/9.1_plus/stats.sql | 8 +++
.../trigger_function/pg/sql/9.2_plus/stats.sql | 8 +++
.../trigger_function/pg/sql/9.5_plus/stats.sql | 8 +++
.../trigger_function/ppas/sql/9.1_plus/stats.sql | 8 +++
.../trigger_function/ppas/sql/9.2_plus/stats.sql | 8 +++
.../trigger_function/ppas/sql/9.5_plus/stats.sql | 8 +++
.../databases/schemas/sequences/__init__.py | 28 ++++++++
.../sequences/templates/sequence/js/sequence.js | 1 +
.../templates/sequence/sql/9.1_plus/stats.sql | 7 ++
.../servers/databases/schemas/tables/__init__.py | 75 +++++++++++++++++++++-
.../databases/schemas/tables/column/__init__.py | 42 ++++++++++++
.../tables/column/templates/column/js/column.js | 1 +
.../constraints/exclusion_constraint/__init__.py | 56 ++++++++++++++++
.../js/exclusion_constraint.js | 1 +
.../constraints/index_constraint/__init__.py | 56 ++++++++++++++++
.../index_constraint/js/index_constraint.js | 1 +
.../databases/schemas/tables/indexes/__init__.py | 72 ++++++++++++++++++++-
.../tables/indexes/templates/index/js/index.js | 4 +-
.../tables/templates/column/sql/9.1_plus/stats.sql | 14 ++++
.../tables/templates/column/sql/9.2_plus/stats.sql | 14 ++++
.../exclusion_constraint/sql/9.1_plus/stats.sql | 28 ++++++++
.../exclusion_constraint/sql/9.2_plus/stats.sql | 28 ++++++++
.../templates/index/sql/9.1_plus/coll_stats.sql | 17 +++++
.../tables/templates/index/sql/9.1_plus/stats.sql | 28 ++++++++
.../templates/index_constraint/sql/stats.sql | 28 ++++++++
.../schemas/tables/templates/table/js/table.js | 4 +-
.../table/sql/9.1_plus/coll_table_stats.sql | 29 +++++++++
.../templates/table/sql/9.1_plus/get_schema.sql | 1 +
.../templates/table/sql/9.1_plus/get_table.sql | 8 +++
.../tables/templates/table/sql/9.1_plus/stats.sql | 57 ++++++++++++++++
.../table/sql/9.5_plus/coll_table_stats.sql | 29 +++++++++
.../templates/table/sql/9.5_plus/get_schema.sql | 1 +
.../templates/table/sql/9.5_plus/get_table.sql | 8 +++
.../tables/templates/table/sql/9.5_plus/stats.sql | 57 ++++++++++++++++
.../templates/databases/sql/9.1_plus/stats.sql | 18 +++---
.../templates/databases/sql/9.2_plus/stats.sql | 18 +++---
.../templates/databases/sql/9.3_plus/stats.sql | 18 +++---
50 files changed, 870 insertions(+), 31 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2016-06-07 12:22:19 Re: PATCH: Added Statistics functionality for many nodes (pgAdmin4)
Previous Message Dave Page 2016-06-07 11:38:01 pgAdmin 4 commit: Fix validation of object before using it