Tests and docs for new analyze_column() parameters, refs #544

This commit is contained in:
Simon Willison 2023-05-21 09:06:21 -07:00
commit 9f23e68cf0
3 changed files with 58 additions and 8 deletions

View file

@ -3436,6 +3436,8 @@ class Table(Queryable):
:param common_limit: Show this many column values
:param value_truncate: Truncate display of common values to this many characters
:param total_rows: Optimization - pass the total number of rows in the table to save running a fresh ``count(*)`` query
:param most_common: If ``True``, calculate the most common values
:param least_common: If ``True``, calculate the least common values
"""
db = self.db
table = self.name