edgarRd commented on a change in pull request #1353:
URL: https://github.com/apache/iceberg/pull/1353#discussion_r473511936
##########
File path: core/src/main/java/org/apache/iceberg/BaseTableScan.java
##########
@@ -159,6 +159,10 @@ public TableScan option(String property, String value) {
@Override
public TableScan project(Schema projectedSchema) {
+ if (context.selectedColumns() != null) {
+ throw new IllegalStateException("Cannot project schema when selected
columns is specified.");
+ }
Review comment:
Yeah, that makes sense, @rdblue. Should we have another PR for that
change?
----------------------------------------------------------------
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]