diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/access/tupdesc.h | 4 | ||||
| -rw-r--r-- | src/include/catalog/pg_attribute.h | 8 | ||||
| -rw-r--r-- | src/include/nodes/makefuncs.h | 6 | ||||
| -rw-r--r-- | src/include/nodes/parsenodes.h | 4 | ||||
| -rw-r--r-- | src/include/nodes/primnodes.h | 6 | ||||
| -rw-r--r-- | src/include/parser/parse_expr.h | 4 | ||||
| -rw-r--r-- | src/include/parser/parse_type.h | 4 | ||||
| -rw-r--r-- | src/include/utils/array.h | 4 | ||||
| -rw-r--r-- | src/include/utils/builtins.h | 6 | ||||
| -rw-r--r-- | src/include/utils/lsyscache.h | 4 |
10 files changed, 25 insertions, 25 deletions
diff --git a/src/include/access/tupdesc.h b/src/include/access/tupdesc.h index 276a83b86b..add88f5e77 100644 --- a/src/include/access/tupdesc.h +++ b/src/include/access/tupdesc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: tupdesc.h,v 1.16 1998/02/26 04:40:31 momjian Exp $ + * $Id: tupdesc.h,v 1.17 1998/07/12 21:29:26 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -70,7 +70,7 @@ TupleDescInitEntry(TupleDesc desc, AttrNumber attributeNumber, char *attributeName, Oid typeid, - int16 typmod, + int32 typmod, int attdim, bool attisset); diff --git a/src/include/catalog/pg_attribute.h b/src/include/catalog/pg_attribute.h index 526db5f5f6..09a424f143 100644 --- a/src/include/catalog/pg_attribute.h +++ b/src/include/catalog/pg_attribute.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_attribute.h,v 1.32 1998/03/07 04:49:57 momjian Exp $ + * $Id: pg_attribute.h,v 1.33 1998/07/12 21:29:28 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -86,7 +86,7 @@ CATALOG(pg_attribute) BOOTSTRAP * This speeds up the attribute walking process. */ - int2 atttypmod; + int4 atttypmod; /* * atttypmod records type-specific modifications supplied at table @@ -323,7 +323,7 @@ DATA(insert OID = 0 ( 1261 cmax 29 0 4 -6 0 -1 -1 t f i f f)); { 1249, {"attnum"}, 21, 0, 2, 6, 0, -1, -1, '\001', '\0', 's', '\0', '\0' }, \ { 1249, {"attnelems"}, 23, 0, 4, 7, 0, -1, -1, '\001', '\0', 'i', '\0', '\0' }, \ { 1249, {"attcacheoff"}, 23, 0, 4, 8, 0, -1, -1, '\001', '\0', 'i', '\0', '\0' }, \ -{ 1249, {"atttypmod"}, 21, 0, 2, 9, 0, -1, -1, '\001', '\0', 's', '\0', '\0' }, \ +{ 1249, {"atttypmod"}, 21, 0, 4, 9, 0, -1, -1, '\001', '\0', 's', '\0', '\0' }, \ { 1249, {"attbyval"}, 16, 0, 1, 10, 0, -1, -1, '\001', '\0', 'c', '\0', '\0' }, \ { 1249, {"attisset"}, 16, 0, 1, 11, 0, -1, -1, '\001', '\0', 'c', '\0', '\0' }, \ { 1249, {"attalign"}, 18, 0, 1, 12, 0, -1, -1, '\001', '\0', 'c', '\0', '\0' }, \ @@ -338,7 +338,7 @@ DATA(insert OID = 0 ( 1249 attlen 21 0 2 5 0 -1 -1 t f s f f)); DATA(insert OID = 0 ( 1249 attnum 21 0 2 6 0 -1 -1 t f s f f)); DATA(insert OID = 0 ( 1249 attnelems 23 0 4 7 0 -1 -1 t f i f f)); DATA(insert OID = 0 ( 1249 attcacheoff 23 0 4 8 0 -1 -1 t f i f f)); -DATA(insert OID = 0 ( 1249 atttypmod 21 0 2 9 0 -1 -1 t f s f f)); +DATA(insert OID = 0 ( 1249 atttypmod 21 0 4 9 0 -1 -1 t f s f f)); DATA(insert OID = 0 ( 1249 attbyval 16 0 1 10 0 -1 -1 t f c f f)); DATA(insert OID = 0 ( 1249 attisset 16 0 1 11 0 -1 -1 t f c f f)); DATA(insert OID = 0 ( 1249 attalign 18 0 1 12 0 -1 -1 t f c f f)); diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h index 9ab40e1a2d..62ed3d76b8 100644 --- a/src/include/nodes/makefuncs.h +++ b/src/include/nodes/makefuncs.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: makefuncs.h,v 1.11 1998/02/26 04:41:56 momjian Exp $ + * $Id: makefuncs.h,v 1.12 1998/07/12 21:29:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -27,7 +27,7 @@ extern Var * makeVar(Index varno, AttrNumber varattno, Oid vartype, - int16 vartypmod, + int32 vartypmod, Index varlevelsup, Index varnoold, AttrNumber varoattno); @@ -35,7 +35,7 @@ makeVar(Index varno, extern Resdom * makeResdom(AttrNumber resno, Oid restype, - int16 restypmod, + int32 restypmod, char *resname, Index reskey, Oid reskeyop, diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 1513773139..95a014409d 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.49 1998/02/26 04:41:59 momjian Exp $ + * $Id: parsenodes.h,v 1.50 1998/07/12 21:29:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -644,7 +644,7 @@ typedef struct TypeName char *name; /* name of the type */ bool timezone; /* timezone specified? */ bool setof; /* is a set? */ - int16 typmod; /* type modifier */ + int32 typmod; /* type modifier */ List *arrayBounds; /* array bounds */ } TypeName; diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index e8c7a95747..1a62b38879 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: primnodes.h,v 1.21 1998/02/26 04:42:02 momjian Exp $ + * $Id: primnodes.h,v 1.22 1998/07/12 21:29:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -41,7 +41,7 @@ typedef struct Resdom NodeTag type; AttrNumber resno; Oid restype; - int16 restypmod; + int32 restypmod; char *resname; Index reskey; Oid reskeyop; @@ -124,7 +124,7 @@ typedef struct Var Index varno; AttrNumber varattno; Oid vartype; - int16 vartypmod; + int32 vartypmod; Index varlevelsup; /* erased by upper optimizer */ Index varnoold; /* only used by optimizer */ AttrNumber varoattno; /* only used by optimizer */ diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h index 1a990e4518..9e02458c8e 100644 --- a/src/include/parser/parse_expr.h +++ b/src/include/parser/parse_expr.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_expr.h,v 1.8 1998/02/26 04:42:41 momjian Exp $ + * $Id: parse_expr.h,v 1.9 1998/07/12 21:29:34 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -21,6 +21,6 @@ extern Node *transformExpr(ParseState *pstate, Node *expr, int precedence); extern Node *transformIdent(ParseState *pstate, Node *expr, int precedence); extern Oid exprType(Node *expr); -extern Node *parser_typecast2(Node *expr, Oid exprType, Type tp, int16 attypmod); +extern Node *parser_typecast2(Node *expr, Oid exprType, Type tp, int32 attypmod); #endif /* PARSE_EXPR_H */ diff --git a/src/include/parser/parse_type.h b/src/include/parser/parse_type.h index 12b489839a..7ea8e38329 100644 --- a/src/include/parser/parse_type.h +++ b/src/include/parser/parse_type.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_type.h,v 1.6 1998/02/26 04:42:50 momjian Exp $ + * $Id: parse_type.h,v 1.7 1998/07/12 21:29:35 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -26,7 +26,7 @@ extern int16 typeLen(Type t); extern bool typeByVal(Type t); extern char *typeTypeName(Type t); extern char typeTypeFlag(Type t); -extern char *stringTypeString(Type tp, char *string, int16 atttypmod); +extern char *stringTypeString(Type tp, char *string, int32 atttypmod); extern Oid typeidOutfunc(Oid type_id); extern Oid typeidTypeRelid(Oid type_id); extern Oid typeTypeRelid(Type typ); diff --git a/src/include/utils/array.h b/src/include/utils/array.h index 86603cd453..c5b8804151 100644 --- a/src/include/utils/array.h +++ b/src/include/utils/array.h @@ -10,7 +10,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: array.h,v 1.11 1998/02/26 04:43:45 momjian Exp $ + * $Id: array.h,v 1.12 1998/07/12 21:29:38 momjian Exp $ * * NOTES * XXX the data array should be LONGALIGN'd -- notice that the array @@ -114,7 +114,7 @@ typedef struct /* * prototypes for functions defined in arrayfuncs.c */ -extern char *array_in(char *string, Oid element_type, int16 typmod); +extern char *array_in(char *string, Oid element_type, int32 typmod); extern char *array_out(ArrayType *v, Oid element_type); extern char *array_dims(ArrayType *v, bool *isNull); extern Datum diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index c672e42c27..e359c526f0 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.45 1998/07/08 14:10:30 thomas Exp $ + * $Id: builtins.h,v 1.46 1998/07/12 21:29:38 momjian Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -395,7 +395,7 @@ DateTime *timestamp_datetime(time_t timestamp); time_t datetime_timestamp(DateTime *datetime); /* varchar.c */ -extern char *bpcharin(char *s, int dummy, int16 atttypmod); +extern char *bpcharin(char *s, int dummy, int32 atttypmod); extern char *bpcharout(char *s); extern char *bpchar(char *s, int32 slen); extern char *char_bpchar(int32 c); @@ -413,7 +413,7 @@ extern int32 bpcharlen(char *arg); extern int32 bpcharoctetlen(char *arg); extern uint32 hashbpchar(struct varlena * key); -extern char *varcharin(char *s, int dummy, int16 atttypmod); +extern char *varcharin(char *s, int dummy, int32 atttypmod); extern char *varcharout(char *s); extern char *varchar(char *s, int32 slen); extern bool varchareq(char *arg1, char *arg2); diff --git a/src/include/utils/lsyscache.h b/src/include/utils/lsyscache.h index 6bc94a874c..e7408dd34f 100644 --- a/src/include/utils/lsyscache.h +++ b/src/include/utils/lsyscache.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: lsyscache.h,v 1.10 1998/02/26 04:44:07 momjian Exp $ + * $Id: lsyscache.h,v 1.11 1998/07/12 21:29:40 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -21,7 +21,7 @@ extern char *get_attname(Oid relid, AttrNumber attnum); extern AttrNumber get_attnum(Oid relid, char *attname); extern Oid get_atttype(Oid relid, AttrNumber attnum); extern bool get_attisset(Oid relid, char *attname); -extern int16 get_atttypmod(Oid relid, AttrNumber attnum); +extern int32 get_atttypmod(Oid relid, AttrNumber attnum); extern RegProcedure get_opcode(Oid opid); extern char *get_opname(Oid opid); extern bool |
