From a456e49524f77cea7f3dde501ce47e6a5c86cc8e Mon Sep 17 00:00:00 2001 From: "Robert (Bobby) Evans" Date: Fri, 6 May 2022 10:57:12 -0500 Subject: [PATCH] Updated docs --- java/src/main/java/ai/rapids/cudf/ColumnView.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/java/src/main/java/ai/rapids/cudf/ColumnView.java b/java/src/main/java/ai/rapids/cudf/ColumnView.java index cc803fabb02..e871da18966 100644 --- a/java/src/main/java/ai/rapids/cudf/ColumnView.java +++ b/java/src/main/java/ai/rapids/cudf/ColumnView.java @@ -233,6 +233,8 @@ public final ColumnView getChildColumnView(int childIndex) { /** * Get a ColumnView that is the offsets for this list. + * Please note that it is the responsibility of the caller to close this view, and the parent + * column must out live this view. */ public ColumnView getListOffsetsView() { assert(getType().equals(DType.LIST));