Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zorancv committed Jun 13, 2024
1 parent 75ba293 commit 96bf13e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions store/postgres/src/relational.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ impl Layout {
let table_name = SqlName::verbatim(POI_TABLE.to_owned());
Table {
object: poi_type.to_owned(),
namespace: SqlName(catalog.site.namespace.to_string()),
qualified_name: SqlName::qualified_name(&catalog.site.namespace, &table_name),
name: table_name,
columns,
Expand Down Expand Up @@ -1497,7 +1496,6 @@ impl Table {

let table = Table {
object: defn.cheap_clone(),
namespace: SqlName::verbatim(catalog.site.namespace.to_string()),
name: table_name,
qualified_name,
// Default `is_account_like` to `false`; the caller should call
Expand All @@ -1517,7 +1515,6 @@ impl Table {
pub fn new_like(&self, namespace: &Namespace, name: &SqlName) -> Arc<Table> {
let other = Table {
object: self.object.clone(),
namespace: SqlName(namespace.to_string()),
name: name.clone(),
qualified_name: SqlName::qualified_name(namespace, name),
columns: self.columns.clone(),
Expand Down

0 comments on commit 96bf13e

Please sign in to comment.