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

(cherry picked from commit 8700a0b939)
This commit is contained in:
JUST.in DO IT
2025-08-05 13:11:28 -07:00
committed by Michael S. Molina
parent d1ded45633
commit 8828e59dca
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,
};