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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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)