From 5b0cb71e2090bf9c3d5fb2129d959460e212e31d Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Tue, 2 Dec 2025 08:21:15 -0800 Subject: [PATCH] Correct linked object-oriened join methods This fixes the deprecation notice for `cudf::left_semi_join` to link to `cudf::filtered::semi_join` and `cudf::left_anti_join` to link to `cudf::filtered::anti_join`. --- cpp/include/cudf/join/join.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/include/cudf/join/join.hpp b/cpp/include/cudf/join/join.hpp index fb29ac75b46..4d8e1bb5435 100644 --- a/cpp/include/cudf/join/join.hpp +++ b/cpp/include/cudf/join/join.hpp @@ -205,7 +205,7 @@ full_join(cudf::table_view const& left_keys, * @brief Returns a vector of row indices corresponding to a left semi-join * between the specified tables. * - * @deprecated Use the object-oriented filtered_join `cudf::filtered_join::anti_join` instead + * @deprecated Use the object-oriented filtered_join `cudf::filtered_join::semi_join` instead * * The returned vector contains the row indices from the left table * for which there is a matching row in the right table. @@ -237,7 +237,7 @@ full_join(cudf::table_view const& left_keys, * @brief Returns a vector of row indices corresponding to a left anti join * between the specified tables. * - * @deprecated Use the object-oriented filtered_join `cudf::filtered_join::semi_join` instead + * @deprecated Use the object-oriented filtered_join `cudf::filtered_join::anti_join` instead * * The returned vector contains the row indices from the left table * for which there is no matching row in the right table.