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
ce3d0870
Commit
ce3d0870
authored
Aug 04, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
This patch adds support for inet[] arrays to the /contrib/array module.
Neil Conway
parent
0b15c252
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
102 additions
and
28 deletions
+102
-28
contrib/array/array_iterator.c
contrib/array/array_iterator.c
+35
-1
contrib/array/array_iterator.h
contrib/array/array_iterator.h
+5
-0
contrib/array/array_iterator.sql.in
contrib/array/array_iterator.sql.in
+62
-27
No files found.
contrib/array/array_iterator.c
View file @
ce3d0870
...
...
@@ -361,7 +361,41 @@ array_all_oidne(ArrayType *array, Oid value)
array
,
(
Datum
)
value
);
}
/* end of file */
int32
array_ineteq
(
ArrayType
*
array
,
Oid
value
)
{
return
array_iterator
((
Oid
)
869
,
/* inet */
(
Oid
)
920
,
/* network_eq */
0
,
/* logical or */
array
,
(
Datum
)
value
);
}
int32
array_all_ineteq
(
ArrayType
*
array
,
Oid
value
)
{
return
array_iterator
((
Oid
)
869
,
/* inet */
(
Oid
)
920
,
/* network_eq */
1
,
/* logical and */
array
,
(
Datum
)
value
);
}
int32
array_inetne
(
ArrayType
*
array
,
Oid
value
)
{
return
array_iterator
((
Oid
)
869
,
/* inet */
(
Oid
)
925
,
/* network_ne */
0
,
/* logical and */
array
,
(
Datum
)
value
);
}
int32
array_all_inetne
(
ArrayType
*
array
,
Oid
value
)
{
return
array_iterator
((
Oid
)
869
,
/* inet */
(
Oid
)
925
,
/* network_ne */
1
,
/* logical and */
array
,
(
Datum
)
value
);
}
/*
* Local Variables:
...
...
contrib/array/array_iterator.h
View file @
ce3d0870
...
...
@@ -34,6 +34,11 @@ int32 array_all_int4le(ArrayType *array, int4 value);
int32
array_oideq
(
ArrayType
*
array
,
Oid
value
);
int32
array_all_oidne
(
ArrayType
*
array
,
Oid
value
);
int32
array_ineteq
(
ArrayType
*
array
,
Oid
value
);
int32
array_all_ineteq
(
ArrayType
*
array
,
Oid
value
);
int32
array_inetne
(
ArrayType
*
array
,
Oid
value
);
int32
array_all_inetne
(
ArrayType
*
array
,
Oid
value
);
#endif
/*
...
...
contrib/array/array_iterator.sql.in
View file @
ce3d0870
...
...
@@ -2,19 +2,19 @@
-- define the array operators *=, **=, *~ and **~ for type _text
--
create function array_texteq(_text, text) returns bool
create
or replace
function array_texteq(_text, text) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_texteq(_text, text) returns bool
create
or replace
function array_all_texteq(_text, text) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_textregexeq(_text, text) returns bool
create
or replace
function array_textregexeq(_text, text) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_textregexeq(_text, text) returns bool
create
or replace
function array_all_textregexeq(_text, text) returns bool
as 'MODULE_PATHNAME'
language 'c';
...
...
@@ -43,19 +43,19 @@ create operator **~ (
--
-- NOTE: "varchar" is also a reserved word and must be quoted.
--
create function array_varchareq(_varchar, varchar) returns bool
create
or replace
function array_varchareq(_varchar, varchar) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_varchareq(_varchar, varchar) returns bool
create
or replace
function array_all_varchareq(_varchar, varchar) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_varcharregexeq(_varchar, varchar) returns bool
create
or replace
function array_varcharregexeq(_varchar, varchar) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_varcharregexeq(_varchar, varchar) returns bool
create
or replace
function array_all_varcharregexeq(_varchar, varchar) returns bool
as 'MODULE_PATHNAME'
language 'c';
...
...
@@ -82,19 +82,19 @@ create operator **~ (
-- define the array operators *=, **=, *~ and **~ for type _bpchar
--
create function array_bpchareq(_bpchar, bpchar) returns bool
create
or replace
function array_bpchareq(_bpchar, bpchar) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_bpchareq(_bpchar, bpchar) returns bool
create
or replace
function array_all_bpchareq(_bpchar, bpchar) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_bpcharregexeq(_bpchar, bpchar) returns bool
create
or replace
function array_bpcharregexeq(_bpchar, bpchar) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_bpcharregexeq(_bpchar, bpchar) returns bool
create
or replace
function array_all_bpcharregexeq(_bpchar, bpchar) returns bool
as 'MODULE_PATHNAME'
language 'c';
...
...
@@ -121,51 +121,51 @@ create operator **~ (
-- define the array operators *=, **=, *> and **> for type _int4
--
create function array_int4eq(_int4, int4) returns bool
create
or replace
function array_int4eq(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_int4eq(_int4, int4) returns bool
create
or replace
function array_all_int4eq(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_int4ne(_int4, int4) returns bool
create
or replace
function array_int4ne(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_int4ne(_int4, int4) returns bool
create
or replace
function array_all_int4ne(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_int4gt(_int4, int4) returns bool
create
or replace
function array_int4gt(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_int4gt(_int4, int4) returns bool
create
or replace
function array_all_int4gt(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_int4ge(_int4, int4) returns bool
create
or replace
function array_int4ge(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_int4ge(_int4, int4) returns bool
create
or replace
function array_all_int4ge(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_int4lt(_int4, int4) returns bool
create
or replace
function array_int4lt(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_int4lt(_int4, int4) returns bool
create
or replace
function array_all_int4lt(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_int4le(_int4, int4) returns bool
create
or replace
function array_int4le(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_int4le(_int4, int4) returns bool
create
or replace
function array_all_int4le(_int4, int4) returns bool
as 'MODULE_PATHNAME'
language 'c';
...
...
@@ -231,11 +231,11 @@ create operator **<= (
-- define the array operators *=, **<> for type _oid (added tobias 1. 1999)
--
create function array_oideq(_oid, oid) returns bool
create
or replace
function array_oideq(_oid, oid) returns bool
as 'MODULE_PATHNAME'
language 'c';
create function array_all_oidne(_oid, oid) returns bool
create
or replace
function array_all_oidne(_oid, oid) returns bool
as 'MODULE_PATHNAME'
language 'c';
...
...
@@ -249,5 +249,40 @@ create operator **<> (
rightarg=oid,
procedure=array_all_oidne);
-- define the array operators *=, **=, *<>, **<> for type _inet
-- end of file
create or replace function array_ineteq(_inet, inet) returns bool
as 'MODULE_PATHNAME'
language 'c';
create or replace function array_all_ineteq(_inet, inet) returns bool
as 'MODULE_PATHNAME'
language 'c';
create or replace function array_inetne(_inet, inet) returns bool
as 'MODULE_PATHNAME'
language 'c';
create or replace function array_all_inetne(_inet, inet) returns bool
as 'MODULE_PATHNAME'
language 'c';
create operator *= (
leftarg=_inet,
rightarg=inet,
procedure=array_ineteq);
create operator **= (
leftarg=_inet,
rightarg=inet,
procedure=array_all_ineteq);
create operator *<> (
leftarg=_inet,
rightarg=inet,
procedure=array_inetne);
create operator **<> (
leftarg=_inet,
rightarg=inet,
procedure=array_all_inetne);
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