Skip to content

Commit 0bf74b3

Browse files
authored
Numeric prefix schema support for cursor.executemany() (#382)
1 parent dfe7f53 commit 0bf74b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vertica_python/vertica/cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
file_type = file_type + (file,)
118118

119119

120-
RE_NAME_BASE = u"[a-zA-Z_][\\w\\d\\$_]*"
120+
RE_NAME_BASE = u"[0-9a-zA-Z_][\\w\\d\\$_]*"
121121
RE_NAME = u'(("{0}")|({0}))'.format(RE_NAME_BASE)
122122
RE_BASIC_INSERT_STAT = (
123123
u"INSERT\\s+INTO\\s+(?P<target>({0}\\.)?{0})"

0 commit comments

Comments
 (0)