1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Change atttypmod from int16 to int32, for Thomas.

This commit is contained in:
Bruce Momjian
1998-07-12 21:29:40 +00:00
parent 647bbfb086
commit 683f399391
23 changed files with 67 additions and 67 deletions

View File

@ -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);