diff options
author | Bruce Momjian | 1998-10-14 05:31:50 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-10-14 05:31:50 +0000 |
commit | aa3a1f46dfab92aa3205f0c6cbf2697d9ac95adc (patch) | |
tree | aab7d675c1065e2efc2c56137d03ebc6525bb184 /src/interfaces | |
parent | 8cec4cf91b844e8ff3e19a444ddfa750ea4dba11 (diff) |
New PGQUERY_LIMIT environment variable, and doc changes.
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 998ced9876b..9e5b76bab5d 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.85 1998/10/13 20:44:49 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.86 1998/10/14 05:31:48 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -143,6 +143,9 @@ static struct EnvironmentOptions "PGGEQO", "geqo" }, { + "PGQUERY_LIMIT", "query_limit" + }, + { NULL } }; |