You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2021/09/07 20:10:18 UTC

[GitHub] [iceberg] RussellSpitzer commented on a change in pull request #3072: Spark: Implement InvalidateTable for SparkSessionCatalog

RussellSpitzer commented on a change in pull request #3072:
URL: https://github.com/apache/iceberg/pull/3072#discussion_r703797203



##########
File path: spark3/src/main/java/org/apache/iceberg/spark/SparkSessionCatalog.java
##########
@@ -121,6 +121,15 @@ public Table loadTable(Identifier ident) throws NoSuchTableException {
     }
   }
 
+  @Override
+  public void invalidateTable(Identifier ident) {
+    if (icebergCatalog.tableExists(ident)) {

Review comment:
       This should only be invoked by Scala in Spark so we shouldn't have a null ever passed through basically the same as the other Api's in this class like "loadTable"




-- 
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: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org