Skip to content

Make --detect-types the default behavior in 4.0 #679

@simonw

Description

@simonw

Here's another feature that we could change in 4.0:

click.option(
"-d",
"--detect-types",
is_flag=True,
envvar="SQLITE_UTILS_DETECT_TYPES",
help="Detect types for columns in CSV/TSV data",
),

It's already the default for the newer memory command, which instead has a --no-detect-types option:

@click.option(
"-n",
"--no-detect-types",
is_flag=True,
help="Treat all CSV/TSV columns as TEXT",
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions