Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
371a485d
Commit
371a485d
authored
24 years ago
by
Thomas G. Lockhart
Browse files
Options
Downloads
Patches
Plain Diff
Include the case-insensitive LIKE prototypes.
parent
701de35a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/utils/builtins.h
+9
-1
9 additions, 1 deletion
src/include/utils/builtins.h
with
9 additions
and
1 deletion
src/include/utils/builtins.h
+
9
−
1
View file @
371a485d
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: builtins.h,v 1.13
1
2000/08/0
6 18:06:44
thomas Exp $
* $Id: builtins.h,v 1.13
2
2000/08/0
7 01:43:35
thomas Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -433,10 +433,18 @@ extern Datum namelike(PG_FUNCTION_ARGS);
...
@@ -433,10 +433,18 @@ extern Datum namelike(PG_FUNCTION_ARGS);
extern
Datum
namenlike
(
PG_FUNCTION_ARGS
);
extern
Datum
namenlike
(
PG_FUNCTION_ARGS
);
extern
Datum
namelike_escape
(
PG_FUNCTION_ARGS
);
extern
Datum
namelike_escape
(
PG_FUNCTION_ARGS
);
extern
Datum
namenlike_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
textlike
(
PG_FUNCTION_ARGS
);
extern
Datum
textnlike
(
PG_FUNCTION_ARGS
);
extern
Datum
textnlike
(
PG_FUNCTION_ARGS
);
extern
Datum
textlike_escape
(
PG_FUNCTION_ARGS
);
extern
Datum
textlike_escape
(
PG_FUNCTION_ARGS
);
extern
Datum
textnlike_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 */
/* oracle_compat.c */
extern
Datum
lower
(
PG_FUNCTION_ARGS
);
extern
Datum
lower
(
PG_FUNCTION_ARGS
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment