Skip to content

Commit

Permalink
fix 1
Browse files Browse the repository at this point in the history
Signed-off-by: nextdreamblue <[email protected]>
  • Loading branch information
nextdreamblue committed Apr 16, 2024
1 parent 24458b1 commit 138d6d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ suite("nereids_partial_update_native_insert_stmt_complex", "p0") {
sql """insert into ${tbName1}
select ${tbName2}.id, ${tbName2}.c1, ${tbName2}.c3 * 100
from ${tbName2} inner join ${tbName3} on ${tbName2}.id = ${tbName3}.id; """
exception "You must explicitly specify the columns to be updated when updating partial columns using the INSERT statement."
exception "Column count doesn't match value count"
}
sql "truncate table ${tbName1};"
sql "truncate table ${tbName2};"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ suite("test_partial_update_native_insert_stmt_complex", "p0") {
sql """insert into ${tbName1}
select ${tbName2}.id, ${tbName2}.c1, ${tbName2}.c3 * 100
from ${tbName2} inner join ${tbName3} on ${tbName2}.id = ${tbName3}.id; """
exception "You must explicitly specify the columns to be updated when updating partial columns using the INSERT statement."
exception "Column count doesn't match value count"
}
sql "truncate table ${tbName1};"
sql "truncate table ${tbName2};"
Expand Down

0 comments on commit 138d6d1

Please sign in to comment.