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
b913dd1f
Commit
b913dd1f
authored
Mar 09, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add prototypes for oracle-compat functions. Rename geo-*.c adt to geo_*.c
parent
d8023a00
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
6 deletions
+19
-6
src/backend/utils/adt/Makefile
src/backend/utils/adt/Makefile
+2
-2
src/backend/utils/adt/geo_ops.c
src/backend/utils/adt/geo_ops.c
+1
-1
src/backend/utils/adt/geo_selfuncs.c
src/backend/utils/adt/geo_selfuncs.c
+1
-1
src/backend/utils/adt/oracle_compat.c
src/backend/utils/adt/oracle_compat.c
+2
-1
src/include/utils/builtins.h
src/include/utils/builtins.h
+13
-1
No files found.
src/backend/utils/adt/Makefile
View file @
b913dd1f
...
...
@@ -4,7 +4,7 @@
# Makefile for utils/adt
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.
4 1997/03/04 05:32:04 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.
5 1997/03/09 20:40:50 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -18,7 +18,7 @@ INCLUDE_OPT = -I../.. \
CFLAGS
+=
$(INCLUDE_OPT)
OBJS
=
acl.o arrayfuncs.o arrayutils.o bool.o char.o chunk.o date.o
\
datum.o dt.o filename.o float.o geo
-ops.o geo-
selfuncs.o int.o
\
datum.o dt.o filename.o float.o geo
_ops.o geo_
selfuncs.o int.o
\
misc.o nabstime.o name.o not_in.o numutils.o oid.o
\
oidname.o oidint2.o oidint4.o oracle_compat.o
\
regexp.o regproc.o selfuncs.o
\
...
...
src/backend/utils/adt/geo
-
ops.c
→
src/backend/utils/adt/geo
_
ops.c
View file @
b913dd1f
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/
Attic/geo-ops.c,v 1.3 1996/11/03 06:53:06 scrappy
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/
geo_ops.c,v 1.1 1997/03/09 20:40:55 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
src/backend/utils/adt/geo
-
selfuncs.c
→
src/backend/utils/adt/geo
_
selfuncs.c
View file @
b913dd1f
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/
Attic/geo-selfuncs.c,v 1.2 1996/11/10 03:03:13
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/
geo_selfuncs.c,v 1.1 1997/03/09 20:40:57
momjian Exp $
*
* XXX These are totally bogus.
*
...
...
src/backend/utils/adt/oracle_compat.c
View file @
b913dd1f
/*
* Edmund Mergl <E.Mergl@bawue.de>
*
* $Id: oracle_compat.c,v 1.
1 1997/03/04 05:32:06 scrappy
Exp $
* $Id: oracle_compat.c,v 1.
2 1997/03/09 20:40:58 momjian
Exp $
*
*/
...
...
@@ -9,6 +9,7 @@
#include <ctype.h>
#include "postgres.h"
#include "utils/builtins.h"
/* where function declarations go */
/********************************************************************
*
...
...
src/include/utils/builtins.h
View file @
b913dd1f
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: builtins.h,v 1.
9 1997/02/19 20:11:05
momjian Exp $
* $Id: builtins.h,v 1.
10 1997/03/09 20:41:02
momjian Exp $
*
* NOTES
* This should normally only be included by fmgr.h.
...
...
@@ -486,6 +486,18 @@ extern bool textlike(struct varlena *s, struct varlena *p);
extern
bool
textnlike
(
struct
varlena
*
s
,
struct
varlena
*
p
);
extern
int
like
(
char
*
text
,
char
*
p
);
/* oracle_compat.c */
extern
text
*
lower
(
text
*
string
);
extern
text
*
upper
(
text
*
string
);
extern
text
*
initcap
(
text
*
string
);
extern
text
*
lpad
(
text
*
string1
,
int4
len
,
text
*
string2
);
extern
text
*
rpad
(
text
*
string1
,
int4
len
,
text
*
string2
);
extern
text
*
ltrim
(
text
*
string
,
text
*
set
);
extern
text
*
rtrim
(
text
*
string
,
text
*
set
);
extern
text
*
substr
(
text
*
string
,
int4
m
,
int4
n
);
extern
text
*
translate
(
text
*
string
,
char
from
,
char
to
);
/* acl.c */
#endif
/* BUILTINS_H */
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