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
1f7ba1eb
Commit
1f7ba1eb
authored
Mar 28, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some bogosity in the tutorial examples.
parent
081cba45
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
31 deletions
+23
-31
src/tutorial/Makefile
src/tutorial/Makefile
+3
-13
src/tutorial/complex.source
src/tutorial/complex.source
+15
-13
src/tutorial/funcs.source
src/tutorial/funcs.source
+5
-5
No files found.
src/tutorial/Makefile
View file @
1f7ba1eb
...
...
@@ -4,22 +4,14 @@
# Makefile for tutorial
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.
8 1998/03/01 04:52:55 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.
9 2000/03/28 02:49:19 tgl
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
..
include
..
/Makefile.global
include
$(SRCDIR)
/Makefile.global
CFLAGS
+=
-I
$(LIBPQDIR)
-I
../../include
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef
KRBVERS
LDFLAGS
+=
$(KRBLIBS)
CFLAGS
+=
$(KRBFLAGS)
endif
CFLAGS
+=
-I
$(SRCDIR)
/include
$(CFLAGS_SL)
#
# DLOBJS is the dynamically-loaded object files. The "funcs" queries
...
...
@@ -42,7 +34,5 @@ all: $(DLOBJS) $(QUERIES)
-e
"s:_DLSUFFIX_:
$(DLSUFFIX)
:g"
\
-e
"s/_USER_/
$$
USER/g"
<
$<
>
$@
funcs.sql
:
$(DLOBJS)
clean
:
rm
-f
$(DLOBJS)
$(QUERIES)
src/tutorial/complex.source
View file @
1f7ba1eb
...
...
@@ -7,7 +7,7 @@
--
-- Copyright (c) 1994, Regents of the University of California
--
-- $Id: complex.source,v 1.
6 2000/01/24 07:16:48
tgl Exp $
-- $Id: complex.source,v 1.
7 2000/03/28 02:49:19
tgl Exp $
--
---------------------------------------------------------------------------
...
...
@@ -18,7 +18,7 @@
-- called 'complex' which represents complex numbers.
-----------------------------
-- Assume the user defined functions are in _OBJWD_/complex
.so
-- Assume the user defined functions are in _OBJWD_/complex
_DLSUFFIX_
-- Look at $PWD/complex.c for the source.
-- the input function 'complex_in' takes a null-terminated string (the
...
...
@@ -28,7 +28,7 @@
CREATE FUNCTION complex_in(opaque)
RETURNS complex
AS '_OBJWD_/complex
.so
'
AS '_OBJWD_/complex
_DLSUFFIX_
'
LANGUAGE 'c';
-- the output function 'complex_out' takes the internal representation and
...
...
@@ -36,7 +36,7 @@ CREATE FUNCTION complex_in(opaque)
CREATE FUNCTION complex_out(opaque)
RETURNS opaque
AS '_OBJWD_/complex
.so
'
AS '_OBJWD_/complex
_DLSUFFIX_
'
LANGUAGE 'c';
-- now, we can create the type. The internallength specifies the size of the
...
...
@@ -80,7 +80,7 @@ SELECT * FROM test_complex;
-- first, define a function complex_add (also in complex.c)
CREATE FUNCTION complex_add(complex, complex)
RETURNS complex
AS '_OBJWD_/complex
.so
'
AS '_OBJWD_/complex
_DLSUFFIX_
'
LANGUAGE 'c';
-- we can now define the operator. We show a binary operator here but you
...
...
@@ -138,15 +138,15 @@ SELECT 'READ ABOVE!' AS STOP;
-- first, define the required operators
CREATE FUNCTION complex_abs_lt(complex, complex) RETURNS bool
AS '_OBJWD_/complex
.so
' LANGUAGE 'c';
AS '_OBJWD_/complex
_DLSUFFIX_
' LANGUAGE 'c';
CREATE FUNCTION complex_abs_le(complex, complex) RETURNS bool
AS '_OBJWD_/complex
.so
' LANGUAGE 'c';
AS '_OBJWD_/complex
_DLSUFFIX_
' LANGUAGE 'c';
CREATE FUNCTION complex_abs_eq(complex, complex) RETURNS bool
AS '_OBJWD_/complex
.so
' LANGUAGE 'c';
AS '_OBJWD_/complex
_DLSUFFIX_
' LANGUAGE 'c';
CREATE FUNCTION complex_abs_ge(complex, complex) RETURNS bool
AS '_OBJWD_/complex
.so
' LANGUAGE 'c';
AS '_OBJWD_/complex
_DLSUFFIX_
' LANGUAGE 'c';
CREATE FUNCTION complex_abs_gt(complex, complex) RETURNS bool
AS '_OBJWD_/complex
.so
' LANGUAGE 'c';
AS '_OBJWD_/complex
_DLSUFFIX_
' LANGUAGE 'c';
CREATE OPERATOR < (
leftarg = complex, rightarg = complex, procedure = complex_abs_lt,
...
...
@@ -169,9 +169,11 @@ CREATE OPERATOR > (
restrict = scalargtsel, join = scalargtjoinsel
);
INSERT INTO pg_opclass VALUES ('complex_abs_ops');
INSERT INTO pg_opclass (opcname, opcdeftype)
SELECT 'complex_abs_ops', oid FROM pg_type WHERE typname = 'complex';
SELECT oid, opcname FROM pg_opclass WHERE opcname = 'complex_abs_ops';
SELECT oid, opcname, opcdeftype
FROM pg_opclass WHERE opcname = 'complex_abs_ops';
SELECT o.oid AS opoid, o.oprname
INTO TABLE complex_ops_tmp
...
...
@@ -214,7 +216,7 @@ INSERT INTO pg_amop (amopid, amopclaid, amopopr, amopstrategy)
--
CREATE FUNCTION complex_abs_cmp(complex, complex) RETURNS int4
AS '_OBJWD_/complex
.so
' LANGUAGE 'c';
AS '_OBJWD_/complex
_DLSUFFIX_
' LANGUAGE 'c';
SELECT oid, proname FROM pg_proc WHERE proname = 'complex_abs_cmp';
...
...
src/tutorial/funcs.source
View file @
1f7ba1eb
...
...
@@ -6,7 +6,7 @@
--
-- Copyright (c) 1994-5, Regents of the University of California
--
-- $Id: funcs.source,v 1.
3 1999/03/14 15:22:15 momjian
Exp $
-- $Id: funcs.source,v 1.
4 2000/03/28 02:49:19 tgl
Exp $
--
---------------------------------------------------------------------------
...
...
@@ -126,16 +126,16 @@ SELECT name(high_pay()) AS overpaid;
-----------------------------
CREATE FUNCTION add_one(int4) RETURNS int4
AS '_OBJWD_/funcs
.so
' LANGUAGE 'c';
AS '_OBJWD_/funcs
_DLSUFFIX_
' LANGUAGE 'c';
CREATE FUNCTION makepoint(point, point) RETURNS point
AS '_OBJWD_/funcs
.so
' LANGUAGE 'c';
AS '_OBJWD_/funcs
_DLSUFFIX_
' LANGUAGE 'c';
CREATE FUNCTION copytext(text) RETURNS text
AS '_OBJWD_/funcs
.so
' LANGUAGE 'c';
AS '_OBJWD_/funcs
_DLSUFFIX_
' LANGUAGE 'c';
CREATE FUNCTION c_overpaid(EMP, int4) RETURNS bool
AS '_OBJWD_/funcs
.so
' LANGUAGE 'c';
AS '_OBJWD_/funcs
_DLSUFFIX_
' LANGUAGE 'c';
SELECT add_one(3) AS four;
...
...
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