From 9c9df64c9ed8ca7370135c84b5eb15b161537b91 Mon Sep 17 00:00:00 2001 From: dtenwolde Date: Wed, 28 Jun 2023 10:58:10 +0200 Subject: [PATCH] Improved error testing Commented out buggy test --- .../transform/statement/transform_create_property_graph.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/parser/transform/statement/transform_create_property_graph.cpp b/src/parser/transform/statement/transform_create_property_graph.cpp index 555517519ac..22766b2098b 100644 --- a/src/parser/transform/statement/transform_create_property_graph.cpp +++ b/src/parser/transform/statement/transform_create_property_graph.cpp @@ -147,7 +147,6 @@ unique_ptr Transformer::TransformCreatePropertyGraph(duckdb_lib info->label_map[label] = pg_table.get(); } info->label_map[pg_table->main_label] = pg_table.get(); - //! TODO Check if moving the pointer doesn't break the label_map pointers info->edge_tables.push_back(std::move(pg_table)); } }