mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
Include the case-insensitive LIKE prototypes.
This commit is contained in:
parent
701de35a3f
commit
371a485dba
@ -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.131 2000/08/06 18:06:44 thomas Exp $
|
||||
* $Id: builtins.h,v 1.132 2000/08/07 01:43:35 thomas Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -433,10 +433,18 @@ extern Datum namelike(PG_FUNCTION_ARGS);
|
||||
extern Datum namenlike(PG_FUNCTION_ARGS);
|
||||
extern Datum namelike_escape(PG_FUNCTION_ARGS);
|
||||
extern Datum namenlike_escape(PG_FUNCTION_ARGS);
|
||||
extern Datum inamelike(PG_FUNCTION_ARGS);
|
||||
extern Datum inamenlike(PG_FUNCTION_ARGS);
|
||||
extern Datum inamelike_escape(PG_FUNCTION_ARGS);
|
||||
extern Datum inamenlike_escape(PG_FUNCTION_ARGS);
|
||||
extern Datum textlike(PG_FUNCTION_ARGS);
|
||||
extern Datum textnlike(PG_FUNCTION_ARGS);
|
||||
extern Datum textlike_escape(PG_FUNCTION_ARGS);
|
||||
extern Datum textnlike_escape(PG_FUNCTION_ARGS);
|
||||
extern Datum itextlike(PG_FUNCTION_ARGS);
|
||||
extern Datum itextnlike(PG_FUNCTION_ARGS);
|
||||
extern Datum itextlike_escape(PG_FUNCTION_ARGS);
|
||||
extern Datum itextnlike_escape(PG_FUNCTION_ARGS);
|
||||
|
||||
/* oracle_compat.c */
|
||||
extern Datum lower(PG_FUNCTION_ARGS);
|
||||
|
Loading…
Reference in New Issue
Block a user