Skip to content

Commit 05a6a5d

Browse files
committed
[patch] Allow period in data item names
1 parent e360b36 commit 05a6a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iotfunctions/dbhelper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
logger = logging.getLogger(__name__)
1919
SQL_PATTERN = re.compile('\w*')
20-
SQL_PATTERN_EXTENDED = re.compile('[\w-]*')
20+
SQL_PATTERN_EXTENDED = re.compile('[\w\-.]*')
2121
SQL_PATTERN_EXTENDED2 = re.compile('^[\w\-.][\w\-.\;\,\/\s?]*')
2222

2323
# PostgreSQL Queries

0 commit comments

Comments
 (0)