arina-ielchiieva commented on a change in pull request #1618: DRILL-6950: Row 
set-based scan framework
URL: https://github.com/apache/drill/pull/1618#discussion_r253463105
 
 

 ##########
 File path: 
exec/java-exec/src/test/java/org/apache/drill/exec/physical/rowSet/impl/RowSetTestUtils.java
 ##########
 @@ -30,11 +29,9 @@ private RowSetTestUtils() { }
 
   public static List<SchemaPath> projectList(String... names) {
     List<SchemaPath> selected = new ArrayList<>();
-    for (String name: names) {
-
-      // Parse from string does not handle wildcards.
-
-      if (name.equals(SchemaPath.DYNAMIC_STAR)) {
+    for (String name : names) {
+      if (name.equals(SchemaPath.DYNAMIC_STAR) ||
+          name.equals("*")) {
 
 Review comment:
   As far as I understand start column is replaced with `**` in Calcite, do we 
need to check for `*` as well?

----------------------------------------------------------------
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

Reply via email to