We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7606ed3 commit 880ef19Copy full SHA for 880ef19
cpp/velox/jni/JniHashTable.cc
@@ -26,6 +26,7 @@
26
#include "substrait/type.pb.h"
27
#include "velox/core/PlanNode.h"
28
#include "velox/type/Type.h"
29
+#include <iostream>
30
31
namespace gluten {
32
@@ -68,6 +69,7 @@ std::shared_ptr<facebook::velox::exec::HashTableBuilder> nativeHashTableBuild(
68
69
bool hasNullKeyValues,
70
std::vector<std::shared_ptr<ColumnarBatch>>& batches,
71
std::shared_ptr<facebook::velox::memory::MemoryPool> memoryPool) {
72
+ std::cout << "nativeHashTableBuild is running" << "\n";
73
auto rowType = std::make_shared<facebook::velox::RowType>(std::move(names), std::move(veloxTypeList));
74
75
auto sJoin = static_cast<substrait::JoinRel_JoinType>(joinType);
0 commit comments