mirror of
https://github.com/postgres/postgres.git
synced 2025-08-25 20:23:07 +03:00
COPY BINARY uses the new binary I/O routines. Update a few more datatypes
so that COPY BINARY regression test passes.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: builtins.h,v 1.213 2003/05/09 15:44:42 tgl Exp $
|
||||
* $Id: builtins.h,v 1.214 2003/05/09 21:19:50 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -181,6 +181,8 @@ extern Datum int2shr(PG_FUNCTION_ARGS);
|
||||
/* name.c */
|
||||
extern Datum namein(PG_FUNCTION_ARGS);
|
||||
extern Datum nameout(PG_FUNCTION_ARGS);
|
||||
extern Datum namerecv(PG_FUNCTION_ARGS);
|
||||
extern Datum namesend(PG_FUNCTION_ARGS);
|
||||
extern Datum nameeq(PG_FUNCTION_ARGS);
|
||||
extern Datum namene(PG_FUNCTION_ARGS);
|
||||
extern Datum namelt(PG_FUNCTION_ARGS);
|
||||
@@ -222,8 +224,12 @@ extern int extra_float_digits;
|
||||
|
||||
extern Datum float4in(PG_FUNCTION_ARGS);
|
||||
extern Datum float4out(PG_FUNCTION_ARGS);
|
||||
extern Datum float4recv(PG_FUNCTION_ARGS);
|
||||
extern Datum float4send(PG_FUNCTION_ARGS);
|
||||
extern Datum float8in(PG_FUNCTION_ARGS);
|
||||
extern Datum float8out(PG_FUNCTION_ARGS);
|
||||
extern Datum float8recv(PG_FUNCTION_ARGS);
|
||||
extern Datum float8send(PG_FUNCTION_ARGS);
|
||||
extern Datum float4abs(PG_FUNCTION_ARGS);
|
||||
extern Datum float4um(PG_FUNCTION_ARGS);
|
||||
extern Datum float4up(PG_FUNCTION_ARGS);
|
||||
|
Reference in New Issue
Block a user