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
4ff6856c
Commit
4ff6856c
authored
Sep 01, 2010
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve release notes' description of Teodor's fixes for polygon overlaps
and contains operators.
parent
e4b96380
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
doc/src/sgml/release-9.0.sgml
doc/src/sgml/release-9.0.sgml
+14
-3
No files found.
doc/src/sgml/release-9.0.sgml
View file @
4ff6856c
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.5
4 2010/08/25 19:41:38 momjian
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.5
5 2010/09/01 15:14:42 tgl
Exp $ -->
<sect1 id="release-9-0">
<title>Release 9.0</title>
...
...
@@ -1698,8 +1698,19 @@
<listitem>
<para>
Correct calculations of <link
linkend="functions-geometry-op-table"><quote>overlap</quote></link>
and <quote>contains</quote> operations over polygons (Teodor Sigaev)
linkend="functions-geometry-op-table"><quote>overlaps</quote></link>
and <quote>contains</quote> operations for polygons (Teodor Sigaev)
</para>
<para>
The polygon <literal>&&</> (overlaps) operator formerly just
checked to see if the two polygons' bounding boxes overlapped. It now
does a more correct check. The polygon <literal>@></> and
<literal><@</> (contains/contained by) operators formerly checked
to see if one polygon's vertexes were all contained in the other;
this can wrongly report <quote>true</> for some non-convex polygons.
Now they check that all line segments of one polygon are contained in
the other.
</para>
</listitem>
...
...
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