This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 4.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit c9a6537e7d04c1252b2b660786953ca4d2075532 Author: JUST.in DO IT <[email protected]> AuthorDate: Wed Jun 5 09:03:06 2024 -0700 fix(explore): Drill to detail truncates int64 IDs (#29081) (cherry picked from commit dabb4e064fbff771d54e9fd3174e632dfa02d51b) --- superset-frontend/src/components/Chart/chartAction.js | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/components/Chart/chartAction.js b/superset-frontend/src/components/Chart/chartAction.js index eb51021d0c..a42cd290e1 100644 --- a/superset-frontend/src/components/Chart/chartAction.js +++ b/superset-frontend/src/components/Chart/chartAction.js @@ -609,6 +609,7 @@ export const getDatasourceSamples = async ( endpoint: '/datasource/samples', jsonPayload, searchParams, + parseMethod: 'json-bigint', }); return response.json.result;
