SQLite table dumping compatibility improvements. (#4205)

* Fix sqlite regex for create table to support implicit column types

* Fix sqlite when dumping large tables
This commit is contained in:
Karim Kanso
2020-05-20 14:35:20 +01:00
committed by GitHub
parent 667e4d00f2
commit 9a36357c52
2 changed files with 4 additions and 2 deletions

View File

@@ -131,6 +131,8 @@ class Entries(object):
try:
if Backend.isDbms(DBMS.INFORMIX):
kb.dumpTable = "%s:%s" % (conf.db, tbl)
elif Backend.isDbms(DBMS.SQLITE):
kb.dumpTable = tbl
else:
kb.dumpTable = "%s.%s" % (conf.db, tbl)