kkhatua commented on a change in pull request #1608: DRILL-6960: Auto Limit
Wrapping should not apply to non-select query
URL: https://github.com/apache/drill/pull/1608#discussion_r253686115
##########
File path:
exec/java-exec/src/main/java/org/apache/drill/exec/planner/sql/DrillSqlWorker.java
##########
@@ -183,4 +184,23 @@ private static PhysicalPlan getQueryPlan(QueryContext
context, String sql, Point
return handler.getPlan(sqlNode);
}
+
+ //Wrap with Auto Limit
+ private static SqlNode wrapWithAutoLimit(SqlConverter parser, QueryContext
context, String sql) {
+ SqlNode sqlNode = parser.parse(sql);
+ if (context.isAutoLimitEnabled() &&
sqlNode.getKind().belongsTo(SqlKind.QUERY)) {
+ int autoLimitRowCount = context.getAutoLimitRowCount();
Review comment:
+1
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services