Here's the output:
boolean is false
Exception in thread "main" org.apache.spark.sql.catalyst.parser.ParseException:
Syntax error at or near ':'(line 1, pos 3)
== SQL ==
s3a://spark-test/delta-table-three
---^^^
Why is the identifier fine when checking if it exists, but gives syntax error when using to create a table? BTW, if I check if a known table exists, it returns true as expected. So the isDeltaTable works just fine with the identifier.
*Note: I'm using Minio as my storage and not AWS.