Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67f342 commit 76a0d20Copy full SHA for 76a0d20
1 file changed
lib/core/common.py
@@ -2462,7 +2462,7 @@ def parseSqliteTableSchema(value):
2462
table = {}
2463
columns = {}
2464
2465
- for match in re.finditer(r"(\w+)\s+(TEXT|NUMERIC|INTEGER|REAL|NONE)", value):
+ for match in re.finditer(r"(\w+)\s+(TEXT|NUMERIC|INTEGER|REAL|NONE)\b", value, re.I):
2466
columns[match.group(1)] = match.group(2)
2467
2468
table[conf.tbl] = columns
0 commit comments