From 82a5ec6f94e77334e1223fe698897583091814d1 Mon Sep 17 00:00:00 2001 From: chielP Date: Tue, 18 Jun 2024 09:19:24 +0200 Subject: [PATCH] apply --- crates/polars-plan/src/dsl/cat.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/polars-plan/src/dsl/cat.rs b/crates/polars-plan/src/dsl/cat.rs index 8ffe200fc7e0..1bb3150347b4 100644 --- a/crates/polars-plan/src/dsl/cat.rs +++ b/crates/polars-plan/src/dsl/cat.rs @@ -6,6 +6,6 @@ pub struct CategoricalNameSpace(pub(crate) Expr); impl CategoricalNameSpace { pub fn get_categories(self) -> Expr { self.0 - .map_private(CategoricalFunction::GetCategories.into()) + .apply_private(CategoricalFunction::GetCategories.into()) } }