Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix](case) fix opensky_p2 cases #46914

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ suite("load", "p2, nonConcurrent") {
sql "set insert_timeout=3600"
def r = sql "select @@insert_timeout"
assertEquals(3600, r[0][0])
year_cons = [
def year_cons = [
'lo_orderdate<19930101',
'lo_orderdate>=19930101 and lo_orderdate<19940101',
'lo_orderdate>=19940101 and lo_orderdate<19950101',
Expand Down
2 changes: 1 addition & 1 deletion regression-test/suites/opensky_p2/load.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ suite("load"){

sql """ DROP TABLE IF EXISTS $tableName """

scriptDir = new File(getClass().protectionDomain.codeSource.location.path).parent
def scriptDir = new File(getClass().protectionDomain.codeSource.location.path).parent

sql new File("""${scriptDir}/ddl/${tableName}.sql""").text

Expand Down
2 changes: 1 addition & 1 deletion regression-test/suites/s3_vault/ssb_sf1_p2/load.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ suite("load") {
sql "set insert_timeout=3600"
def r = sql "select @@insert_timeout"
assertEquals(3600, r[0][0])
year_cons = [
def year_cons = [
'lo_orderdate<19930101',
'lo_orderdate>=19930101 and lo_orderdate<19940101',
'lo_orderdate>=19940101 and lo_orderdate<19950101',
Expand Down
2 changes: 1 addition & 1 deletion regression-test/suites/ssb_sf100_p2/load.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ suite('load') {
sql "sync"
def r = sql "select @@insert_timeout"
assertEquals(3600, r[0][0])
year_cons = [
def year_cons = [
'lo_orderdate<19930101',
'lo_orderdate>=19930101 and lo_orderdate<19940101',
'lo_orderdate>=19940101 and lo_orderdate<19950101',
Expand Down
2 changes: 1 addition & 1 deletion regression-test/suites/ssb_sf1_p2/load.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ suite("load") {
sql "set insert_timeout=3600"
def r = sql "select @@insert_timeout"
assertEquals(3600, r[0][0])
year_cons = [
def year_cons = [
'lo_orderdate<19930101',
'lo_orderdate>=19930101 and lo_orderdate<19940101',
'lo_orderdate>=19940101 and lo_orderdate<19950101',
Expand Down
Loading