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
25146d3c
Commit
25146d3c
authored
May 30, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for NUMERIC ^ NUMERIC based on power(numeric, numeric).
parent
a54c21a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
src/include/catalog/catversion.h
src/include/catalog/catversion.h
+2
-2
src/include/catalog/pg_operator.h
src/include/catalog/pg_operator.h
+2
-1
No files found.
src/include/catalog/catversion.h
View file @
25146d3c
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.27
1 2005/05/30 06:52:38 neilc
Exp $
* $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.27
2 2005/05/30 20:59:17 momjian
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -53,6 +53,6 @@
...
@@ -53,6 +53,6 @@
*/
*/
/* yyyymmddN */
/* yyyymmddN */
#define CATALOG_VERSION_NO 20050530
1
#define CATALOG_VERSION_NO 20050530
2
#endif
#endif
src/include/catalog/pg_operator.h
View file @
25146d3c
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/catalog/pg_operator.h,v 1.13
1 2005/04/14 01:38:20 tgl
Exp $
* $PostgreSQL: pgsql/src/include/catalog/pg_operator.h,v 1.13
2 2005/05/30 20:59:17 momjian
Exp $
*
*
* NOTES
* NOTES
* the genbki.sh script reads this file and generates .bki
* the genbki.sh script reads this file and generates .bki
...
@@ -695,6 +695,7 @@ DATA(insert OID = 1759 ( "-" PGNSP PGUID b f 1700 1700 1700 0 0 0 0 0 0 num
...
@@ -695,6 +695,7 @@ DATA(insert OID = 1759 ( "-" PGNSP PGUID b f 1700 1700 1700 0 0 0 0 0 0 num
DATA
(
insert
OID
=
1760
(
"*"
PGNSP
PGUID
b
f
1700
1700
1700
1760
0
0
0
0
0
numeric_mul
-
-
));
DATA
(
insert
OID
=
1760
(
"*"
PGNSP
PGUID
b
f
1700
1700
1700
1760
0
0
0
0
0
numeric_mul
-
-
));
DATA
(
insert
OID
=
1761
(
"/"
PGNSP
PGUID
b
f
1700
1700
1700
0
0
0
0
0
0
numeric_div
-
-
));
DATA
(
insert
OID
=
1761
(
"/"
PGNSP
PGUID
b
f
1700
1700
1700
0
0
0
0
0
0
numeric_div
-
-
));
DATA
(
insert
OID
=
1762
(
"%"
PGNSP
PGUID
b
f
1700
1700
1700
0
0
0
0
0
0
numeric_mod
-
-
));
DATA
(
insert
OID
=
1762
(
"%"
PGNSP
PGUID
b
f
1700
1700
1700
0
0
0
0
0
0
numeric_mod
-
-
));
DATA
(
insert
OID
=
1038
(
"^"
PGNSP
PGUID
b
f
1700
1700
1700
0
0
0
0
0
0
numeric_power
-
-
));
DATA
(
insert
OID
=
1763
(
"@"
PGNSP
PGUID
l
f
0
1700
1700
0
0
0
0
0
0
numeric_abs
-
-
));
DATA
(
insert
OID
=
1763
(
"@"
PGNSP
PGUID
l
f
0
1700
1700
0
0
0
0
0
0
numeric_abs
-
-
));
DATA
(
insert
OID
=
1784
(
"="
PGNSP
PGUID
b
f
1560
1560
16
1784
1785
1786
1786
1786
1787
biteq
eqsel
eqjoinsel
));
DATA
(
insert
OID
=
1784
(
"="
PGNSP
PGUID
b
f
1560
1560
16
1784
1785
1786
1786
1786
1787
biteq
eqsel
eqjoinsel
));
...
...
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