File tree Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,12 @@ sets the default cost for heap searches for the optimizer.
174
174
sets the default cost for indexed searches for the optimizer.
175
175
</Para>
176
176
</ListItem>
177
+ <ListItem>
178
+ <Para>
179
+ <Acronym>PGQUERY_LIMIT</Acronym>
180
+ sets the maximum number of rows returned by a query.
181
+ </Para>
182
+ </ListItem>
177
183
</ItemizedList>
178
184
</Para>
179
185
@@ -581,4 +587,4 @@ be silently truncated.
581
587
<para>
582
588
The <classname>PGlobj</classname> class is largely untested. Use with caution.
583
589
584
- </chapter>
590
+ </chapter>
Original file line number Diff line number Diff line change @@ -1479,6 +1479,12 @@ sets the default cost for heap searches for the optimizer.
1479
1479
sets the default cost for indexed searches for the optimizer.
1480
1480
</Para>
1481
1481
</ListItem>
1482
+ <ListItem>
1483
+ <Para>
1484
+ <Acronym>PGQUERY_LIMIT</Acronym>
1485
+ sets the maximum number of rows returned by a query.
1486
+ </Para>
1487
+ </ListItem>
1482
1488
</ItemizedList>
1483
1489
</Para>
1484
1490
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.85 1998/10/13 20:44:49 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.86 1998/10/14 05:31:48 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -142,6 +142,9 @@ static struct EnvironmentOptions
142
142
{
143
143
"PGGEQO" , "geqo"
144
144
},
145
+ {
146
+ "PGQUERY_LIMIT" , "query_limit"
147
+ },
145
148
{
146
149
NULL
147
150
}
Original file line number Diff line number Diff line change 1
1
.\" This is -*-nroff-*-
2
2
.\" XXX standard disclaimer belongs here....
3
- .\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.24 1998/08/15 16:36:21 thomas Exp $
3
+ .\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.25 1998/10/14 05:31:50 momjian Exp $
4
4
.TH LIBPQ INTRO 08/08/98 PostgreSQL PostgreSQL
5
5
.SH DESCRIPTION
6
6
Current documentation for this topic is available in the new Programmer's Guide
@@ -106,6 +106,10 @@ sets the default cost for heap searches for the optimizer.
106
106
\(bu
107
107
.B PGCOSTINDEX
108
108
sets the default cost for indexed searches for the optimizer.
109
+ \(bu
110
+ .B PGQUERY_LIMIT
111
+ sets the maximum number of rows returned by a query.
112
+ .sp
109
113
110
114
.PP
111
115
See the
You can’t perform that action at this time.
0 commit comments