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
b3341ddb
Commit
b3341ddb
authored
Jul 16, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark 'line' as 'not implemented' in SGML and psql \dT, per Thomas
Lockhart. initdb not forced.
parent
7fb9b5d4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
doc/src/sgml/datatype.sgml
doc/src/sgml/datatype.sgml
+3
-3
src/backend/utils/adt/geo_ops.c
src/backend/utils/adt/geo_ops.c
+3
-1
src/include/catalog/pg_type.h
src/include/catalog/pg_type.h
+2
-2
No files found.
doc/src/sgml/datatype.sgml
View file @
b3341ddb
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.9
3 2002/06/11 15:32:32 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.9
4 2002/07/16 03:30:26 momjian
Exp $
-->
<chapter id="datatype">
...
...
@@ -143,7 +143,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.93 2002/06/11 15:32:32 th
<row>
<entry><type>line</type></entry>
<entry></entry>
<entry>infinite line in 2D plane</entry>
<entry>infinite line in 2D plane
(not implemented)
</entry>
</row>
<row>
...
...
@@ -2247,7 +2247,7 @@ SELECT * FROM test1 WHERE a;
<entry><type>line</type></entry>
<entry>32 bytes</entry>
<entry>((x1,y1),(x2,y2))</entry>
<entry>Infinite line</entry>
<entry>Infinite line
(not implemented)
</entry>
</row>
<row>
<entry><type>lseg</type></entry>
...
...
src/backend/utils/adt/geo_ops.c
View file @
b3341ddb
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.6
2 2002/06/20 20:29:3
7 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.6
3 2002/07/16 03:30:2
7 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -815,6 +815,7 @@ line_in(PG_FUNCTION_ARGS)
LINE
*
line
;
#ifdef ENABLE_LINE_TYPE
/* when fixed, modify "not implemented", catalog/pg_type.h and SGML */
LSEG
lseg
;
int
isopen
;
char
*
s
;
...
...
@@ -843,6 +844,7 @@ line_out(PG_FUNCTION_ARGS)
char
*
result
;
#ifdef ENABLE_LINE_TYPE
/* when fixed, modify "not implemented", catalog/pg_type.h and SGML */
LSEG
lseg
;
if
(
FPzero
(
line
->
B
))
...
...
src/include/catalog/pg_type.h
View file @
b3341ddb
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_type.h,v 1.12
3 2002/06/20 20:29:49
momjian Exp $
* $Id: pg_type.h,v 1.12
4 2002/07/16 03:30:27
momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -344,7 +344,7 @@ DESCR("geometric polygon '(pt1,...)'");
#define POLYGONOID 604
DATA
(
insert
OID
=
628
(
line
PGNSP
PGUID
32
48
f
b
t
\
054
0
701
line_in
line_out
line_in
line_out
d
p
f
0
-
1
0
_null_
_null_
));
DESCR
(
"geometric line
'(pt1,pt2
)'"
);
DESCR
(
"geometric line
(not implemented
)'"
);
#define LINEOID 628
DATA
(
insert
OID
=
629
(
_line
PGNSP
PGUID
-
1
-
1
f
b
t
\
054
0
628
array_in
array_out
array_in
array_out
d
x
f
0
-
1
0
_null_
_null_
));
DESCR
(
""
);
...
...
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