Re: [pgadmin-hackers] Autoformatting - Mailing list pgadmin-hackers

From Robert Eckhardt
Subject Re: [pgadmin-hackers] Autoformatting
Date
Msg-id CAAtBm9U4adoJW8DKQa3xBgS=au30zLPtxjSm9C21+upcxMO_8w@mail.gmail.com
Whole thread Raw
In response to Re: [pgadmin-hackers] Autoformatting  (Dave Page <dpage@pgadmin.org>)
Responses Re: [pgadmin-hackers] Autoformatting
List pgadmin-hackers
Over the weekend I created some options for formatting. certainly this isn't complete but I hope it is a good starting point for the conversation. Copy and paste lost syntax highlighting but please assume that will be included. 

/* Unformatted  */

select distinct dep.deptype,dep.classid,coalesce(coc.relname, clrw.relname) as 
ownertable from pg_depend dep left join pg_class cl on dep.objid = cl.oid 
left join pg_attribute att on dep.objid = att.attrelid and dep.objsubid = att.attnum 
where dep.objid = 16385 :: oid and classid in (select oid from pg_class 
where relname in ( 'pg_class', 'pg_constraint' )) order by classid,cl.relkin;


/* Keywords Upper, Stacked, commas after */

SELECT DISTINCT dep.deptype, 
                dep.classid, 
                Coalesce(coc.relname, clrw.relname) AS ownertable 
FROM   pg_depend dep 
       left join pg_class cl 
              ON dep.objid = cl.oid 
       left join pg_attribute att 
              ON dep.objid = att.attrelid 
                 AND dep.objsubid = att.attnum 
WHERE  dep.objid = 16385 :: oid 
       AND classid IN (SELECT oid 
                       FROM   pg_class 
                       WHERE  relname IN ( 'pg_class', 'pg_constraint' )) 
ORDER  BY classid, 
          cl.relkin; 
 
 /* Keywords Upper, Stacked, commas before */         
          
SELECT DISTINCT dep.deptype 
                ,dep.classid 
                ,Coalesce(coc.relname, clrw.relname) AS ownertable 
FROM   pg_depend dep 
       left join pg_class cl 
              ON dep.objid = cl.oid 
       left join pg_attribute att 
              ON dep.objid = att.attrelid 
                 AND dep.objsubid = att.attnum 
WHERE  dep.objid = 16385 :: oid 
       AND classid IN (SELECT oid 
                       FROM   pg_class 
                       WHERE  relname IN ( 'pg_class', 'pg_constraint' )) 
ORDER  BY classid 
          ,cl.relkin; 
          

 /* Keywords Upper, indent = 2 spaces, commas before */  

SELECT DISTINCT dep.deptype
  ,dep.classid
  ,coalesce(coc.relname, clrw.relname) AS ownertable
FROM pg_depend dep
LEFT JOIN pg_class cl
  ON dep.objid = cl.oid
LEFT JOIN pg_attribute att
  ON dep.objid = att.attrelid
    AND dep.objsubid = att.attnum
WHERE dep.objid = 16385::oid
  AND classid IN (
    SELECT oid
    FROM pg_class
    WHERE relname IN (
        'pg_class'
        ,'pg_constraint'
        )
    )
ORDER BY classid
  ,cl.relkin;
          

 /* Keywords Upper, indent = \t, commas before */  
 
SELECT DISTINCT dep.deptype
,dep.classid
,coalesce(coc.relname, clrw.relname) AS ownertable
FROM pg_depend dep
LEFT JOIN pg_class cl
ON dep.objid = cl.oid
LEFT JOIN pg_attribute att
ON dep.objid = att.attrelid
AND dep.objsubid = att.attnum
WHERE dep.objid = 16385::oid
AND classid IN (
SELECT oid
FROM pg_class
WHERE relname IN (
'pg_class'
,'pg_constraint'
)
)
ORDER BY classid
,cl.relkin; 


On Fri, May 5, 2017 at 4:38 AM, Dave Page <dpage@pgadmin.org> wrote:


On Thu, May 4, 2017 at 7:58 PM, Shirley Wang <swang@pivotal.io> wrote:
Hello!

We're starting development on this soon, so pulling this thread back up.

Here is an update on the design of the pop up, which matches the style we decided for alerts.
autoformating-bluepopup.png


I like it!
 

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

Attachment

pgadmin-hackers by date:

Previous
From: Dave Page
Date:
Subject: Re: [pgadmin-hackers] Running feature tests in CI
Next
From: Sarah McAlear
Date:
Subject: Re: [pgadmin-hackers][patch] Dependents and Dependencies in GreenPlum