We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 582509b commit 52067a3Copy full SHA for 52067a3
sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala
@@ -2052,7 +2052,7 @@ abstract class DDLSuite extends QueryTest with SQLTestUtils {
2052
2053
val fileStatus2 = fs.getFileStatus(tablePath)
2054
if (ignore) {
2055
- assert(fileStatus2.getPermission().toString() == "rwxr-xr-x")
+ assert(fileStatus2.getPermission().toString() != "rwxrwxrwx")
2056
} else {
2057
assert(fileStatus2.getPermission().toString() == "rwxrwxrwx")
2058
}
0 commit comments