-
-
Notifications
You must be signed in to change notification settings - Fork 123
Closed
Labels
Description
Here's another feature that we could change in 4.0:
sqlite-utils/sqlite_utils/cli.py
Lines 897 to 903 in fb93452
| 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:
sqlite-utils/sqlite_utils/cli.py
Lines 1858 to 1863 in fb93452
| @click.option( | |
| "-n", | |
| "--no-detect-types", | |
| is_flag=True, | |
| help="Treat all CSV/TSV columns as TEXT", | |
| ) |