pgAdmin 4 commit: Add support for Trigger and JIT stats in the graphica

2018-07-06 Thread Dave Page
Add support for Trigger and JIT stats in the graphical query plan viewer. Fixes 
#3397

Branch
--
master

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=2b20b387e2b2ff2cf20e3806248b6ad5ccd22365
Author: Akshay Joshi 

Modified Files
--
docs/en_US/release_notes_3_2.rst   |  2 +-
web/pgadmin/feature_tests/query_tool_tests.py  | 63 +++
web/pgadmin/misc/static/explain/css/explain.css| 22 +-
web/pgadmin/misc/static/explain/js/explain.js  | 38 -
.../misc/static/explain/js/explain_statistics.js   | 90 ++
.../misc/explain/explain_statistics_spec.js| 87 +
6 files changed, 296 insertions(+), 6 deletions(-)



Re: [pgAdmin4][Patch]: RM #3397 Add support for JIT stats in EXPLAIN output in PG11

2018-07-06 Thread Dave Page
Thanks, patch applied!

On Fri, Jul 6, 2018 at 6:44 AM, Akshay Joshi 
wrote:

> Hi
>
> On Thu, Jul 5, 2018 at 7:17 PM, Dave Page  wrote:
>
>> Hi
>>
>> Looks good to me - the only remaining issue is that the button still
>> isn't the same colours as the zoom ones. I haven't found all the
>> differences, but there seems to be an 'opacity: 0.5" on the stats area, and
>> the disabled attribute is still being set.
>>
>
> I have set the disabled attribute, so that the button shouldn't be
> clickable and because of that there is difference in colour. 'opacity:
> 0.5' is also there for zoom area. I have fixed the issue by removing
> disabled attribute and add '
>
> *pointer-events: none*' for the statistics button. Attached is the patch
> please review it.
>
>>
>> On Thu, Jul 5, 2018 at 11:21 AM, Akshay Joshi <
>> akshay.jo...@enterprisedb.com> wrote:
>>
>>> Hi Dave
>>>
>>> As per discussion attached is the modified patch with following review
>>> comments has been fixed :
>>>
>>>- Hide statistics button if not applicable(no statistics to show).
>>>- Extract 'StatisticsModel' into a separate file and added jasmine
>>>test for this.
>>>
>>>
>>>
>>>
>>> On Tue, Jul 3, 2018 at 6:40 PM, Akshay Joshi <
>>> akshay.jo...@enterprisedb.com> wrote:
>>>
 Hi Dave,

 Please ignore the previous patch, I have made some more changes related
 to background colour on enabled/disabled state.
 Attached is the modified patch. Please review it.

 On Tue, Jul 3, 2018 at 12:35 PM, Akshay Joshi <
 akshay.jo...@enterprisedb.com> wrote:

> Hi Dave,
>
> On Mon, Jul 2, 2018 at 4:10 PM, Dave Page  wrote:
>
>> Hi
>>
>> On Sat, Jun 30, 2018 at 9:15 AM, Akshay Joshi <
>> akshay.jo...@enterprisedb.com> wrote:
>>
>>> Hi Dave
>>>
>>> On Fri, Jun 29, 2018 at 7:45 PM, Dave Page 
>>> wrote:
>>>


 On Fri, Jun 29, 2018 at 3:12 PM, Akshay Joshi <
 akshay.jo...@enterprisedb.com> wrote:

> Hi Dave
>
> On Fri, Jun 29, 2018 at 6:56 PM, Dave Page 
> wrote:
>
>> Hi
>>
>> On Fri, Jun 29, 2018 at 9:55 AM, Akshay Joshi <
>> akshay.jo...@enterprisedb.com> wrote:
>>
>>> Hi Hackers,
>>>
>>> Attached is the patch to fix the RM #3397 Add support for JIT
>>> stats in EXPLAIN output in PG11. Please review it.
>>>
>>
>> A couple of immediate thoughts:
>>
>> - When the canvas is first rendered, there's a vertical scrollbar
>> now. As soon as I mouseover the new icon, it vanishes and the icon 
>> jumps to
>> the right.
>>
>
>  Will look into it. Vertical scrollbar comes even if you
> remove my patch and try to hover any image.
>
>>
>> - The icon seems lighter than the other controls on the left.
>>
>
>  Same css has been applied, only difference is button is
> disabled.
>
>>
>> - The icon isn't disabled when there is no info to show.
>>
>
>  Button is always disabled, I have just change the opacity.
>
>>
>> Thanks.
>>
>
 Maybe - but I can still click it and it reacts as if it's active.
 It may be lighter to indicate that it's disabled, but its not behaving 
 as
 such.

