Skip to content

Commit

Permalink
Ignore e2e test in dml_cases
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Jan 7, 2025
1 parent e6e6742 commit 192ede0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions go/vt/vtgate/planbuilder/testdata/dml_cases.json
Original file line number Diff line number Diff line change
Expand Up @@ -2649,11 +2649,11 @@
"skip_e2e": true
},
{
"comment": "insert using last_insert_id with argument",
"query": "insert into unsharded values(last_insert_id(24), 2, 2, 2, 2, 2)",
"comment": "insert using last_insert_id with argument (already an e2e test for this plan)",
"query": "insert into unsharded values(last_insert_id(789), 2)",
"plan": {
"QueryType": "INSERT",
"Original": "insert into unsharded values(last_insert_id(24), 2, 2, 2, 2, 2)",
"Original": "insert into unsharded values(last_insert_id(789), 2)",
"Instructions": {
"OperatorType": "Insert",
"Variant": "Unsharded",
Expand All @@ -2663,13 +2663,14 @@
},
"TargetTabletType": "PRIMARY",
"FetchLastInsertID": true,
"Query": "insert into unsharded values (last_insert_id(24), 2, 2, 2, 2, 2)",
"Query": "insert into unsharded values (last_insert_id(789), 2)",
"TableName": "unsharded"
},
"TablesUsed": [
"main.unsharded"
]
}
},
"skip_e2e": true
},
{
"comment": "update vindex value to null with multiple primary keyspace id",
Expand Down

0 comments on commit 192ede0

Please sign in to comment.