Skip to content

Commit

Permalink
row: remove leftover reference to TestingSQLCodec in a test
Browse files Browse the repository at this point in the history
This was missed in #82890.

Epic: None

Release note: None
  • Loading branch information
yuzefovich committed Jun 13, 2023
1 parent 8814ce5 commit ef1ba50
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion pkg/sql/row/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ go_test(
"//pkg/sql/sem/tree",
"//pkg/storage",
"//pkg/testutils",
"//pkg/testutils/keysutils",
"//pkg/testutils/serverutils",
"//pkg/testutils/sqlutils",
"//pkg/util/encoding",
Expand Down
3 changes: 1 addition & 2 deletions pkg/sql/row/expr_walker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import (
"github.com/cockroachdb/cockroach/pkg/sql/isql"
"github.com/cockroachdb/cockroach/pkg/sql/row"
"github.com/cockroachdb/cockroach/pkg/sql/sem/eval"
"github.com/cockroachdb/cockroach/pkg/testutils/keysutils"
"github.com/cockroachdb/cockroach/pkg/testutils/serverutils"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/log"
Expand Down Expand Up @@ -202,7 +201,7 @@ func TestJobBackedSeqChunkProvider(t *testing.T) {
}

for id, val := range test.seqIDToExpectedVal {
seqDesc := createAndIncrementSeqDescriptor(ctx, t, id, keysutils.TestingSQLCodec,
seqDesc := createAndIncrementSeqDescriptor(ctx, t, id, evalCtx.Codec,
test.incrementBy, test.seqIDToOpts[id], kvDB)
seqMetadata := &row.SequenceMetadata{
SeqDesc: seqDesc,
Expand Down

0 comments on commit ef1ba50

Please sign in to comment.