We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d8e8e commit 0181cc7Copy full SHA for 0181cc7
1 file changed
spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/SparkCatalog.java
@@ -248,7 +248,7 @@ public boolean tableExists(Identifier ident) {
248
// if the original load didn't work, try using the namespace as an identifier because
249
// the original identifier may include a snapshot selector or may point to the changelog
250
TableIdentifier namespaceAsIdent =
251
- buildIdentifier(namespaceToIdentifier(ident.namespace()));
+ buildIdentifier(namespaceToIdentifier(ident.namespace()));
252
Matcher tag = TAG.matcher(ident.name());
253
if (tag.matches()) {
254
org.apache.iceberg.Table table = icebergCatalog.loadTable(namespaceAsIdent);
0 commit comments