Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit e1551a1

Browse files
committed
Version bump to 0.0.3
1 parent bcb7f3e commit e1551a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sqeleton"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "Python library for querying SQL databases"
55
authors = ["Erez Shinan <erezshin@gmail.com>"]
66
license = "MIT"

sqeleton/databases/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ def _refine_coltypes(self, table_path: DbPath, col_dict: Dict[str, ColType], whe
465465
alphanum_samples = [s for s in samples if String_Alphanum.test_value(s)]
466466
if alphanum_samples:
467467
if len(alphanum_samples) != len(samples):
468-
logger.warning(
468+
logger.debug(
469469
f"Mixed Alphanum/Non-Alphanum values detected in column {'.'.join(table_path)}.{col_name}. It cannot be used as a key."
470470
)
471471
else:

0 commit comments

Comments
 (0)