Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
efb36d2b
Commit
efb36d2b
authored
Dec 12, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
any_ordering_op()'s argument should be declared Oid not int.
parent
cb00b7fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/parser/parse_oper.c
src/backend/parser/parse_oper.c
+2
-2
src/include/parser/parse_oper.h
src/include/parser/parse_oper.h
+2
-2
No files found.
src/backend/parser/parse_oper.c
View file @
efb36d2b
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.3
3 1999/11/22 17:56:21 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.3
4 1999/12/12 20:51:29 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -36,7 +36,7 @@ static int unary_oper_get_candidates(char *op,
static
void
op_error
(
char
*
op
,
Oid
arg1
,
Oid
arg2
);
Oid
any_ordering_op
(
int
restype
)
any_ordering_op
(
Oid
restype
)
{
Operator
order_op
;
Oid
order_opid
;
...
...
src/include/parser/parse_oper.h
View file @
efb36d2b
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parse_oper.h,v 1.
9 1999/08/23 23:48:3
8 tgl Exp $
* $Id: parse_oper.h,v 1.
10 1999/12/12 20:51:2
8 tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -17,7 +17,7 @@
typedef
HeapTuple
Operator
;
extern
Oid
any_ordering_op
(
int
restype
);
extern
Oid
any_ordering_op
(
Oid
restype
);
extern
Oid
oprid
(
Operator
op
);
extern
Operator
oper
(
char
*
op
,
Oid
arg1
,
Oid
arg2
,
bool
noWarnings
);
extern
Operator
right_oper
(
char
*
op
,
Oid
arg
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment