Commit 5129e1bd authored by Bruce Momjian's avatar Bruce Momjian

Update new Russian FAQ.

parent 40eb5495
This diff is collapsed.
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
alink="#0000ff"> alink="#0000ff">
<H1> PostgreSQL</H1> <H1> PostgreSQL</H1>
<P> : 3 13:35:39 EST 2002</P> <P> : 9 10:53:30 EDT 2002</P>
<P> : (Bruce Momjian) (<A href= <P> : (Bruce Momjian) (<A href=
"mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR> "mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR>
...@@ -137,6 +137,7 @@ ...@@ -137,6 +137,7 @@
<A href="#4.23">4.23</A>) ?<BR> <A href="#4.23">4.23</A>) ?<BR>
<A href="#4.24">4.24</A>) , <A href="#4.24">4.24</A>) ,
?<BR> ?<BR>
<A href="#4.25">4.25</A>) ?<BR>
<H2 align="center"> PostgreSQL</H2> <H2 align="center"> PostgreSQL</H2>
...@@ -337,7 +338,7 @@ ...@@ -337,7 +338,7 @@
<a href="http://www.commandprompt.com/ppbook/">http://www.commandprompt.com/ppbook/</a>. <a href="http://www.commandprompt.com/ppbook/">http://www.commandprompt.com/ppbook/</a>.
PostgreSQL, PostgreSQL,
<a href="http://www.postgresql.org/books/">http://www.postgresql.org/books/</a>. <a href="http://www.postgresql.org/books/">http://www.postgresql.org/books/</a>.
, <a href="http://techdocs.postgresql.org/">http://techdocs.postgresql.org/</a> , <a href="http://techdocs.postgresql.org">http://techdocs.postgresql.org/</a>
PostgreSQL.</p> PostgreSQL.</p>
...@@ -1340,6 +1341,14 @@ BYTEA bytea ...@@ -1340,6 +1341,14 @@ BYTEA bytea
<P>, <P>,
.</P> .</P>
<H4><A name="4.25">4.25</A>) ?</H4>
<P> PL/pgSQL ,
<i>refcursors</i>. <a
href="http://developer.postgresql.org/docs/postgres/plpgsql-cursors.html">
http://developer.postgresql.org/docs/postgres/plpgsql-cursors.html,</a>
23.7.3.3.</P>
<HR> <HR>
<H2 align="center"> PostgreSQL</H2> <H2 align="center"> PostgreSQL</H2>
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.146 2002/04/09 20:35:53 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.147 2002/04/12 09:17:10 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -423,7 +423,7 @@ ProcessUtility(Node *parsetree, ...@@ -423,7 +423,7 @@ ProcessUtility(Node *parsetree,
(ColumnDef *) stmt->def); (ColumnDef *) stmt->def);
break; break;
case 'T': /* ALTER COLUMN DEFAULT */ case 'T': /* ALTER COLUMN DEFAULT */
/* /*
* Recursively alter column default for table and, * Recursively alter column default for table and,
* if requested, for descendants * if requested, for descendants
*/ */
...@@ -455,7 +455,7 @@ ProcessUtility(Node *parsetree, ...@@ -455,7 +455,7 @@ ProcessUtility(Node *parsetree,
&(stmt->subtype)); &(stmt->subtype));
break; break;
case 'D': /* DROP COLUMN */ case 'D': /* DROP COLUMN */
/* /*
* XXX We don't actually recurse yet, but what we should do would be: * XXX We don't actually recurse yet, but what we should do would be:
* Recursively drop column from table and, * Recursively drop column from table and,
* if requested, from descendants * if requested, from descendants
...@@ -471,16 +471,16 @@ ProcessUtility(Node *parsetree, ...@@ -471,16 +471,16 @@ ProcessUtility(Node *parsetree,
* if requested, to descendants * if requested, to descendants
*/ */
AlterTableAddConstraint(RangeVarGetRelid(stmt->relation, false), AlterTableAddConstraint(RangeVarGetRelid(stmt->relation, false),
interpretInhOption(stmt->relation->inhOpt), interpretInhOption(stmt->relation->inhOpt),
(List *) stmt->def); (List *) stmt->def);
break; break;
case 'X': /* DROP CONSTRAINT */ case 'X': /* DROP CONSTRAINT */
/* /*
* Recursively drop constraint from table and, * Recursively drop constraint from table and,
* if requested, from descendants * if requested, from descendants
*/ */
AlterTableDropConstraint(RangeVarGetRelid(stmt->relation, false), AlterTableDropConstraint(RangeVarGetRelid(stmt->relation, false),
interpretInhOption(stmt->relation->inhOpt), interpretInhOption(stmt->relation->inhOpt),
stmt->name, stmt->name,
stmt->behavior); stmt->behavior);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment