Skip to content

Commit

Permalink
refactor: naming on const in query executor
Browse files Browse the repository at this point in the history
  • Loading branch information
hiltontj committed May 13, 2024
1 parent e3aa631 commit 0b87130
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions influxdb3_server/src/query_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ impl<B: WriteBuffer> TableProvider for QueryTable<B> {

pub const SYSTEM_SCHEMA: &str = "system";

const _QUERIES_TABLE: &str = "queries";
const QUERIES_TABLE: &str = "queries";
const _PARQUET_FILES_TABLE: &str = "parquet_files";

struct SystemSchemaProvider {
Expand All @@ -592,7 +592,7 @@ impl SystemSchemaProvider {
let queries = Arc::new(SystemTableProvider::new(Arc::new(QueriesTable::new(
query_log,
))));
tables.insert(_QUERIES_TABLE, queries);
tables.insert(QUERIES_TABLE, queries);
}
Self { tables }
}
Expand Down

0 comments on commit 0b87130

Please sign in to comment.