public inbox for [email protected]  
help / color / mirror / Atom feed
Patch for plpgsql.sgml
3+ messages / 3 participants
[nested] [flat]

* Patch for plpgsql.sgml
@ 2004-08-06 18:50 Devrim GUNDUZ <[email protected]>
  2004-08-08 01:55 ` Re: Patch for plpgsql.sgml Bruce Momjian <[email protected]>
  2004-08-08 01:57 ` Re: Patch for plpgsql.sgml Tom Lane <[email protected]>
  0 siblings, 2 replies; 3+ messages in thread

From: Devrim GUNDUZ @ 2004-08-06 18:50 UTC (permalink / raw)
  To: pgsql-docs

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Hi,

As Tom has pointed out today, I've began reading the docs. plpgsql.sgml 
says that PostgreSQL does not support nested transactions. I've removed 
that part and a small diff is attached.

I'll be on 10-days' holiday and I'll try to read the whole docs.

Regards,
- -- 
Devrim GUNDUZ	       
devrim~gunduz.org				devrim.gunduz~linux.org.tr 
			http://www.tdmsoft.com
			http://www.gunduz.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFBE9Lztl86P3SPfQ4RAtN9AKDjSR6Xlgl3ea2su1pDgOnsd1q27ACeLvT+
aeF83FCl8/3ccbCdauwt6Wg=
=Oks/
-----END PGP SIGNATURE-----

--- doc/src/sgml/plpgsql.sgml.orig	2004-08-06 12:05:10.000000000 +0300
+++ doc/src/sgml/plpgsql.sgml	2004-08-06 12:05:47.000000000 +0300
@@ -450,9 +450,7 @@
      grouping statements in <application>PL/pgSQL</> with the database commands for
      transaction control.  <application>PL/pgSQL</>'s <command>BEGIN</>/<command>END</> are only for grouping;
      they do not start or end a transaction.  Functions and trigger procedures
-     are always executed within a transaction established by an outer query
-     --- they cannot start or commit transactions, since
-     <productname>PostgreSQL</productname> does not have nested transactions.
+     are always executed within a transaction established by an outer query.
     </para>
   </sect1>
 


Attachments:

  [text/plain] plpgsql.diff (766B, 2-plpgsql.diff)
  download | inline diff:
--- doc/src/sgml/plpgsql.sgml.orig	2004-08-06 12:05:10.000000000 +0300
+++ doc/src/sgml/plpgsql.sgml	2004-08-06 12:05:47.000000000 +0300
@@ -450,9 +450,7 @@
      grouping statements in <application>PL/pgSQL</> with the database commands for
      transaction control.  <application>PL/pgSQL</>'s <command>BEGIN</>/<command>END</> are only for grouping;
      they do not start or end a transaction.  Functions and trigger procedures
-     are always executed within a transaction established by an outer query
-     --- they cannot start or commit transactions, since
-     <productname>PostgreSQL</productname> does not have nested transactions.
+     are always executed within a transaction established by an outer query.
     </para>
   </sect1>
 


^ permalink  raw  reply  [nested|flat] 3+ messages in thread

* Re: Patch for plpgsql.sgml
  2004-08-06 18:50 Patch for plpgsql.sgml Devrim GUNDUZ <[email protected]>
@ 2004-08-08 01:55 ` Bruce Momjian <[email protected]>
  1 sibling, 0 replies; 3+ messages in thread

From: Bruce Momjian @ 2004-08-08 01:55 UTC (permalink / raw)
  To: Devrim GUNDUZ <[email protected]>; +Cc: pgsql-docs


Thanks, but I think Tom already fixed it.

---------------------------------------------------------------------------

Devrim GUNDUZ wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> 
> Hi,
> 
> As Tom has pointed out today, I've began reading the docs. plpgsql.sgml 
> says that PostgreSQL does not support nested transactions. I've removed 
> that part and a small diff is attached.
> 
> I'll be on 10-days' holiday and I'll try to read the whole docs.
> 
> Regards,
> - -- 
> Devrim GUNDUZ	       
> devrim~gunduz.org				devrim.gunduz~linux.org.tr 
> 			http://www.tdmsoft.com
> 			http://www.gunduz.org
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.2.1 (GNU/Linux)
> 
> iD8DBQFBE9Lztl86P3SPfQ4RAtN9AKDjSR6Xlgl3ea2su1pDgOnsd1q27ACeLvT+
> aeF83FCl8/3ccbCdauwt6Wg=
> =Oks/
> -----END PGP SIGNATURE-----

Content-Description: 

[ Attachment, skipping... ]

> 
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to [email protected])

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  [email protected]               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073



^ permalink  raw  reply  [nested|flat] 3+ messages in thread

* Re: Patch for plpgsql.sgml
  2004-08-06 18:50 Patch for plpgsql.sgml Devrim GUNDUZ <[email protected]>
@ 2004-08-08 01:57 ` Tom Lane <[email protected]>
  1 sibling, 0 replies; 3+ messages in thread

From: Tom Lane @ 2004-08-08 01:57 UTC (permalink / raw)
  To: Devrim GUNDUZ <[email protected]>; +Cc: pgsql-docs

Devrim GUNDUZ <[email protected]> writes:
> As Tom has pointed out today, I've began reading the docs. plpgsql.sgml 
> says that PostgreSQL does not support nested transactions. I've removed 
> that part and a small diff is attached.

I've incorporated this in my recent commit.  Thanks.

			regards, tom lane




^ permalink  raw  reply  [nested|flat] 3+ messages in thread


end of thread, other threads:[~2004-08-08 01:57 UTC | newest]

Thread overview: 3+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2004-08-06 18:50 Patch for plpgsql.sgml Devrim GUNDUZ <[email protected]>
2004-08-08 01:55 ` Bruce Momjian <[email protected]>
2004-08-08 01:57 ` Tom Lane <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox