Skip to content

Commit

Permalink
- Added a idxstring parameter to ST_HasBasicIndex(). This allows ST_G…
Browse files Browse the repository at this point in the history
…eoTableSummary() to search check if indexes with names containing strings like 'st_nbpoint' and 'st_area' already exists.

- Converted 'null' to 'NULL', 'true' to TRUE and 'false' to 'FALSE'.
- Make DISTINCT and GROUP BY on ST_AsEWKB(geom) instead of simply on geom which sometimes reports geometries as identical when they are not.
- Added 'NPOINTS' as an alias for 'VERTX' for the ST_GeoTableSummary() dosummary and skipsummary parameters.
- Fixed a logic problem preventing dosummary from being processed when only some skipsummary were invoked.
- Remove the last ST_Empty() test from the overlaps check in ST_GeoTableSummary(). It was preventing identical geometries overlaps to come out in the results.
- Changed the way we identify the outside polygon when listing gaps in ST_GeoTableSummary(). Now we check if the big external polygon ST_Intersects() with the exterior ring instead of just ignoring the first polygon dumped.
- SplitByGrid() now also returns the geometry representing the tile itself (tgeom).
  • Loading branch information
pedrogit committed Oct 4, 2017
1 parent 40ac12b commit 643c463
Show file tree
Hide file tree
Showing 6 changed files with 194 additions and 123 deletions.
2 changes: 1 addition & 1 deletion legacy/ST_SummaryStatsAgg.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-------------------------------------------------------------------------------
-- PostGIS PL/pgSQL Add-ons - Legacy function ST_SummaryStatsAgg()
-- Version 1.35 for PostGIS 2.1.x and PostgreSQL 9.x
-- Version 1.36 for PostGIS 2.1.x and PostgreSQL 9.x
-- https://github.com/pedrogit/postgisaddons
--
-- This is free software; you can redistribute and/or modify it under
Expand Down
2 changes: 1 addition & 1 deletion legacy/ST_SummaryStatsAgg_test.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-------------------------------------------------------------------------------
-- PostGIS PL/pgSQL Add-ons - Test file for legacy functions
-- Version 1.35 for PostGIS 2.1.x and PostgreSQL 9.x
-- Version 1.36 for PostGIS 2.1.x and PostgreSQL 9.x
-- https://github.com/pedrogit/postgisaddons
--
-- This is free software; you can redistribute and/or modify it under
Expand Down
2 changes: 1 addition & 1 deletion legacy/ST_SummaryStatsAgg_uninstall.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-------------------------------------------------------------------------------
-- PostGIS PL/pgSQL Add-ons - Uninstall ST_SummaryStatsAgg()
-- Version 1.35 for PostGIS 2.1.x and PostgreSQL 9.x
-- Version 1.36 for PostGIS 2.1.x and PostgreSQL 9.x
-- https://github.com/pedrogit/postgisaddons
--
-- This is free software; you can redistribute and/or modify it under
Expand Down
Loading

0 comments on commit 643c463

Please sign in to comment.