Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 76a0d20

Browse files
committed
Minor patch
1 parent b67f342 commit 76a0d20

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2462,7 +2462,7 @@ def parseSqliteTableSchema(value):
24622462
table = {}
24632463
columns = {}
24642464

2465-
for match in re.finditer(r"(\w+)\s+(TEXT|NUMERIC|INTEGER|REAL|NONE)", value):
2465+
for match in re.finditer(r"(\w+)\s+(TEXT|NUMERIC|INTEGER|REAL|NONE)\b", value, re.I):
24662466
columns[match.group(1)] = match.group(2)
24672467

24682468
table[conf.tbl] = columns

0 commit comments

Comments
 (0)