Skip to content

Commit c8979d4

Browse files
tanjinxClaude
andcommitted
fix e2e test: use col instead of val for user_extra
The user_extra table does not have a val column in the e2e schema. Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com> Signed-off-by: Tanjin Xu <tanjin.xu@slack-corp.com>
1 parent db6402d commit c8979d4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

go/vt/vtgate/planbuilder/testdata/dml_cases.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7433,19 +7433,19 @@
74337433
},
74347434
{
74357435
"comment": "update with IN clause on vindex and limit pushes limit to each shard",
7436-
"query": "update user_extra set val = 1 where user_id in (1, 2) limit 5",
7436+
"query": "update user_extra set col = 1 where user_id in (1, 2) limit 5",
74377437
"plan": {
74387438
"Type": "MultiShard",
74397439
"QueryType": "UPDATE",
7440-
"Original": "update user_extra set val = 1 where user_id in (1, 2) limit 5",
7440+
"Original": "update user_extra set col = 1 where user_id in (1, 2) limit 5",
74417441
"Instructions": {
74427442
"OperatorType": "Update",
74437443
"Variant": "IN",
74447444
"Keyspace": {
74457445
"Name": "user",
74467446
"Sharded": true
74477447
},
7448-
"Query": "update user_extra set val = 1 where user_id in ::__vals limit 5",
7448+
"Query": "update user_extra set col = 1 where user_id in ::__vals limit 5",
74497449
"Table": "user_extra",
74507450
"Values": [
74517451
"(1, 2)"

0 commit comments

Comments
 (0)