kfaraz commented on code in PR #17724:
URL: https://github.com/apache/druid/pull/17724#discussion_r1958018072


##########
processing/src/main/java/org/apache/druid/query/planning/DataSourceAnalysis.java:
##########
@@ -123,7 +123,7 @@ public TableDataSource getBaseTableDataSource()
     if (baseDataSource instanceof TableDataSource) {
       return (TableDataSource) baseDataSource;
     } else {
-      throw DruidException.defensive("Base dataSource was not a table!");
+      throw DruidException.defensive("Base dataSource is not a table! [%s]", 
baseDataSource);

Review Comment:
   ```suggestion
         throw DruidException.defensive("Base dataSource[%s] is not a table!", 
baseDataSource);
   ```



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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to