mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
ignore information_schema tables
This commit is contained in:
parent
8d73f53e97
commit
cd708d6cb2
@ -86,7 +86,7 @@ export class MysqlMetaQuery {
|
||||
}
|
||||
|
||||
buildTableQuery() {
|
||||
return 'SELECT table_name FROM information_schema.tables ORDER BY table_name';
|
||||
return "SELECT table_name FROM information_schema.tables WHERE table_schema <> 'information_schema' ORDER BY table_name";
|
||||
}
|
||||
|
||||
buildColumnQuery(type?: string) {
|
||||
|
Loading…
Reference in New Issue
Block a user