diff --git a/web-console/src/utils/ingestion-spec.tsx b/web-console/src/utils/ingestion-spec.tsx index d26a5435b30..e2fb59ad4b5 100644 --- a/web-console/src/utils/ingestion-spec.tsx +++ b/web-console/src/utils/ingestion-spec.tsx @@ -510,7 +510,7 @@ const DIMENSION_SPEC_FORM_FIELDS: Field[] = [ { name: 'type', type: 'string', - suggestions: ['string', 'long', 'float'], + suggestions: ['string', 'long', 'float', 'double'], }, { name: 'createBitmapIndex', diff --git a/web-console/src/views/load-data-view/load-data-view.tsx b/web-console/src/views/load-data-view/load-data-view.tsx index 84bdcc1ebf2..2566efd71c3 100644 --- a/web-console/src/views/load-data-view/load-data-view.tsx +++ b/web-console/src/views/load-data-view/load-data-view.tsx @@ -2182,7 +2182,8 @@ export class LoadDataView extends React.PureComponent

- Each column in Druid must have an assigned type (string, long, float, complex, etc). + Each column in Druid must have an assigned type (string, long, float, double, complex, + etc).

{dimensionMode === 'specific' && (

@@ -2570,13 +2571,14 @@ export class LoadDataView extends React.PureComponent convertToDimension('STRING')} + text="Convert to string dimension" + onClick={() => convertToDimension('string')} /> - convertToDimension('LONG')} /> + convertToDimension('long')} /> + convertToDimension('float')} /> convertToDimension('DOUBLE')} + text="Convert to double dimension" + onClick={() => convertToDimension('double')} /> );