mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Type lztext is toast.
(Sorry, couldn't help it...) Removed type filename as well, since it's unused and probably useless. INITDB FORCED, because pg_rewrite columns are now plain text again.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: builtins.h,v 1.126 2000/07/29 18:46:05 tgl Exp $
|
||||
* $Id: builtins.h,v 1.127 2000/07/30 22:14:04 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -18,7 +18,6 @@
|
||||
#include "storage/itemptr.h"
|
||||
#include "utils/inet.h"
|
||||
#include "utils/numeric.h"
|
||||
#include "utils/lztext.h"
|
||||
|
||||
/*
|
||||
* Defined in adt/
|
||||
@ -562,21 +561,6 @@ extern Datum int2_sum(PG_FUNCTION_ARGS);
|
||||
extern Datum int4_sum(PG_FUNCTION_ARGS);
|
||||
extern Datum int8_sum(PG_FUNCTION_ARGS);
|
||||
|
||||
/* lztext.c */
|
||||
extern lztext *lztextin(char *str);
|
||||
extern char *lztextout(lztext *lz);
|
||||
extern text *lztext_text(lztext *lz);
|
||||
extern Datum text_lztext(PG_FUNCTION_ARGS);
|
||||
extern int32 lztextlen(lztext *lz);
|
||||
extern int32 lztextoctetlen(lztext *lz);
|
||||
extern int32 lztext_cmp(lztext *lz1, lztext *lz2);
|
||||
extern bool lztext_eq(lztext *lz1, lztext *lz2);
|
||||
extern bool lztext_ne(lztext *lz1, lztext *lz2);
|
||||
extern bool lztext_gt(lztext *lz1, lztext *lz2);
|
||||
extern bool lztext_ge(lztext *lz1, lztext *lz2);
|
||||
extern bool lztext_lt(lztext *lz1, lztext *lz2);
|
||||
extern bool lztext_le(lztext *lz1, lztext *lz2);
|
||||
|
||||
/* ri_triggers.c */
|
||||
extern Datum RI_FKey_check_ins(PG_FUNCTION_ARGS);
|
||||
extern Datum RI_FKey_check_upd(PG_FUNCTION_ARGS);
|
||||
|
Reference in New Issue
Block a user