Skip to content

Commit

Permalink
Deprecate decimal_cols_as_float in ORC reader (#10142)
Browse files Browse the repository at this point in the history
Pariatlly resolves: #10129

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - Vyas Ramasubramani (https://github.com/vyasr)

URL: #10142
  • Loading branch information
galipremsagar authored Jan 27, 2022
1 parent 53a73f7 commit b684f17
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion python/cudf/cudf/io/orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,12 @@ def read_orc(
**kwargs,
):
"""{docstring}"""

if decimal_cols_as_float is not None:
warnings.warn(
"`decimal_cols_as_float` is deprecated and will be removed in "
"the future",
FutureWarning,
)
from cudf import DataFrame

# Multiple sources are passed as a list. If a single source is passed,
Expand Down

0 comments on commit b684f17

Please sign in to comment.