From 528b1c1e7fdf78ae0b55c4e064c63a0262f9607a Mon Sep 17 00:00:00 2001 From: kamille Date: Thu, 17 Aug 2023 11:46:57 +0800 Subject: [PATCH] add comments and todos to `ResolvedTable`. --- query_frontend/src/provider.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/query_frontend/src/provider.rs b/query_frontend/src/provider.rs index 4c90b5af1f..5756aa6a9f 100644 --- a/query_frontend/src/provider.rs +++ b/query_frontend/src/provider.rs @@ -84,6 +84,10 @@ pub enum Error { define_result!(Error); +/// Table with catalog and schema +// TODO: we should enable to get catalog and schema from table +// (for example, store catalog id and schema id in table). +// See issue: https://github.com/CeresDB/ceresdb/issues/1157 #[derive(Debug, Clone)] pub struct ResolvedTable { pub catalog: String,