Skip to content

Commit ae473ce

Browse files
committed
Removing check that offsets larger than INT32 are not allowed.
1 parent 7fe53da commit ae473ce

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/expression_executor/specializations/gpu_execute_reference.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ std::unique_ptr<cudf::column> GpuExpressionExecutor::Execute(const BoundReferenc
2828
}
2929
return GpuDispatcher::DispatchMaterialize(input_column.get(), resource_ref, execution_stream);
3030
}
31-
if (input_column->data_wrapper.type.id() == GPUColumnTypeId::VARCHAR &&
32-
input_column->data_wrapper.num_bytes > INT32_MAX)
33-
{
34-
throw NotImplementedException(
35-
"Execute[Reference]: string offsets larger than int32_t are not supported in libcudf");
36-
}
3731
if (input_column->column_length > INT32_MAX)
3832
{
3933
throw NotImplementedException(

0 commit comments

Comments
 (0)