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_r254115477
########## File path: exec/java-exec/src/main/java/org/apache/drill/exec/planner/sql/DrillSqlWorker.java ########## @@ -183,4 +183,20 @@ 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); Review comment: This helps a lot! I've no knowledge of the Calcite SqlNodes, so this snippet helps. ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services