You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug Issue: Extracting ISOYEAR is critical for us to calculate weeks correctly in SQL WHERE clause:
Query:
SELECT ...
FROM ...
WHERE week = EXTRACT(ISOYEAR FROM CURRENT_DATE - INTERVAL '1 week') * 100
DB Engine: This functionality is working in PostgreSQL but does not work when Cube is generating query, most likely because it is not supported in DataFusion which is used under the hood.
EXTRACT function: Other similar queries are working if we extract WEEK, YEAR, etc but in this case we need exactly ISOYEAR extraction. Workarounds: Other possible workarounds are not working because of limited SQL functionality. Pushdown: Enabling Pushdown does not help, there is still the same error. Dimensions in Cube: This function can be applied to Cube dimensions in sql parameter but we have to be able to apply it in SQL API.
Error: "Error during rewrite: Can't detect Cube query and it may be not supported yet. Please check logs for additional information
To Reproduce
Steps to reproduce the behavior:
Create Cube that has date dimensions
In Superset run query against Cube where ISOYEAR should be used in WHERE clause: WHERE week = EXTRACT(**ISOYEAR** FROM CURRENT_DATE - INTERVAL '1 week') * 100
Error: "Error during rewrite: Can't detect Cube query and it may be not supported yet. Please check logs for additional information
Expected behavior
ISOYEAR extraction is working as expected, the correct result is selected and there is no error.
Describe the bug
Issue: Extracting ISOYEAR is critical for us to calculate weeks correctly in SQL WHERE clause:
Query:
DB Engine: This functionality is working in PostgreSQL but does not work when Cube is generating query, most likely because it is not supported in DataFusion which is used under the hood.
EXTRACT function: Other similar queries are working if we extract WEEK, YEAR, etc but in this case we need exactly ISOYEAR extraction.
Workarounds: Other possible workarounds are not working because of limited SQL functionality.
Pushdown: Enabling Pushdown does not help, there is still the same error.
Dimensions in Cube: This function can be applied to Cube dimensions in sql parameter but we have to be able to apply it in SQL API.
Error: "Error during rewrite: Can't detect Cube query and it may be not supported yet. Please check logs for additional information
To Reproduce
Steps to reproduce the behavior:
WHERE week = EXTRACT(**ISOYEAR** FROM CURRENT_DATE - INTERVAL '1 week') * 100
Expected behavior
ISOYEAR extraction is working as expected, the correct result is selected and there is no error.
Screenshots
Version:
[1.2.4]
Additional Context:
DataFusion Bug Report (ISOYEAR/ISOWEEK): apache/datafusion#14524
Arrow-rs Bug report (ISOYEAR/ISOWEEK): apache/arrow-rs#7115
The text was updated successfully, but these errors were encountered: