Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement iterator facade for external sort. #4914

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion experimental/tiledb/common/dag/utility/range_join.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
#include <type_traits>
#include <utility>
#include <vector>
#include "arrow_proxy.hpp"
#include "tiledb/common/arrow_proxy.hpp"

#include "external/include/span/span.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
* THE SOFTWARE.
*/

#include "../arrow_proxy.hpp"
#include "../bounded_buffer.h"
#include "../print_types.h"
#include "../range_join.h"
#include "../spinlock.h"
#include "../traits.h"
#include "tiledb/common/arrow_proxy.hpp"

int main() {
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* The MIT License
*
* @copyright Copyright (c) 2022 TileDB, Inc.
* @copyright Copyright (c) 2022-2024 TileDB, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -52,4 +52,7 @@ struct arrow_proxy {
}
};

template <typename T>
arrow_proxy(T&&) -> arrow_proxy<T>;

#endif // TILEDB_ARROW_PROXY_HPP
Loading
Loading