fix(table chart): render bigint value in a raw mode (#34556)

This commit is contained in:
JUST.in DO IT
2025-08-05 13:11:28 -07:00
committed by GitHub
parent d843fef2ce
commit 8700a0b939
3 changed files with 47 additions and 2 deletions

View File

@@ -349,6 +349,27 @@ const empty = {
],
};
const bigint = {
...advanced,
queriesData: [
{
...basicQueryResult,
colnames: ['name', 'id'],
coltypes: [GenericDataType.String, GenericDataType.Numeric],
data: [
{
name: 'Michael',
id: 4312,
},
{
name: 'John',
id: 1234567890123456789n,
},
],
},
],
};
export default {
basic,
advanced,
@@ -357,4 +378,5 @@ export default {
comparisonWithConfig,
empty,
raw,
bigint,
};