dosubot[bot] commented on issue #35087: URL: https://github.com/apache/superset/issues/35087#issuecomment-3274514183
<!-- Greeting --> Hi @DriverK! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the superset team. <!-- Answer --> This error happens because JavaScript's BigInt type can't be serialized with JSON.stringify, and Superset's frontend and backend previously didn't consistently convert BigInt values to strings before serialization. Recent fixes in Superset master/latest-dev (July–August 2025) address this: the SelectFilterPlugin now stringifies BigInt values before comparison and serialization, which resolves the error in dashboard filters, and table chart rendering also handles BigInt values safely ([#34137](https://github.com/apache/superset/pull/34137), [#34556](https://github.com/apache/superset/pull/34556)). The backend JSON utility also supports converting BigInt to strings during serialization ([#29861](https://github.com/apache/superset/pull/29861)). If you're on an older version, you can work around this by casting BigInt fields to string in your SQL queries, or patching your frontend code to stringify BigInt values before sending them to the backend. If possible, upgrade to a commit after August 2025 to get these fixes directly. For more details, see the linked PRs. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/f2b8ea37-7c77-4ffd-8555-6278211606dc?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/f2b8ea37-7c77-4ffd-8555-6278211606dc?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/f2b8ea37-7c77-4ffd-8555-6278211606dc?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/f2b8ea37-7c77-4ffd-8555-6278211606dc?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/f2b8ea37-7c77-4ffd-8555-6278211606dc?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/f2b8ea37-7c77-4ffd-8555-6278211606dc?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/f2b8ea37-7c77-4ffd-8555-6278211606dc?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=githu b) [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/35087) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
