We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c63e7a commit ba8c22eCopy full SHA for ba8c22e
src/shared/contexts/query.tsx
@@ -498,6 +498,16 @@ const parseCSV = (() => {
498
return column.type
499
}
500
501
+ data.table.getOriginalColumnType = (columnKey: string) => {
502
+ const column = data.table.columns[columnKey]
503
+
504
+ if (!column) {
505
+ return null
506
+ }
507
508
+ return column.fluxDataType
509
510
511
queue[idx](data)
512
513
0 commit comments