From efb36d2be8272d03167fe4205b640129ffe583fb Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 12 Dec 1999 20:51:29 +0000 Subject: any_ordering_op()'s argument should be declared Oid not int. --- src/include/parser/parse_oper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/parser/parse_oper.h') diff --git a/src/include/parser/parse_oper.h b/src/include/parser/parse_oper.h index 7c3f3b54c77..298166ac7ee 100644 --- a/src/include/parser/parse_oper.h +++ b/src/include/parser/parse_oper.h @@ -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:38 tgl Exp $ + * $Id: parse_oper.h,v 1.10 1999/12/12 20:51:28 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); -- cgit v1.2.3