From: | ekekakos <ekekakos(at)hol(dot)gr> |
---|---|
To: | pgsql-novice(at)postgresql(dot)org |
Subject: | Re: Triggers and Domains |
Date: | 2009-08-30 18:25:47 |
Message-ID: | 25214251.post@talk.nabble.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
It does not work.
I run your script
create domain username as text default user;
through PGADMIN and I get the following
CREATE DOMAIN username
AS text
DEFAULT "current_user"();
ALTER DOMAIN username OWNER TO ekekakos;
I create a field in a table and I am getting the following script:
ALTER TABLE "Library"."Contacts" ADD COLUMN "LastUser" username;
ALTER TABLE "Library"."Contacts" ALTER COLUMN "LastUser" SET STORAGE
EXTENDED;
And it does not work during the update.
Thanks
Elias
Tom Lane-2 wrote:
>
> ekekakos <ekekakos(at)hol(dot)gr> writes:
>> Thanks but how, in SQL server you put the function USER() (if I remember
>> well) and it works.
>> Here it does not work.
>
> Define "does not work", please?
>
> regression=# create domain username as text default user;
> CREATE DOMAIN
> regression=# create table foo(f1 int, lastupdateuser username);
> CREATE TABLE
> regression=# insert into foo(f1) values(42);
> INSERT 0 1
> regression=# select * from foo;
> f1 | lastupdateuser
> ----+----------------
> 42 | postgres
> (1 row)
>
>
> regards, tom lane
>
> --
> Sent via pgsql-novice mailing list (pgsql-novice(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-novice
>
>
--
View this message in context: http://www.nabble.com/Triggers-and-Domains-tp25209238p25214251.html
Sent from the PostgreSQL - novice mailing list archive at Nabble.com.
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2009-08-30 18:39:26 | Re: Triggers and Domains |
Previous Message | Tom Lane | 2009-08-30 17:01:37 | Re: Triggers and Domains |