Re: My question about autonomous transaction

From: 高健 <luckyjackgao(at)gmail(dot)com>
To: "Adrian(dot)Vondendriesch" <Adrian(dot)Vondendriesch(at)credativ(dot)de>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: My question about autonomous transaction
Date: 2013-07-10 01:44:03
Message-ID: CAL454F0h-yuR7wmUysx6=VEA3aNo6xTeK0P8myU2G=ry_H=sNA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Thank you !

Best Regards

2013/7/9 Adrian.Vondendriesch <Adrian(dot)Vondendriesch(at)credativ(dot)de>

> Hello,
>
> Am 09.07.2013 11:29, schrieb 高健:
> > Hello:
> >
> >
> >
> > I have found the following wiki about autonomous transaction:
> >
> > https://wiki.postgresql.org/wiki/Autonomous_subtransactions
> >
> >
> >
> > But when I test it, I found the following error:
> >
> >
> >
> > pgsql=# BEGIN;
> >
> > BEGIN
> >
> > pgsql=# INSERT INTO tab01 VALUES (1);
> >
> > INSERT 0 1
> >
> > pgsql=# BEGIN SUBTRANSACTION;
> >
> > ERROR: syntax error at or near "SUBTRANSACTION"
> >
> > LINE 1: BEGIN SUBTRANSACTION;
> >
> > ^
> >
> > pgsql=#
> >
> >
> >
> > So that sub transaction is still not supported in PostgreSQL,
> >
> > Is my understanding right?
>
> Yes it is.
>
> If you have a look at the todo list at
> http://wiki.postgresql.org/wiki/Todo (Exotic Features) you will see,
> that it's marked as outstanding.
>
> >
> >
> >
> > Best Regards
> >
>
> Best Regards
>
> - Adrian
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message guxiaobo1982 2013-07-10 02:06:17 Reply: [GENERAL] 回复: [GENERAL] Can't create plpython language
Previous Message Tom Lane 2013-07-09 23:42:33 Re: plpgsql plan caching allowing invalid data to enter table?