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
returnnil, fmt.Errorf("database connection is not initialized")
39
40
}
40
41
41
-
// Query to select database and table names from the system.tables table.
42
-
// We exclude the 'system' database as it usually contains internal tables.
43
-
// You might want to exclude 'INFORMATION_SCHEMA' or others depending on your needs.
44
-
query:=`SELECT database, name FROM system.tables WHERE database NOT IN ('system', 'information_schema', 'INFORMATION_SCHEMA') ORDER BY database, name;`
42
+
varargs []interface{}
43
+
query:=`
44
+
SELECT database, name
45
+
FROM system.tables
46
+
WHERE database NOT IN ('system', 'information_schema', 'INFORMATION_SCHEMA')`
0 commit comments