We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The test (roughly rendered) cell_methods ~ '(within|over)' no longer gives correct results. Instead we must use (rendered as SQL)
cell_methods ~ '(within|over)'
ARRAY['climatology'::text] <@ variable_tags(meta_vars.*)
or its complement
ARRAY['observation'::text] <@ variable_tags(meta_vars.*)
Various fixes for this will be applied throughout the PDP stack, including in the databases:
In this repo, we may still be assuming the old method is still in use. See:
pdp/pdp/static/js/__mocks__/data-services/prism_demo_app.js
Line 430 in b678ccc
pdp/tests/test_functional.py
Line 150 in b678ccc
Fix these if necessary.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The test (roughly rendered)
cell_methods ~ '(within|over)'
no longer gives correct results. Instead we must use (rendered as SQL)or its complement
Various fixes for this will be applied throughout the PDP stack, including in the databases:
In this repo, we may still be assuming the old method is still in use. See:
pdp/pdp/static/js/__mocks__/data-services/prism_demo_app.js
Line 430 in b678ccc
pdp/tests/test_functional.py
Line 150 in b678ccc
Fix these if necessary.
The text was updated successfully, but these errors were encountered: