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 c526fa0 commit ae39b25Copy full SHA for ae39b25
presto-native-execution/presto_cpp/main/tests/PrestoExchangeSourceTest.cpp
@@ -411,7 +411,7 @@ class Producer {
411
bool receivedDeleteResults_ = false;
412
};
413
414
-std::string toString(exec::SerializedPage* page) {
+std::string toString(exec::SerializedPageBase* page) {
415
auto input = page->prepareStreamForDeserialize();
416
417
auto numBytes = input->read<int32_t>();
@@ -421,7 +421,7 @@ std::string toString(exec::SerializedPage* page) {
421
return std::string(data);
422
}
423
424
-std::unique_ptr<exec::SerializedPage> waitForNextPage(
+std::unique_ptr<exec::SerializedPageBase> waitForNextPage(
425
const std::shared_ptr<exec::ExchangeQueue>& queue) {
426
bool atEnd;
427
facebook::velox::ContinueFuture future;
presto-native-execution/velox
0 commit comments