Re: pgadmin4 3.5's dependency on psutil is a bit painful

2018-11-08 Thread Murtuza Zabuawala
Hi David, That requires testing on all platforms including similar support for the RPM-based platforms, please create an issue on https://redmine.postgresql.org/projects/pgadmin4 On Fri, Nov 9, 2018 at 8:47 AM David Gilman wrote: > Thanks Murtuza. > > Do you think the requirement for psutil c

Re: pgadmin4 3.5's dependency on psutil is a bit painful

2018-11-08 Thread David Gilman
Thanks Murtuza. Do you think the requirement for psutil could at least be relaxed to 5.0.1, the version that ships with Debian Stable? For my segfault - turns out it's due to the psycopg2/libpq/libssl issue in psycopg2 ticket #543. So, nothing related to pgadmin4. (resending to cc the mailing li

Re: BUG: Maintenance feature broken ?

2018-11-08 Thread SleepProgger
This happens for me regardless of settings/tables used, so its a bit hard to create sample data for this. Thus a bit more detailed: - Right click on a table - Select maintenance - Click "Ok" On my system that opens a popup with the text: "Maintenance job creation failed." And IMHO that a

Re: Error in pgAdmin4 when cast is created

2018-11-08 Thread Murtuza Zabuawala
Hi, "https://www.pgadmin.org/development/resources"; is not a git repo, It is for your reference, open that link for more details :) git clone https://git.postgresql.org/git/pgadmin4.git cd pgadmin4 more README -- Regards, Murtuza Zabuawala EnterpriseDB: http://www.enterprisedb.com The Enterpri

AW: Error in pgAdmin4 when cast is created

2018-11-08 Thread ascara Software GmbH - Jürgen Spatz
HI, when I try to clone the git I only get the error: git.exe clone --progress --recursive -v "https://www.pgadmin.org/development/resources"; "D:\Dev\PGAdmin\resources" Cloning into 'D:\Dev\PGAdmin\resources'... fatal: repository 'https://www.pgadmin.org/development/resources/' not found git

Re: Error in pgAdmin4 when cast is created

2018-11-08 Thread Murtuza Zabuawala
Great, If you want then you can always send the patch :) Steps: 1) Git clone pgAdmin4 Ref: https://www.pgadmin.org/development/resources/ 2) Make the required changes in the code to fix the issue 3) Create a git diff file 4) Send it to pgadmin-hackers(at)lists.postgresql.org On Thu, Nov 8, 20

AW: Error in pgAdmin4 when cast is created

2018-11-08 Thread ascara Software GmbH - Jürgen Spatz
Hi, I tested the Statement and only a small correction is needed SELECT i.indexrelid, CASE i.indoption[i.attnum - 1] WHEN 0 THEN ARRAY['ASC', 'NULLS LAST'] WHEN 1 THEN ARRAY['DESC', 'NULLS FIRST'] W

AW: Error in pgAdmin4 when cast is created

2018-11-08 Thread ascara Software GmbH - Jürgen Spatz
HI, I inserted the Bug in the Bug-Tracker also with the correct SQL code, which comes, when I delete the cast Regards Jürgen Spatz Von: Murtuza Zabuawala [mailto:murtuza.zabuaw...@enterprisedb.com] Gesendet: Donnerstag, 8. November 2018 13:08 An: ascara Software GmbH - Jürgen Spatz Cc: pgAdmi

Re: Error in pgAdmin4 when cast is created

2018-11-08 Thread Murtuza Zabuawala
Hi, Could you please report a bug on https://redmine.postgresql.org/projects/pgadmin4 It would be very helpful if you include the sample SQL definition to reproduce the issue on the developer's machine. -- Regards, Murtuza Zabuawala EnterpriseDB: http://www.enterprisedb.com The Enterprise Postgr

AW: Error in pgAdmin4 when cast is created

2018-11-08 Thread ascara Software GmbH - Jürgen Spatz
HI, the Error comes with all PostgreSQL Versions since 9.6 Greetings Jürgen Spatz Von: Murtuza Zabuawala [mailto:murtuza.zabuaw...@enterprisedb.com] Gesendet: Donnerstag, 8. November 2018 11:35 An: ascara Software GmbH - Jürgen Spatz Cc: pgAdmin Support Betreff: Re: Error in pgAdmin4 when cast

Re: pgadmin4 3.5's dependency on psutil is a bit painful

2018-11-08 Thread Murtuza Zabuawala
Hi, We need psutil to handle backend process management, ie allow the user to terminate long-running backup or restore job. I don't see any alternative to psutil at a moment which supports cross-platform process management like psutil do. I think the reason why there is no binary wheel is that it

Re: Error in pgAdmin4 when cast is created

2018-11-08 Thread Murtuza Zabuawala
Hi, What version of PostgreSQL are you using? -- Regards, Murtuza Zabuawala EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company On Thu, Nov 8, 2018 at 2:40 PM ascara Software GmbH - Jürgen Spatz < juergen.sp...@ascara.de> wrote: > Hi All, > > > > I found this error in

Error in pgAdmin4 when cast is created

2018-11-08 Thread ascara Software GmbH - Jürgen Spatz
Hi All, I found this error in all versions of pgadmin4 on windows. When I create a cast like this: CREATE FUNCTION public.text(smallint) RETURNS text STRICT IMMUTABLE LANGUAGE SQL AS 'SELECT textin(int2out($1));'; CREATE CAST (smallint AS text) WITH FUNCTION public.text(smallint) AS IMPLICIT;