Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
6488275b
Commit
6488275b
authored
17 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
In developer's FAQ, update list API, from Tom Lane.
parent
1b57f0e3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/FAQ_DEV
+21
-20
21 additions, 20 deletions
doc/FAQ_DEV
doc/src/FAQ/FAQ_DEV.html
+20
-19
20 additions, 19 deletions
doc/src/FAQ/FAQ_DEV.html
with
41 additions
and
39 deletions
doc/FAQ_DEV
+
21
−
20
View file @
6488275b
Developer's Frequently Asked Questions (FAQ) for PostgreSQL
Developer's Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: Sat May 5 0
0:09:15
EDT 2007
Last updated: Sat May 5 0
6:20:41
EDT 2007
Current maintainer: Bruce Momjian (bruce@momjian.us)
Current maintainer: Bruce Momjian (bruce@momjian.us)
...
@@ -698,20 +698,21 @@ typedef struct nameData
...
@@ -698,20 +698,21 @@ typedef struct nameData
Here are some of the List manipulation commands:
Here are some of the List manipulation commands:
lfirst(i), lfirst_int(i), lfirst_oid(i)
lfirst(i), lfirst_int(i), lfirst_oid(i)
return the data (a point, integer
and
OID respectively)
at list
return the data (a point
er
, integer
or
OID respectively)
of
element
i.
list cell
i.
lnext(i)
lnext(i)
return the next list el
ement
after i.
return the next list
c
el
l
after i.
foreach(i, list)
foreach(i, list)
loop through list, assigning each list el
ement
to i. It is
loop through list, assigning each list
c
el
l
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
Cell
*, not the data in the
element. You need to use lfirst(i) to get at the data.
Here is
List
element. You need to use lfirst(i) to get at the data.
a typical code snippet that loops through a List
containing Var
Here is
a typical code snippet that loops through a List
*'s and processes each one:
containing Var
*'s and processes each one:
List *list;
List *list;
ListCell *i;
ListCell *i;
foreach(i, list)
foreach(i, list)
...
@@ -726,20 +727,20 @@ typedef struct nameData
...
@@ -726,20 +727,20 @@ typedef struct nameData
if list is NIL.
if list is NIL.
lappend(list, node)
lappend(list, node)
add node to the end of list.
This is more expensive that lcons.
add node to the end of list.
n
conc(list1, list2)
list_
conc
at
(list1, list2)
Concat list2 on to the end of list1.
Concat
enate
list2 on to the end of list1.
length(list)
list_
length(list)
return the length of the list.
return the length of the list.
nth(i, list
)
list_nth(list, i
)
return the i'th element in list.
return the i'th element in list
, counting from zero
.
lcons
i
, ...
lcons
_int
, ...
There are integer versions of these: lcons
i
, lappend
i, etc.
There are integer versions of these: lcons
_int
, lappend
_int,
Also versions for OID lists: lcons
o
, lappend
o
, etc.
etc.
Also versions for OID lists: lcons
_oid
, lappend
_oid
, etc.
You can print nodes easily inside gdb. First, to disable output
You can print nodes easily inside gdb. First, to disable output
truncation when you use the gdb print command:
truncation when you use the gdb print command:
...
@@ -758,7 +759,7 @@ typedef struct nameData
...
@@ -758,7 +759,7 @@ typedef struct nameData
2.4) I just added a field to a structure. What else should I do?
2.4) I just added a field to a structure. What else should I do?
The structures pass
ing
around
from
the parser, rewrite, optimizer, and
The structures pass
ed
around
in
the parser, rewrite
r
, optimizer, and
executor require quite a bit of support. Most structures have support
executor require quite a bit of support. Most structures have support
routines in src/backend/nodes used to create, copy, read, and output
routines in src/backend/nodes used to create, copy, read, and output
those structures (in particular, the files copyfuncs.c and
those structures (in particular, the files copyfuncs.c and
...
...
This diff is collapsed.
Click to expand it.
doc/src/FAQ/FAQ_DEV.html
+
20
−
19
View file @
6488275b
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
<H1>
Developer's Frequently Asked Questions (FAQ) for
<H1>
Developer's Frequently Asked Questions (FAQ) for
PostgreSQL
</H1>
PostgreSQL
</H1>
<P>
Last updated: Sat May 5 0
0:09:15
EDT 2007
</P>
<P>
Last updated: Sat May 5 0
6:20:41
EDT 2007
</P>
<P>
Current maintainer: Bruce Momjian (
<A
href=
<P>
Current maintainer: Bruce Momjian (
<A
href=
"mailto:bruce@momjian.us"
>
bruce@momjian.us
</A>
)
<BR>
"mailto:bruce@momjian.us"
>
bruce@momjian.us
</A>
)
<BR>
...
@@ -863,24 +863,25 @@
...
@@ -863,24 +863,25 @@
<DL>
<DL>
<DT>
lfirst(i), lfirst_int(i), lfirst_oid(i)
</DT>
<DT>
lfirst(i), lfirst_int(i), lfirst_oid(i)
</DT>
<DD>
return the data (a point, integer
and
OID respectively)
at
<DD>
return the data (a point
er
, integer
or
OID respectively)
of
list el
ement
<I>
i.
</I></DD>
list
c
el
l
<I>
i.
</I></DD>
<DT>
lnext(i)
</DT>
<DT>
lnext(i)
</DT>
<DD>
return the next list el
ement
after
<I>
i.
</I></DD>
<DD>
return the next list
c
el
l
after
<I>
i.
</I></DD>
<DT>
foreach(i, list)
</DT>
<DT>
foreach(i, list)
</DT>
<DD>
<DD>
loop through
<I>
list,
</I>
assigning each list el
ement
to
loop through
<I>
list,
</I>
assigning each list
c
el
l
to
<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
Cell
*,
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
snippet 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 *list;
<CODE>
List *list;
ListCell *i;
ListCell *i;
foreach(i, list)
foreach(i, list)
...
@@ -900,26 +901,26 @@
...
@@ -900,26 +901,26 @@
<DT>
lappend(list, node)
</DT>
<DT>
lappend(list, node)
</DT>
<DD>
add
<I>
node
</I>
to the end of
<I>
list.
</I>
This is more
<DD>
add
<I>
node
</I>
to the end of
<I>
list.
</I></DD>
expensive that lcons.
</DD>
<DT>
n
conc(list1, list2)
</DT>
<DT>
list_
conc
at
(list1, list2)
</DT>
<DD>
Concat
<I>
list2
</I>
on to the end of
<I>
list1.
</I></DD>
<DD>
Concat
enate
<I>
list2
</I>
on to the end of
<I>
list1.
</I></DD>
<DT>
length(list)
</DT>
<DT>
list_
length(list)
</DT>
<DD>
return the length of the
<I>
list.
</I></DD>
<DD>
return the length of the
<I>
list.
</I></DD>
<DT>
nth(i, list
)
</DT>
<DT>
list_nth(list, i
)
</DT>
<DD>
return the
<I>
i
</I>
'th element in
<I>
list.
</I></DD>
<DD>
return the
<I>
i
</I>
'th element in
<I>
list,
</I>
counting from zero.
</DD>
<DT>
lcons
i
, ...
</DT>
<DT>
lcons
_int
, ...
</DT>
<DD>
There are integer versions of these:
<I>
lcons
i
,
<DD>
There are integer versions of these:
<I>
lcons
_int
,
lappend
i
</I>
, etc. Also versions for OID lists:
<I>
lcons
o
,
lappend
_int
</I>
, etc. Also versions for OID lists:
<I>
lcons
_oid
,
lappend
o
</I>
, etc.
</DD>
lappend
_oid
</I>
, etc.
</DD>
</DL>
</DL>
</BLOCKQUOTE>
</BLOCKQUOTE>
You can print nodes easily inside
<I>
gdb.
</I>
First, to disable
You can print nodes easily inside
<I>
gdb.
</I>
First, to disable
...
@@ -944,7 +945,7 @@
...
@@ -944,7 +945,7 @@
<H3
id=
"item2.4"
>
2.4) I just added a field to a structure.
<H3
id=
"item2.4"
>
2.4) I just added a field to a structure.
What else should I do?
</H3>
What else should I do?
</H3>
<P>
The structures pass
ing
around
from
the parser, rewrite,
<P>
The structures pass
ed
around
in
the parser, rewrite
r
,
optimizer, and executor require quite a bit of support. Most
optimizer, and executor require quite a bit of support. Most
structures have support routines in
<I>
src/backend/nodes
</I>
used
structures have support routines in
<I>
src/backend/nodes
</I>
used
to create, copy, read, and output those structures (in particular,
to create, copy, read, and output those structures (in particular,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment