mirror of
https://github.com/apache/superset.git
synced 2026-04-17 23:25:05 +00:00
fix(table chart): render bigint value in a raw mode (#34556)
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user