Skip to content

Commit

Permalink
Merge #105018
Browse files Browse the repository at this point in the history
105018: changefeedccl: tweak structs in TestParquetRows to appease linter r=jayshrivastava a=michae2

Me: shakes fist at linter. "Damn you, linter! Damn you!"

Epic: None
Release note: None

Co-authored-by: Michael Erickson <[email protected]>
  • Loading branch information
craig[bot] and michae2 committed Jun 16, 2023
2 parents d5c4170 + e771683 commit 41a817f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/ccl/changefeedccl/parquet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,16 @@ func TestParquetRows(t *testing.T) {
},
expectedDatumRows: [][]tree.Datum{
{tree.NewDInt(0), tree.NewDString("a1"),
&tree.DUuid{uuid.FromStringOrNil("2fec7a4b-0a78-40ce-92e0-d1c0fac70436")},
&tree.DUuid{UUID: uuid.FromStringOrNil("2fec7a4b-0a78-40ce-92e0-d1c0fac70436")},
parquetEventTypeDatumStringMap[parquetEventInsert]},
{tree.NewDInt(1), tree.NewDString("b1"),
&tree.DUuid{uuid.FromStringOrNil("0ce43188-e4a9-4b73-803b-a253abc57e6b")},
&tree.DUuid{UUID: uuid.FromStringOrNil("0ce43188-e4a9-4b73-803b-a253abc57e6b")},
parquetEventTypeDatumStringMap[parquetEventInsert]},
{tree.NewDInt(2), tree.NewDString("c1"),
&tree.DUuid{uuid.FromStringOrNil("5a02bd48-ba64-4134-9199-844c1517f722")},
&tree.DUuid{UUID: uuid.FromStringOrNil("5a02bd48-ba64-4134-9199-844c1517f722")},
parquetEventTypeDatumStringMap[parquetEventInsert]},
{tree.NewDInt(1), tree.NewDString("changed"),
&tree.DUuid{uuid.FromStringOrNil("0ce43188-e4a9-4b73-803b-a253abc57e6b")},
&tree.DUuid{UUID: uuid.FromStringOrNil("0ce43188-e4a9-4b73-803b-a253abc57e6b")},
parquetEventTypeDatumStringMap[parquetEventUpdate]},
{tree.NewDInt(0), tree.DNull, tree.DNull, parquetEventTypeDatumStringMap[parquetEventDelete]},
},
Expand Down

0 comments on commit 41a817f

Please sign in to comment.