fx19880617 commented on a change in pull request #6306:
URL: https://github.com/apache/incubator-pinot/pull/6306#discussion_r533928005
##########
File path:
pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/LiteralTransformFunction.java
##########
@@ -145,7 +147,11 @@ public Dictionary getDictionary() {
@Override
public byte[][] transformToBytesValuesSV(ProjectionBlock projectionBlock) {
- throw new UnsupportedOperationException();
+ if(_bytesResult==null) {
Review comment:
missing space
```
if (_bytesResult == null) {
```
##########
File path:
pinot-tools/src/main/resources/examples/stream/meetupRsvp/meetupRsvp_realtime_table_config.json
##########
@@ -7,7 +7,9 @@
"segmentPushType": "APPEND",
"segmentAssignmentStrategy": "BalanceNumSegmentAssignmentStrategy",
"schemaName": "meetupRsvp",
- "replication": "1"
+ "replication": "1",
Review comment:
no need to change this file?
##########
File path:
pinot-core/src/main/java/org/apache/pinot/core/geospatial/transform/function/StDistanceFunction.java
##########
@@ -126,7 +127,8 @@ private static double sphericalDistance(Geometry
leftGeometry, Geometry rightGeo
Point leftPoint = (Point) leftGeometry;
Point rightPoint = (Point) rightGeometry;
- return greatCircleDistance(leftPoint.getY(), leftPoint.getX(),
rightPoint.getY(), rightPoint.getX());
+// return greatCircleDistance(leftPoint.getY(), leftPoint.getX(),
rightPoint.getY(), rightPoint.getX());
Review comment:
remove the comment?
----------------------------------------------------------------
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]