Improve RE in sql logging to add possibility of "" in table definition

bzr revid: ced-f3071223d80ff4d82ac2bcd18554613b45132439
This commit is contained in:
ced 2007-08-30 14:22:06 +00:00
parent fa891a4496
commit f8471796a3
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ import sys,os
import re
from mx import DateTime as mdt
re_from = re.compile('.* from ([a-zA-Z_0-9]+) .*$');
re_into = re.compile('.* into ([a-zA-Z_0-9]+) .*$');
re_from = re.compile('.* from "?([a-zA-Z_0-9]+)"? .*$');
re_into = re.compile('.* into "?([a-zA-Z_0-9]+)"? .*$');
class fake_cursor:
nbr = 0