You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What happened:
get_add_actions() MAX is not showing complete value What you expected to happen:
MAX to show complete max value for the column but it limits to only max 30-40 characters How to reproduce it:
item = dt.get_add_actions().to_pydict()['max']
for k in item:
print(['columnName']) More details:
each of this rows contains atleast 5000 characters but its restricted to only 30-40 characters, hence not able to find max length of column using get_add_actions
The text was updated successfully, but these errors were encountered:
Hello. String statistics are truncated intentionally. You should not use these statistics to find the max. If you read the Delta Protocol on statistics, you'll notice there is a footnote:
String columns are cut off at a fixed prefix length.
Environment
Delta-rs version: 0.10.0
Binding:
Environment:
Bug
What happened:
get_add_actions() MAX is not showing complete value
What you expected to happen:
MAX to show complete max value for the column but it limits to only max 30-40 characters
How to reproduce it:
item = dt.get_add_actions().to_pydict()['max']
for k in item:
print(['columnName'])
More details:
each of this rows contains atleast 5000 characters but its restricted to only 30-40 characters, hence not able to find max length of column using get_add_actions
The text was updated successfully, but these errors were encountered: