aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/sql/catalog.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/sql/catalog.py')
-rw-r--r--python/pyspark/sql/catalog.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/pyspark/sql/catalog.py b/python/pyspark/sql/catalog.py
index 3033f147bc..4af930a3cd 100644
--- a/python/pyspark/sql/catalog.py
+++ b/python/pyspark/sql/catalog.py
@@ -232,6 +232,11 @@ class Catalog(object):
"""Removes all cached tables from the in-memory cache."""
self._jcatalog.clearCache()
+ @since(2.0)
+ def refreshTable(self, tableName):
+ """Invalidate and refresh all the cached metadata of the given table."""
+ self._jcatalog.refreshTable(tableName)
+
def _reset(self):
"""(Internal use only) Drop all existing databases (except "default"), tables,
partitions and functions, and set the current database to "default".