diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-07-08 14:18:45 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-07-08 14:18:45 +0000 |
commit | 33dd5c444faa87c5265206bd3ae34d2b890c9f28 (patch) | |
tree | d901961fbe56e3e253f4993c86cb1f005aad3106 /src/include/parser/parse_coerce.h | |
parent | bad339827e3291bba38b78f0c5f68b436a6b7d10 (diff) |
Include int8 as a built-in data type.
Merge "resjunk" handling with automatic type conversion
when selecting from another column.
Diffstat (limited to 'src/include/parser/parse_coerce.h')
-rw-r--r-- | src/include/parser/parse_coerce.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/parser/parse_coerce.h b/src/include/parser/parse_coerce.h index 39727e7964f..3b12054b6e0 100644 --- a/src/include/parser/parse_coerce.h +++ b/src/include/parser/parse_coerce.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_coerce.h,v 1.2 1998/05/29 14:02:28 thomas Exp $ + * $Id: parse_coerce.h,v 1.3 1998/07/08 14:18:45 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -39,8 +39,9 @@ typedef enum CATEGORY { || ((t) == VARCHAROID) \ || ((t) == TEXTOID) \ || ((t) == INT4OID) \ - || ((t) == DATETIMEOID) \ + || ((t) == INT8OID) \ || ((t) == FLOAT8OID) \ + || ((t) == DATETIMEOID) \ || ((t) == TIMESTAMPOID) \ || ((t) == ABSTIMEOID) \ || ((t) == RELTIMEOID) \ |