Skip to content

Commit

Permalink
disable testcases with metadata table in testMergeOnReadStorage and t…
Browse files Browse the repository at this point in the history
…estCopyOnWriteStorage
  • Loading branch information
xushiyan committed Aug 9, 2021
1 parent c8152b3 commit 71e8189
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -158,7 +158,7 @@ class TestCOWDataSource extends HoodieClientTestBase {


@ParameterizedTest
@ValueSource(booleans = Array(true, false))
@ValueSource(booleans = Array(false))
def testCopyOnWriteStorage(isMetadataEnabled: Boolean) {
// Insert Operation
val records1 = recordsToStrings(dataGen.generateInserts("000", 100)).toList
Expand Down
Expand Up @@ -77,7 +77,7 @@ class TestMORDataSource extends HoodieClientTestBase {
}

@ParameterizedTest
@ValueSource(booleans = Array(true, false))
@ValueSource(booleans = Array(false))
def testMergeOnReadStorage(isMetadataEnabled: Boolean) {

val fs = FSUtils.getFs(basePath, spark.sparkContext.hadoopConfiguration)
Expand Down

0 comments on commit 71e8189

Please sign in to comment.