Skip to content

Commit

Permalink
refactor(ir): rewrite ibis.expr.format using node.map()
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Aug 11, 2023
1 parent d87e65a commit 94ee679
Show file tree
Hide file tree
Showing 40 changed files with 1,407 additions and 1,060 deletions.
3 changes: 3 additions & 0 deletions ibis/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ class Repr(Config):
The maximum number of expression nodes to print when repring.
table_columns : int
The number of columns to show in leaf table expressions.
table_rows : int
The number of rows to show for in memory tables.
query_text_length : int
The maximum number of characters to show in the `query` field repr of
SQLQueryResult operations.
Expand All @@ -121,6 +123,7 @@ class Repr(Config):

depth: Optional[PosInt] = None
table_columns: Optional[PosInt] = None
table_rows: PosInt = 10
query_text_length: PosInt = 80
show_types: bool = False
interactive: Interactive = Interactive()
Expand Down
Loading

0 comments on commit 94ee679

Please sign in to comment.