This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new f30fc4ecc Add Debug to TableReference and ResolvedTableReference
(#3533)
f30fc4ecc is described below
commit f30fc4eccc4337fb0875dd731553a8389f6c6f65
Author: Andy Grove <[email protected]>
AuthorDate: Mon Sep 19 12:38:58 2022 -0600
Add Debug to TableReference and ResolvedTableReference (#3533)
---
datafusion/sql/src/table_reference.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/datafusion/sql/src/table_reference.rs
b/datafusion/sql/src/table_reference.rs
index 44848eb99..27905163d 100644
--- a/datafusion/sql/src/table_reference.rs
+++ b/datafusion/sql/src/table_reference.rs
@@ -16,7 +16,7 @@
// under the License.
// / Represents a resolved path to a table of the form "catalog.schema.table"
-#[derive(Clone, Copy)]
+#[derive(Debug, Clone, Copy)]
pub struct ResolvedTableReference<'a> {
/// The catalog (aka database) containing the table
pub catalog: &'a str,
@@ -27,7 +27,7 @@ pub struct ResolvedTableReference<'a> {
}
/// Represents a path to a table that may require further resolution
-#[derive(Clone, Copy)]
+#[derive(Debug, Clone, Copy)]
pub enum TableReference<'a> {
/// An unqualified table reference, e.g. "table"
Bare {