amrishlal opened a new issue #6814:
URL: https://github.com/apache/incubator-pinot/issues/6814
FLOAT is missing from Literal datatypes
(org.apache.pinot.common.request.Literal) but defined as a column datatype
(org.apache.pinot.spi.data.FieldSpec.DataType). This may create type conversion
issues since the only way to specify values for FLOAT column is by using DOUBLE
literal values.
Literal defines the following datatypes:
BOOL, BYTE, SHORT, INT, LONG, DOUBLE, STRING, BINARY
FieldSpec.DataType defines the following datatypes:
INT, LONG, FLOAT, DOUBLE, BOOLEAN/* Stored as STRING */, STRING, BYTES,
STRUCT, MAP, LIST;
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]