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
2d4c6cab
Commit
2d4c6cab
authored
26 years ago
by
Thomas G. Lockhart
Browse files
Options
Downloads
Patches
Plain Diff
Define new routines oper_exact() and oper_inexact().
Add coerce_target_expr().
parent
d2404c17
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/include/parser/parse_oper.h
+4
-1
4 additions, 1 deletion
src/include/parser/parse_oper.h
src/include/parser/parse_target.h
+5
-2
5 additions, 2 deletions
src/include/parser/parse_target.h
with
9 additions
and
3 deletions
src/include/parser/parse_oper.h
+
4
−
1
View file @
2d4c6cab
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parse_oper.h,v 1.
4
1998/0
2
/2
6 04:42:47 momjian
Exp $
* $Id: parse_oper.h,v 1.
5
1998/0
5
/2
9 14:07:50 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -24,4 +24,7 @@ extern Operator oper(char *op, Oid arg1, Oid arg2, bool noWarnings);
extern
Operator
right_oper
(
char
*
op
,
Oid
arg
);
extern
Operator
left_oper
(
char
*
op
,
Oid
arg
);
extern
Operator
oper_exact
(
char
*
op
,
Oid
arg1
,
Oid
arg2
,
Node
**
ltree
,
Node
**
rtree
,
bool
noWarnings
);
extern
Operator
oper_inexact
(
char
*
op
,
Oid
arg1
,
Oid
arg2
,
Node
**
ltree
,
Node
**
rtree
,
bool
noWarnings
);
#endif
/* PARSE_OPER_H */
This diff is collapsed.
Click to expand it.
src/include/parser/parse_target.h
+
5
−
2
View file @
2d4c6cab
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parse_target.h,v 1.
5
1998/05/2
1 03:53:51 scrappy
Exp $
* $Id: parse_target.h,v 1.
6
1998/05/2
9 14:07:50 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -25,6 +25,9 @@
extern
List
*
transformTargetList
(
ParseState
*
pstate
,
List
*
targetlist
);
extern
List
*
makeTargetNames
(
ParseState
*
pstate
,
List
*
cols
);
extern
void
transformTargetId
(
ParseState
*
pstate
,
Ident
*
ident
,
TargetEntry
*
tent
,
char
*
resname
,
int16
resjunk
);
TargetEntry
*
tent
,
char
*
resname
,
int16
resjunk
);
extern
Node
*
coerce_target_expr
(
ParseState
*
pstate
,
Node
*
expr
,
Oid
type_id
,
Oid
attrtype
);
#endif
/* PARSE_TARGET_H */
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