Skip to content

Commit

Permalink
Revert "chore: Remove TODO to align with main"
Browse files Browse the repository at this point in the history
This reverts commit 21b8ce4.
  • Loading branch information
kazuyukitanimura committed Jul 2, 2024
1 parent c9f28e0 commit fb6c81b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ public UTF8String getUTF8String(int rowId) {
byte[] result = new byte[length];
Platform.copyMemory(
null, valueBufferAddress + offset, result, Platform.BYTE_ARRAY_OFFSET, length);

if (!isUuid) {
return UTF8String.fromBytes(result);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1396,6 +1396,8 @@ class CometExecSuite extends CometTestBase {
}

test("RowToColumnar over RangeExec directly is eliminated for row output") {
// TODO: Temporarily ignore until we can determine why 3.4.3 plans differ from 3.4.2
assume(spark.version.equals("3.4.2"), "This test runs only on 3.4.2")
Seq("true", "false").foreach(aqe => {
Seq(500, 900).foreach { batchSize =>
withSQLConf(
Expand Down

0 comments on commit fb6c81b

Please sign in to comment.