Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
reshke committed Feb 15, 2024
1 parent 3aebd3d commit 6e4efee
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions router/qrouter/proxy_routing.go
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,7 @@ func (qr *ProxyQrouter) deparseShardingMapping(

if tlUsable {
for i := range offsets {

qr.RecordDistributionKeyExprOnRFQN(meta, rfqn, insertCols[offsets[i]], targetList[offsets[i]])
_ = qr.RecordDistributionKeyExprOnRFQN(meta, rfqn, insertCols[offsets[i]], targetList[offsets[i]])
}
}

Expand All @@ -532,7 +531,7 @@ func (qr *ProxyQrouter) deparseShardingMapping(

if vlUsable {
for i := range offsets {
qr.RecordDistributionKeyExprOnRFQN(meta, rfqn, insertCols[i], valList[offsets[i]])
_ = qr.RecordDistributionKeyExprOnRFQN(meta, rfqn, insertCols[i], valList[offsets[i]])
}
}

Expand Down

0 comments on commit 6e4efee

Please sign in to comment.