>>>
>>> Attached is the modified patch. Please review it.
>>>
>>
>> The button still changes foreground colour on mouseover when
>> disabled.  I think it needs to be completely non-reactive when disabled. 
>> It
>> should also be a noticably lighter shade when disabled; right now it 
>> seems
>> to be darker than the other buttons (see attached).
>>
>
>Attached is the modified patch. Please review it.
>
>>
>> --
>> Dave Page
>> Blog: http://pgsnake.blogspot.com
>> Twitter: @pgsnake
>>
>> EnterpriseDB UK: http://www.enterprisedb.com
>> The Enterprise PostgreSQL Company
>>
>
>
>
> --
> *Akshay Joshi*
>
> *Sr. Software Architect *
>
>
>
> *Phone: +91 20-3058-9517Mobile: +91 976-788-8246*
>



 --
 *Akshay Joshi*

 *Sr. Software Architect *



 *Phone: +91 20-3058-9517Mobile: +91 976-788-8246*

>>>
>>>
>>>
>>> --
>>> *Akshay Joshi*
>>>
>>> *Sr. Software Architect *
>>>
>>>
>>>
>>> *Phone: +91 20-3058-9517Mobile: +91 976-788-8246*
>>>
>>
>>
>>
>> --
>> Dave Page
>> Blog: http://pgsnake.blogspot.com
>> Twitter: @pgsnake
>>
>> EnterpriseDB UK: http://www.enterprisedb.com
>> The Enterprise PostgreSQL Company
>>
>
>
>
> --
> *Akshay Joshi*
>
> *Sr. Software Architect *
>
>
>
> *Phone: +91 20-3058-9517Mobile: +91 976-788-8246*
>



-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitt

pgAdmin 4 commit: Minor cleanup.

2018-07-06 Thread Dave Page
Minor cleanup.

Branch
--
electron

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=4a9d35eb74176fbe97dd03ec3c70ea8de557daa4

Modified Files
--
Makefile   | 3 ---
pkg/setup-macos.sh | 2 +-
2 files changed, 1 insertion(+), 4 deletions(-)



pgAdmin 4 commit: Set the macOS deployment target

2018-07-06 Thread Dave Page
Set the macOS deployment target

Branch
--
electron

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=0fce61acc311253ec6a0f675f9997fdf0508e060

Modified Files
--
pkg/build-darwin.sh | 2 ++
pkg/setup-macos.sh  | 2 ++
2 files changed, 4 insertions(+)



pgAdmin 4 commit: Un-corrupt Windows build script

2018-07-06 Thread Dave Page
Un-corrupt Windows build script

Branch
--
electron

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=b6fda3238d27e50200238336f9e35f1b4a7dd9f0

Modified Files
--
pkg/build-windows.ps1 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)



pgAdmin 4 commit: Pretty sure the o comes before the r in platform.

2018-07-06 Thread Dave Page
Pretty sure the o comes before the r in platform.

Branch
--
electron

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=1f83aee2ff45a8e3a7c079db687bb58bc84248bf

Modified Files
--
electron/package.json | 8 
1 file changed, 4 insertions(+), 4 deletions(-)



pgAdmin 4 commit: ULFO format isn't supported on macOS 10.10

2018-07-06 Thread Dave Page
ULFO format isn't supported on macOS 10.10

Branch
--
electron

Details
---
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=04c0cd422cc370e85425f02f829972199296940b

Modified Files
--
electron/package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)