Re: [pgadmin-support] view column defaults not displayed

2011-03-06 Thread A.M.
On Mar 6, 2011, at 9:29 AM, Guillaume Lelarge wrote: > Le 14/02/2011 22:28, Guillaume Lelarge a écrit : >> Le 14/02/2011 21:51, A.M. a écrit : >>> [...] >>> I am using ALTER VIEW x ALTER COLUMN y SET DEFAULT defaultclause, but the >>> defaults do not seem to appear in the pgadmin generated SQL

Re: [pgadmin-support] view column defaults not displayed

2011-03-06 Thread Guillaume Lelarge
Le 14/02/2011 22:28, Guillaume Lelarge a écrit : > Le 14/02/2011 21:51, A.M. a écrit : >> [...] >> I am using ALTER VIEW x ALTER COLUMN y SET DEFAULT defaultclause, but the >> defaults do not seem to appear in the pgadmin generated SQL for the view. Is >> this a deliberate omission? psql does di

Re: [pgadmin-support] view column defaults not displayed

2011-02-14 Thread Guillaume Lelarge
Le 14/02/2011 21:51, A.M. a écrit : > [...] > I am using ALTER VIEW x ALTER COLUMN y SET DEFAULT defaultclause, but the > defaults do not seem to appear in the pgadmin generated SQL for the view. Is > this a deliberate omission? psql does display view column defaults: > Mainly because it was f

[pgadmin-support] view column defaults not displayed

2011-02-14 Thread A.M.
Hello, I am using ALTER VIEW x ALTER COLUMN y SET DEFAULT defaultclause, but the defaults do not seem to appear in the pgadmin generated SQL for the view. Is this a deliberate omission? psql does display view column defaults: test=# CREATE VIEW test.trash AS SELECT 1 AS a; CREATE VIEW test=# A