Skip to content

Commit

Permalink
Disable row store in 2.1 (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter committed Jan 9, 2025
1 parent 643184d commit 28a0f9c
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ suite("test_tsa_alt_prop_row_store") {
def helper = new GroovyShell(new Binding(['suite': delegate]))
.evaluate(new File("${context.config.suitePath}/../common", "helper.groovy"))

if (!helper.is_version_supported([30004, 20199, 20099])) {
// disable in 2.1/2.0
def version = helper.upstream_version()
logger.info("skip this suite because version is not supported, upstream version ${version}")
return
}

def dbName = context.dbName
def tableName = "tbl_" + helper.randomSuffix()
def aliasTableName = "tbl_alias_" + helper.randomSuffix()
Expand Down

0 comments on commit 28a0f9c

Please sign in to comment.