- Notifications
You must be signed in to change notification settings - Fork15
[ISSUE #19] Make HEALPix/MOC support optional#26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
vitcpp merged 9 commits intopostgrespro:masterfromesabol:issue-19-make-healpix-moc-optionalJul 11, 2023
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
9 commits Select commitHold shift + click to select a range
2fe153f
Make HEALPix/MOC support optional
esabold2fc6df
Minor correction to generation of pg_sphere--1.2.0--1.2.1.sql in the …
esabol0d272eb
Additional tweaks to README.pg_sphere
esabol4eb0e3a
Very minor tweak to README.pg_sphere
esabol26def74
Add epochprop into variable assignments for REGRESS and TESTS to simp…
esabolbbcbdbf
Add USE_HEALPIX=0 cases to instrutions for regression testing and oth…
esabolec3933a
Make Travis CI do make test and make crushtest
esabolc4a106d
Get 'make test' working again, both with HEALPix and without
esabol8465435
Add USE_HEALPIX=0 build and regression tests to Travis CI
esabolFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
15 changes: 14 additions & 1 deletion.travis.yml
This file contains hidden or 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
111 changes: 82 additions & 29 deletionsMakefile
This file contains hidden or 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
64 changes: 49 additions & 15 deletionsREADME.pg_sphere
This file contains hidden or 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
16 changes: 7 additions & 9 deletionsexpected/init_test.out → expected/init_test.out.in
This file contains hidden or 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
2 changes: 2 additions & 0 deletionsexpected/init_test_healpix.out.in
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
psql:pg_sphere.test.sql:9153: NOTICE: return type smoc is only a shell | ||
psql:pg_sphere.test.sql:9159: NOTICE: argument type smoc is only a shell |
2 changes: 2 additions & 0 deletionsupgrade_scripts/pg_sphere--1.1.5beta4gavo--1.2.0.sql.in
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- complain if this upgrade script is run via psql | ||
\echo Use "ALTER EXTENSION pg_sphere UPDATE TO '1.2.0'" to load this file. \quit |
2 changes: 2 additions & 0 deletionsupgrade_scripts/pg_sphere--1.2.0--1.2.1.sql.in
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- complain if this upgrade script is run via psql | ||
\echo Use "ALTER EXTENSION pg_sphere UPDATE TO '1.2.1'" to load this file. \quit |
30 changes: 30 additions & 0 deletionsupgrade_scripts/pg_sphere--1.2.1--1.2.2-healpix.sql.in
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
-- healpix | ||
ALTER FUNCTION nest2ring(integer, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION ring2nest(integer, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION healpix_convert_nest(integer, integer, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION healpix_convert_ring(integer, integer, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION nside2order(bigint) PARALLEL SAFE; | ||
ALTER FUNCTION order2nside(integer) PARALLEL SAFE; | ||
ALTER FUNCTION nside2npix(bigint) PARALLEL SAFE; | ||
ALTER FUNCTION npix2nside(bigint) PARALLEL SAFE; | ||
ALTER FUNCTION healpix_nest(integer, spoint) PARALLEL SAFE; | ||
ALTER FUNCTION healpix_ring(integer, spoint) PARALLEL SAFE; | ||
ALTER FUNCTION centre_of_healpix_nest(integer, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION centre_of_healpix_ring(integer, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION center_of_healpix_nest(integer, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION center_of_healpix_ring(integer, bigint) PARALLEL SAFE; | ||
-- moc_type | ||
ALTER FUNCTION smoc_in(cstring) PARALLEL SAFE; | ||
ALTER FUNCTION smoc_out(smoc) PARALLEL SAFE; | ||
ALTER FUNCTION moc_debug() PARALLEL SAFE; | ||
ALTER FUNCTION set_smoc_output_type(integer) PARALLEL SAFE; | ||
ALTER FUNCTION max_order(smoc) PARALLEL SAFE; | ||
ALTER FUNCTION healpix_subset_smoc(bigint, smoc) PARALLEL SAFE; | ||
ALTER FUNCTION healpix_not_subset_smoc(bigint, smoc) PARALLEL SAFE; | ||
ALTER FUNCTION smoc_superset_healpix(smoc, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION smoc_not_superset_healpix(smoc, bigint) PARALLEL SAFE; | ||
ALTER FUNCTION spoint_subset_smoc(spoint, smoc) PARALLEL SAFE; | ||
ALTER FUNCTION spoint_not_subset_smoc(spoint, smoc) PARALLEL SAFE; | ||
ALTER FUNCTION smoc_superset_spoint(smoc, spoint) PARALLEL SAFE; | ||
ALTER FUNCTION smoc_not_superset_spoint(smoc, spoint) PARALLEL SAFE; |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.