We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db55113 commit 9294c41Copy full SHA for 9294c41
include/sparrow_ipc/encapsulated_message.hpp
@@ -1,3 +1,5 @@
1
+#pragma once
2
+
3
#include <cstdint>
4
#include <variant>
5
src/utils.cpp
@@ -6,7 +6,6 @@
6
7
#include "sparrow.hpp"
8
9
-
10
namespace sparrow_ipc
11
{
12
namespace
@@ -377,9 +376,8 @@ namespace sparrow_ipc
377
376
}
378
case sparrow::data_type::MAP:
379
380
- const auto map_type = org::apache::arrow::flatbuf::CreateMap(builder, false); // not
381
- // sorted
382
- // keys
+ // not sorted keys
+ const auto map_type = org::apache::arrow::flatbuf::CreateMap(builder, false);
383
return {org::apache::arrow::flatbuf::Type::Map, map_type.Union()};
384
385
case sparrow::data_type::DENSE_UNION:
0 commit comments