mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-26 02:44:33 +02:00
New options for analyze-tables - refs #544
This change adds three new options and modifies the `analyze_tables` function and `analyze_column` method in the `cli.py` and `db.py` modules respectively. The new options are `common_limit`, `no_most`, and `no_least`. The `common_limit` option specifies how many common values should be returned by `analyze_column` method, by default it's set to 10. The `no_most` and `no_least` options, when set to True, skip returning the most and least common values, respectively. The `analyze_tables` function was modified to pass the new options to the `_analyze` method, and the `analyze_column` method in the `db.py` module was modified to use the newly added options. Now, when `analyze_column` is called, it checks if `most_common` or `least_common` options are set to True before running the corresponding query. If the `num_distinct` value is less than or equal to `common_limit`, it doesn't run the least common query. The results from the most and least common queries are sorted before being returned.
This commit is contained in:
parent
b3b100d7f5
commit
1c1991b447
2 changed files with 46 additions and 25 deletions
|
|
@ -2639,12 +2639,20 @@ def insert_files(
|
|||
help="Specific columns to analyze",
|
||||
)
|
||||
@click.option("--save", is_flag=True, help="Save results to _analyze_tables table")
|
||||
@click.option("--common-limit", type=int, default=10, help="How many common values")
|
||||
@click.option("--no-most", is_flag=True, default=False, help="Skip most common values")
|
||||
@click.option(
|
||||
"--no-least", is_flag=True, default=False, help="Skip least common values"
|
||||
)
|
||||
@load_extension_option
|
||||
def analyze_tables(
|
||||
path,
|
||||
tables,
|
||||
columns,
|
||||
save,
|
||||
common_limit,
|
||||
no_most,
|
||||
no_least,
|
||||
load_extension,
|
||||
):
|
||||
"""Analyze the columns in one or more tables
|
||||
|
|
@ -2656,10 +2664,10 @@ def analyze_tables(
|
|||
"""
|
||||
db = sqlite_utils.Database(path)
|
||||
_load_extensions(db, load_extension)
|
||||
_analyze(db, tables, columns, save)
|
||||
_analyze(db, tables, columns, save, common_limit, no_most, no_least)
|
||||
|
||||
|
||||
def _analyze(db, tables, columns, save):
|
||||
def _analyze(db, tables, columns, save, common_limit=10, no_most=False, no_least=False):
|
||||
if not tables:
|
||||
tables = db.table_names()
|
||||
todo = []
|
||||
|
|
@ -2672,7 +2680,12 @@ def _analyze(db, tables, columns, save):
|
|||
# Now we now how many we need to do
|
||||
for i, (table, column) in enumerate(todo):
|
||||
column_details = db[table].analyze_column(
|
||||
column, total_rows=table_counts[table], value_truncate=80
|
||||
column,
|
||||
common_limit=common_limit,
|
||||
total_rows=table_counts[table],
|
||||
value_truncate=80,
|
||||
most_common=not no_most,
|
||||
least_common=not no_least,
|
||||
)
|
||||
if save:
|
||||
db["_analyze_tables_"].insert(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue