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
5a017b96
Commit
5a017b96
authored
Sep 27, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply contrib patch from Massimo
parent
12a93225
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
81 additions
and
8 deletions
+81
-8
contrib/Makefile
contrib/Makefile
+7
-0
contrib/array/Makefile
contrib/array/Makefile
+7
-0
contrib/array/array_iterator.c
contrib/array/array_iterator.c
+4
-1
contrib/array/array_iterator.doc
contrib/array/array_iterator.doc
+5
-0
contrib/datetime/Makefile
contrib/datetime/Makefile
+7
-0
contrib/datetime/datetime_functions.c
contrib/datetime/datetime_functions.c
+2
-2
contrib/datetime/datetime_functions.doc
contrib/datetime/datetime_functions.doc
+7
-0
contrib/miscutil/Makefile
contrib/miscutil/Makefile
+7
-0
contrib/miscutil/misc_utils.c
contrib/miscutil/misc_utils.c
+1
-1
contrib/miscutil/misc_utils.doc
contrib/miscutil/misc_utils.doc
+4
-0
contrib/string/Makefile
contrib/string/Makefile
+7
-0
contrib/string/string_io.c
contrib/string/string_io.c
+2
-2
contrib/string/string_io.doc
contrib/string/string_io.doc
+7
-0
contrib/userlock/Makefile
contrib/userlock/Makefile
+7
-0
contrib/userlock/user_locks.c
contrib/userlock/user_locks.c
+2
-2
contrib/userlock/user_locks.doc
contrib/userlock/user_locks.doc
+5
-0
No files found.
contrib/Makefile
View file @
5a017b96
...
...
@@ -30,6 +30,13 @@ install:
fi
;
\
done
install-doc
:
for
dir
in
*
;
do
\
if
[
-e
$$
dir
/Makefile
]
;
then
\
$(MAKE)
-C
$$
dir
$@
;
\
fi
;
\
done
||
exit
0
clean
:
for
dir
in
*
;
do
\
if
[
-e
$$
dir
/Makefile
]
;
then
\
...
...
contrib/array/Makefile
View file @
5a017b96
...
...
@@ -39,6 +39,13 @@ install: $(MODULE) $(SQLDEFS) $(MODDIR) $(SQLDIR)
strip
$(MODDIR)
/
$(MODULE)
cp
-p
$(SQLDEFS)
$(SQLDIR)
/
install-doc
:
if
[
-d
"
$(DOCDIR)
"
]
;
then
\
cp
-p
*
.doc
$(DOCDIR)
;
\
else
\
cp
-p
*
.doc
$(SQLDIR)
;
\
fi
$(MODDIR)
:
mkdir
-p
$@
...
...
contrib/array/array_iterator.c
View file @
5a017b96
...
...
@@ -6,9 +6,12 @@
* elements of the array and the value and compute a result as
* the logical OR or AND of the iteration results.
*
* Copyright (
c) 1997
, Massimo Dal Zotto <dz@cs.unitn.it>
* Copyright (
C) 1999
, Massimo Dal Zotto <dz@cs.unitn.it>
* ported to postgreSQL 6.3.2,added oid_functions, 18.1.1999,
* Tobias Gabele <gabele@wiz.uni-kassel.de>
*
* This software is distributed under the GNU General Public License
* either version 2, or (at your option) any later version.
*/
#include <ctype.h>
...
...
contrib/array/array_iterator.doc
View file @
5a017b96
Array iterator functions, by Massimo Dal Zotto <dz@cs.unitn.it>
Copyright (C) 1999, Massimo Dal Zotto <dz@cs.unitn.it>
This software is distributed under the GNU General Public License
either version 2, or (at your option) any later version.
This loadable module defines a new class of functions which take
an array and a scalar value, iterate a scalar operator over the
...
...
contrib/datetime/Makefile
View file @
5a017b96
...
...
@@ -39,6 +39,13 @@ install: $(MODULE) $(SQLDEFS) $(MODDIR) $(SQLDIR)
strip
$(MODDIR)
/
$(MODULE)
cp
-p
$(SQLDEFS)
$(SQLDIR)
/
install-doc
:
if
[
-d
"
$(DOCDIR)
"
]
;
then
\
cp
-p
*
.doc
$(DOCDIR)
;
\
else
\
cp
-p
*
.doc
$(SQLDIR)
;
\
fi
$(MODDIR)
:
mkdir
-p
$@
...
...
contrib/datetime/datetime_functions.c
View file @
5a017b96
...
...
@@ -3,9 +3,9 @@
*
* This file defines new functions for the time and date data types.
*
* Copyright (
c) 1998
, Massimo Dal Zotto <dz@cs.unitn.it>
* Copyright (
C) 1999
, Massimo Dal Zotto <dz@cs.unitn.it>
*
* This
fil
e is distributed under the GNU General Public License
* This
softwar
e is distributed under the GNU General Public License
* either version 2, or (at your option) any later version.
*/
...
...
contrib/datetime/datetime_functions.doc
View file @
5a017b96
Datetime functions.
Copyright (C) 1999, Massimo Dal Zotto <dz@cs.unitn.it>
This software is distributed under the GNU General Public License
either version 2, or (at your option) any later version.
I have written some new funtions for time and date data types which can
be used to extract hour,minutes,seconds from time values, and year,
month,day from a date. There is also a time_difference and functions
...
...
contrib/miscutil/Makefile
View file @
5a017b96
...
...
@@ -39,6 +39,13 @@ install: $(MODULE) $(SQLDEFS) $(MODDIR) $(SQLDIR)
strip
$(MODDIR)
/
$(MODULE)
cp
-p
$(SQLDEFS)
$(SQLDIR)
/
install-doc
:
if
[
-d
"
$(DOCDIR)
"
]
;
then
\
cp
-p
*
.doc
$(DOCDIR)
;
\
else
\
cp
-p
*
.doc
$(SQLDIR)
;
\
fi
$(MODDIR)
:
mkdir
-p
$@
...
...
contrib/miscutil/misc_utils.c
View file @
5a017b96
...
...
@@ -3,7 +3,7 @@
*
* This file defines miscellaneous PostgreSQL utility functions.
*
* Copyright (
c) 1998
, Massimo Dal Zotto <dz@cs.unitn.it>
* Copyright (
C) 1999
, Massimo Dal Zotto <dz@cs.unitn.it>
*
* This file is distributed under the GNU General Public License
* either version 2, or (at your option) any later version.
...
...
contrib/miscutil/misc_utils.doc
View file @
5a017b96
Miscellaneous utility functions for PostgreSQL.
Copyright (C) 1999, Massimo Dal Zotto <dz@cs.unitn.it>
This software is distributed under the GNU General Public License
either version 2, or (at your option) any later version.
query_limit(n)
...
...
contrib/string/Makefile
View file @
5a017b96
...
...
@@ -39,6 +39,13 @@ install: $(MODULE) $(SQLDEFS) $(MODDIR) $(SQLDIR)
strip
$(MODDIR)
/
$(MODULE)
cp
-p
$(SQLDEFS)
$(SQLDIR)
/
install-doc
:
if
[
-d
"
$(DOCDIR)
"
]
;
then
\
cp
-p
*
.doc
$(DOCDIR)
;
\
else
\
cp
-p
*
.doc
$(SQLDIR)
;
\
fi
$(MODDIR)
:
mkdir
-p
$@
...
...
contrib/string/string_io.c
View file @
5a017b96
...
...
@@ -3,9 +3,9 @@
*
* This file defines C-like input/output conversion routines for strings.
*
* Copyright (
c) 1998
, Massimo Dal Zotto <dz@cs.unitn.it>
* Copyright (
C) 1999
, Massimo Dal Zotto <dz@cs.unitn.it>
*
* This
fil
e is distributed under the GNU General Public License
* This
softwar
e is distributed under the GNU General Public License
* either version 2, or (at your option) any later version.
*/
...
...
contrib/string/string_io.doc
View file @
5a017b96
String io module for postgresql.
Copyright (C) 1999, Massimo Dal Zotto <dz@cs.unitn.it>
This software is distributed under the GNU General Public License
either version 2, or (at your option) any later version.
These output functions can be used as substitution of the standard text
output functions to get the value of text fields printed in the format
used for C strings. This allows the output of queries or the exported
...
...
contrib/userlock/Makefile
View file @
5a017b96
...
...
@@ -39,6 +39,13 @@ install: $(MODULE) $(SQLDEFS) $(MODDIR) $(SQLDIR)
strip
$(MODDIR)
/
$(MODULE)
cp
-p
$(SQLDEFS)
$(SQLDIR)
/
install-doc
:
if
[
-d
"
$(DOCDIR)
"
]
;
then
\
cp
-p
*
.doc
$(DOCDIR)
;
\
else
\
cp
-p
*
.doc
$(SQLDIR)
;
\
fi
$(MODDIR)
:
mkdir
-p
$@
...
...
contrib/userlock/user_locks.c
View file @
5a017b96
...
...
@@ -4,9 +4,9 @@
* This loadable module, together with my user-lock.patch applied to the
* backend, provides support for user-level long-term cooperative locks.
*
* Copyright (
c) 1998
, Massimo Dal Zotto <dz@cs.unitn.it>
* Copyright (
C) 1999
, Massimo Dal Zotto <dz@cs.unitn.it>
*
* This
fil
e is distributed under the GNU General Public License
* This
softwar
e is distributed under the GNU General Public License
* either version 2, or (at your option) any later version.
*/
...
...
contrib/userlock/user_locks.doc
View file @
5a017b96
User locks, by Massimo Dal Zotto <dz@cs.unitn.it>
Copyright (C) 1999, Massimo Dal Zotto <dz@cs.unitn.it>
This software is distributed under the GNU General Public License
either version 2, or (at your option) any later version.
This loadable module, together with my user-lock.patch applied to the
backend, provides support for user-level long-term cooperative locks.
...
...
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