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

Skip to content

Commit f3e3420

Browse files
committed
fix for a bug reported by Marcos Mateos Garcia (ValueError)
1 parent 5f7f4bf commit f3e3420

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
@@ -812,7 +812,7 @@ def expandAsteriskForColumns(expression):
812812
dbTbl = asterisk.group(1)
813813

814814
if dbTbl and "." in dbTbl:
815-
conf.db, conf.tbl = dbTbl.split(".")
815+
conf.db, conf.tbl = dbTbl.split(".", 1)
816816
else:
817817
conf.tbl = dbTbl
818818

0 commit comments

Comments
 (0)