Skip to content

Commit 96c39f7

Browse files
authored
chore(query): add disable system tables (#14958)
1 parent d7eb8cb commit 96c39f7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/query/service/src/databases/system/system_database.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ impl SystemDatabase {
7878
fn disable_system_tables() -> HashMap<String, bool> {
7979
let mut map = HashMap::new();
8080
map.insert("configs".to_string(), true);
81+
map.insert("tracing".to_string(), true);
8182
map.insert("clusters".to_string(), true);
83+
map.insert("malloc_stats".to_string(), true);
84+
map.insert("build_options".to_string(), true);
8285
map
8386
}
8487

0 commit comments

Comments
 (0)