You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
// Get list of all objects in both databases, excluding virtual tables because they tend to be unpredictable
112
112
varstmt*sqlite.Stmt
113
113
stmt, err=sdb.Prepare("SELECT name, type FROM main.sqlite_master WHERE name NOT LIKE 'sqlite_%' AND (type != 'table' OR (type = 'table' AND sql NOT LIKE 'CREATE VIRTUAL%%'))\n"+
114
-
" UNION\n"+
115
-
"SELECT name, type FROM aux.sqlite_master WHERE name NOT LIKE 'sqlite_%' AND (type != 'table' OR (type = 'table' AND sql NOT LIKE 'CREATE VIRTUAL%%'))\n"+
116
-
" ORDER BY name")
114
+
" UNION\n"+
115
+
"SELECT name, type FROM aux.sqlite_master WHERE name NOT LIKE 'sqlite_%' AND (type != 'table' OR (type = 'table' AND sql NOT LIKE 'CREATE VIRTUAL%%'))\n"+
116
+
" ORDER BY name")
117
117
iferr!=nil {
118
118
log.Printf("Error when preparing statement for object list in dbDiff(): %s\n", err)
0 commit comments