kosiew commented on code in PR #1367:
URL:
https://github.com/apache/datafusion-python/pull/1367#discussion_r2767581954
##########
src/dataframe.rs:
##########
@@ -149,12 +153,12 @@ fn build_formatter_config_from_python(formatter:
&Bound<'_, PyAny>) -> PyResult<
let default_config = FormatterConfig::default();
let max_bytes = get_attr(formatter, "max_memory_bytes",
default_config.max_bytes);
let min_rows = get_attr(formatter, "min_rows_display",
default_config.min_rows);
- let repr_rows = get_attr(formatter, "repr_rows", default_config.repr_rows);
+ let max_rows = get_attr(formatter, "max_rows", default_config.max_rows);
Review Comment:
I'll add the fallback for repr_rows.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]