Commit b1c8de49 authored by Bruce Momjian's avatar Bruce Momjian

Update FAQ_DEV.

parent a4cf22c7
Developer's Frequently Asked Questions (FAQ) for PostgreSQL Developer's Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: Thu Jan 3 03:20:49 EST 2002 Last updated: Fri Feb 1 15:22:54 EST 2002
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...@@ -572,7 +572,7 @@ typedef struct nameData ...@@ -572,7 +572,7 @@ typedef struct nameData
loop through list, assigning each list element to i. It is loop through list, assigning each list element to i. It is
important to note that i is a List *, not the data in the List important to note that i is a List *, not the data in the List
element. You need to use lfirst(i) to get at the data. Here is element. You need to use lfirst(i) to get at the data. Here is
a typical code snipped that loops through a List containing Var a typical code snippet that loops through a List containing Var
*'s and processes each one: *'s and processes each one:
List *i, *list; List *i, *list;
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<H1>Developer's Frequently Asked Questions (FAQ) for <H1>Developer's Frequently Asked Questions (FAQ) for
PostgreSQL</H1> PostgreSQL</H1>
<P>Last updated: Thu Jan 3 03:20:49 EST 2002</P> <P>Last updated: Fri Feb 1 15:22:54 EST 2002</P>
<P>Current maintainer: Bruce Momjian (<A href= <P>Current maintainer: 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>
...@@ -687,7 +687,7 @@ ...@@ -687,7 +687,7 @@
<I>i.</I> It is important to note that <I>i</I> is a List *, <I>i.</I> It is important to note that <I>i</I> is a List *,
not the data in the <I>List</I> element. You need to use not the data in the <I>List</I> element. You need to use
<I>lfirst(i)</I> to get at the data. Here is a typical code <I>lfirst(i)</I> to get at the data. Here is a typical code
snipped that loops through a List containing <I>Var *'s</I> snippet that loops through a List containing <I>Var *'s</I>
and processes each one: and processes each one:
<PRE> <PRE>
<CODE>List *i, *list; <CODE>List *i, *list;
......
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