-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump version to 0.3.0 * Add option to skip incremental migration check to test scripts * Add SQL script to bypass pypgstac and directly reset / load pgstac sql and sample data * Add SQL to use CQL for search and to use cursor for paging through results * Split test files to match location of code each section is testing. Modify test data with ids that can be identified as testdata and to have attributes to test more filters * Adjust layout of items table to allow better use of partition pruning, start/end dates and updated properties * fix issue with quoting in sql generation, don't pregenerate all cursors
- Loading branch information
Showing
30 changed files
with
5,032 additions
and
1,025 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
BEGIN; | ||
\i sql/001_core.sql | ||
\i sql/001a_jsonutils.sql | ||
\i sql/001b_cursorutils.sql | ||
\i sql/001s_stacutils.sql | ||
\i sql/002_collections.sql | ||
\i sql/003_items.sql | ||
\i sql/004_search.sql | ||
\i sql/999_version.sql | ||
COMMIT; | ||
COMMIT; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
"""PyPGStac Version.""" | ||
__version__ = "0.2.9" | ||
__version__ = "0.3.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.