diff options
| author | Bruce Momjian <bruce@momjian.us> | 2006-07-26 00:34:48 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2006-07-26 00:34:48 +0000 |
| commit | 085e5596541bd894328b08f0e71a6eae3bf22034 (patch) | |
| tree | 6c693387bfa0fbdb81498a257fd7930f94076e4a /src/include/parser | |
| parent | 796de9c1ed3d2cfc074c3cdbe9a12c698cd53336 (diff) | |
| download | postgresql-085e5596541bd894328b08f0e71a6eae3bf22034.tar.gz | |
Change LIMIT/OFFSET to use int8
Dhanaraj M
Diffstat (limited to 'src/include/parser')
| -rw-r--r-- | src/include/parser/parse_coerce.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/parser/parse_coerce.h b/src/include/parser/parse_coerce.h index 0c46b32e05..a5afff496c 100644 --- a/src/include/parser/parse_coerce.h +++ b/src/include/parser/parse_coerce.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/parser/parse_coerce.h,v 1.63 2006/07/13 16:49:19 momjian Exp $ + * $PostgreSQL: pgsql/src/include/parser/parse_coerce.h,v 1.64 2006/07/26 00:34:48 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -57,7 +57,9 @@ extern Node *coerce_to_boolean(ParseState *pstate, Node *node, const char *constructName); extern Node *coerce_to_integer(ParseState *pstate, Node *node, const char *constructName); - +extern Node *coerce_to_integer64(ParseState *pstate, Node *node, + const char *constructName); + extern Oid select_common_type(List *typeids, const char *context); extern Node *coerce_to_common_type(ParseState *pstate, Node *node, Oid targetTypeId, |
