mirror of
https://github.com/grafana/grafana.git
synced 2025-09-27 07:33:57 +08:00
ignore information_schema tables
This commit is contained in:
@ -86,7 +86,7 @@ export class MysqlMetaQuery {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildTableQuery() {
|
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) {
|
buildColumnQuery(type?: string) {
|
||||||
|
Reference in New Issue
Block a user