duckdb 0.7.2-dev1803.0 → 0.7.2-dev1867.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/duckdb/src/catalog/catalog.cpp +27 -27
- package/src/duckdb/src/catalog/catalog_entry/duck_schema_entry.cpp +6 -6
- package/src/duckdb/src/catalog/catalog_set.cpp +27 -25
- package/src/duckdb/src/catalog/default/default_functions.cpp +4 -4
- package/src/duckdb/src/catalog/default/default_types.cpp +4 -4
- package/src/duckdb/src/catalog/default/default_views.cpp +4 -4
- package/src/duckdb/src/catalog/dependency_list.cpp +7 -6
- package/src/duckdb/src/catalog/dependency_manager.cpp +44 -38
- package/src/duckdb/src/common/serializer/buffered_file_reader.cpp +11 -6
- package/src/duckdb/src/common/types/batched_data_collection.cpp +2 -1
- package/src/duckdb/src/common/types/column_data_allocator.cpp +1 -0
- package/src/duckdb/src/common/types/vector.cpp +2 -2
- package/src/duckdb/src/common/vector_operations/vector_copy.cpp +14 -11
- package/src/duckdb/src/execution/operator/aggregate/distinct_aggregate_data.cpp +1 -1
- package/src/duckdb/src/execution/operator/aggregate/physical_window.cpp +51 -50
- package/src/duckdb/src/execution/operator/persistent/physical_batch_insert.cpp +14 -13
- package/src/duckdb/src/execution/operator/persistent/physical_insert.cpp +20 -20
- package/src/duckdb/src/execution/operator/schema/physical_create_table.cpp +2 -2
- package/src/duckdb/src/execution/physical_plan/plan_create_index.cpp +1 -1
- package/src/duckdb/src/execution/physical_plan/plan_create_table.cpp +3 -3
- package/src/duckdb/src/execution/physical_plan/plan_delete.cpp +1 -1
- package/src/duckdb/src/execution/physical_plan/plan_insert.cpp +1 -1
- package/src/duckdb/src/execution/physical_plan/plan_update.cpp +1 -1
- package/src/duckdb/src/function/aggregate/sorted_aggregate_function.cpp +3 -3
- package/src/duckdb/src/function/cast/cast_function_set.cpp +2 -1
- package/src/duckdb/src/function/scalar/sequence/nextval.cpp +29 -29
- package/src/duckdb/src/function/scalar/string/damerau_levenshtein.cpp +106 -0
- package/src/duckdb/src/function/scalar/string/regexp.cpp +145 -28
- package/src/duckdb/src/function/scalar/string_functions.cpp +1 -0
- package/src/duckdb/src/function/table/checkpoint.cpp +4 -4
- package/src/duckdb/src/function/table/system/duckdb_columns.cpp +24 -24
- package/src/duckdb/src/function/table/system/duckdb_constraints.cpp +7 -6
- package/src/duckdb/src/function/table/system/duckdb_databases.cpp +1 -1
- package/src/duckdb/src/function/table/system/duckdb_dependencies.cpp +11 -11
- package/src/duckdb/src/function/table/system/pragma_database_size.cpp +1 -1
- package/src/duckdb/src/function/table/system/pragma_table_info.cpp +17 -18
- package/src/duckdb/src/function/table/table_scan.cpp +8 -11
- package/src/duckdb/src/function/table/version/pragma_version.cpp +2 -2
- package/src/duckdb/src/include/duckdb/catalog/catalog.hpp +9 -9
- package/src/duckdb/src/include/duckdb/catalog/catalog_entry_map.hpp +38 -0
- package/src/duckdb/src/include/duckdb/catalog/catalog_transaction.hpp +4 -3
- package/src/duckdb/src/include/duckdb/catalog/default/default_functions.hpp +2 -2
- package/src/duckdb/src/include/duckdb/catalog/default/default_types.hpp +2 -2
- package/src/duckdb/src/include/duckdb/catalog/default/default_views.hpp +2 -2
- package/src/duckdb/src/include/duckdb/catalog/dependency.hpp +4 -5
- package/src/duckdb/src/include/duckdb/catalog/dependency_list.hpp +4 -5
- package/src/duckdb/src/include/duckdb/catalog/dependency_manager.hpp +10 -9
- package/src/duckdb/src/include/duckdb/common/allocator.hpp +2 -1
- package/src/duckdb/src/include/duckdb/common/field_writer.hpp +1 -1
- package/src/duckdb/src/include/duckdb/common/helper.hpp +9 -0
- package/src/duckdb/src/include/duckdb/common/optional_ptr.hpp +29 -6
- package/src/duckdb/src/include/duckdb/common/serializer/buffered_file_reader.hpp +6 -5
- package/src/duckdb/src/include/duckdb/common/serializer.hpp +1 -1
- package/src/duckdb/src/include/duckdb/common/types/row_data_collection.hpp +1 -0
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/physical_batch_insert.hpp +2 -2
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/physical_insert.hpp +5 -5
- package/src/duckdb/src/include/duckdb/execution/operator/schema/physical_create_table.hpp +2 -2
- package/src/duckdb/src/include/duckdb/function/cast/default_casts.hpp +3 -2
- package/src/duckdb/src/include/duckdb/function/scalar/string_functions.hpp +4 -0
- package/src/duckdb/src/include/duckdb/main/database_manager.hpp +4 -3
- package/src/duckdb/src/include/duckdb/main/query_result.hpp +3 -2
- package/src/duckdb/src/include/duckdb/optimizer/filter_combiner.hpp +7 -7
- package/src/duckdb/src/include/duckdb/optimizer/matcher/expression_matcher.hpp +11 -11
- package/src/duckdb/src/include/duckdb/optimizer/matcher/set_matcher.hpp +8 -8
- package/src/duckdb/src/include/duckdb/optimizer/rule/arithmetic_simplification.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/case_simplification.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/comparison_simplification.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/conjunction_simplification.hpp +2 -2
- package/src/duckdb/src/include/duckdb/optimizer/rule/constant_folding.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/date_part_simplification.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/distributivity.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/empty_needle_removal.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/enum_comparison.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/equal_or_null_simplification.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/in_clause_simplification.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/like_optimizations.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/move_constants.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/ordered_aggregate_optimizer.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule/regex_optimizations.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/rule.hpp +2 -2
- package/src/duckdb/src/include/duckdb/parser/base_expression.hpp +1 -1
- package/src/duckdb/src/include/duckdb/parser/expression_map.hpp +19 -6
- package/src/duckdb/src/include/duckdb/parser/expression_util.hpp +1 -1
- package/src/duckdb/src/include/duckdb/planner/expression.hpp +5 -2
- package/src/duckdb/src/include/duckdb/planner/expression_binder/base_select_binder.hpp +1 -1
- package/src/duckdb/src/include/duckdb/planner/expression_binder/order_binder.hpp +3 -3
- package/src/duckdb/src/include/duckdb/storage/buffer/block_handle.hpp +10 -2
- package/src/duckdb/src/include/duckdb/storage/buffer/buffer_pool.hpp +1 -0
- package/src/duckdb/src/include/duckdb/storage/buffer_manager.hpp +49 -126
- package/src/duckdb/src/include/duckdb/storage/meta_block_reader.hpp +5 -5
- package/src/duckdb/src/include/duckdb/storage/standard_buffer_manager.hpp +159 -0
- package/src/duckdb/src/include/duckdb/storage/table/column_segment.hpp +1 -0
- package/src/duckdb/src/include/duckdb/transaction/meta_transaction.hpp +6 -5
- package/src/duckdb/src/main/client_context.cpp +1 -1
- package/src/duckdb/src/main/database.cpp +2 -1
- package/src/duckdb/src/main/database_manager.cpp +4 -4
- package/src/duckdb/src/optimizer/common_aggregate_optimizer.cpp +2 -2
- package/src/duckdb/src/optimizer/cse_optimizer.cpp +4 -4
- package/src/duckdb/src/optimizer/deliminator.cpp +13 -11
- package/src/duckdb/src/optimizer/expression_rewriter.cpp +2 -2
- package/src/duckdb/src/optimizer/filter_combiner.cpp +67 -65
- package/src/duckdb/src/optimizer/join_order/cardinality_estimator.cpp +1 -0
- package/src/duckdb/src/optimizer/join_order/join_order_optimizer.cpp +26 -25
- package/src/duckdb/src/optimizer/matcher/expression_matcher.cpp +23 -21
- package/src/duckdb/src/optimizer/rule/arithmetic_simplification.cpp +3 -3
- package/src/duckdb/src/optimizer/rule/case_simplification.cpp +2 -2
- package/src/duckdb/src/optimizer/rule/comparison_simplification.cpp +6 -7
- package/src/duckdb/src/optimizer/rule/conjunction_simplification.cpp +9 -8
- package/src/duckdb/src/optimizer/rule/constant_folding.cpp +7 -7
- package/src/duckdb/src/optimizer/rule/date_part_simplification.cpp +3 -3
- package/src/duckdb/src/optimizer/rule/distributivity.cpp +5 -5
- package/src/duckdb/src/optimizer/rule/empty_needle_removal.cpp +6 -6
- package/src/duckdb/src/optimizer/rule/enum_comparison.cpp +4 -4
- package/src/duckdb/src/optimizer/rule/equal_or_null_simplification.cpp +23 -26
- package/src/duckdb/src/optimizer/rule/in_clause_simplification_rule.cpp +2 -3
- package/src/duckdb/src/optimizer/rule/like_optimizations.cpp +3 -3
- package/src/duckdb/src/optimizer/rule/move_constants.cpp +6 -6
- package/src/duckdb/src/optimizer/rule/ordered_aggregate_optimizer.cpp +2 -2
- package/src/duckdb/src/optimizer/rule/regex_optimizations.cpp +3 -3
- package/src/duckdb/src/parser/expression_util.cpp +6 -6
- package/src/duckdb/src/parser/transform/helpers/transform_groupby.cpp +3 -3
- package/src/duckdb/src/planner/binder/expression/bind_aggregate_expression.cpp +2 -2
- package/src/duckdb/src/planner/binder/query_node/bind_select_node.cpp +3 -3
- package/src/duckdb/src/planner/binder/query_node/bind_setop_node.cpp +5 -5
- package/src/duckdb/src/planner/binder/statement/bind_create_table.cpp +2 -2
- package/src/duckdb/src/planner/expression_binder/base_select_binder.cpp +4 -4
- package/src/duckdb/src/planner/expression_binder/order_binder.cpp +3 -3
- package/src/duckdb/src/storage/buffer/block_handle.cpp +3 -2
- package/src/duckdb/src/storage/buffer/block_manager.cpp +3 -1
- package/src/duckdb/src/storage/buffer/buffer_handle.cpp +1 -0
- package/src/duckdb/src/storage/buffer/buffer_pool_reservation.cpp +3 -0
- package/src/duckdb/src/storage/buffer_manager.cpp +35 -726
- package/src/duckdb/src/storage/checkpoint_manager.cpp +2 -2
- package/src/duckdb/src/storage/meta_block_reader.cpp +6 -5
- package/src/duckdb/src/storage/standard_buffer_manager.cpp +801 -0
- package/src/duckdb/src/storage/wal_replay.cpp +2 -2
- package/src/duckdb/src/transaction/meta_transaction.cpp +13 -13
- package/src/duckdb/src/transaction/transaction.cpp +1 -1
- package/src/duckdb/src/transaction/transaction_context.cpp +1 -1
- package/src/duckdb/ub_src_function_scalar_string.cpp +2 -0
- package/src/duckdb/ub_src_storage.cpp +2 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
#ifndef DUCKDB_VERSION
|
2
|
-
#define DUCKDB_VERSION "0.7.2-
|
2
|
+
#define DUCKDB_VERSION "0.7.2-dev1867"
|
3
3
|
#endif
|
4
4
|
#ifndef DUCKDB_SOURCE_ID
|
5
|
-
#define DUCKDB_SOURCE_ID "
|
5
|
+
#define DUCKDB_SOURCE_ID "084890df27"
|
6
6
|
#endif
|
7
7
|
#include "duckdb/function/table/system_functions.hpp"
|
8
8
|
#include "duckdb/main/database.hpp"
|
@@ -146,31 +146,31 @@ public:
|
|
146
146
|
DUCKDB_API CatalogEntry *CreateIndex(ClientContext &context, CreateIndexInfo *info);
|
147
147
|
|
148
148
|
//! Creates a table in the catalog.
|
149
|
-
DUCKDB_API CatalogEntry *CreateTable(CatalogTransaction transaction, SchemaCatalogEntry
|
149
|
+
DUCKDB_API CatalogEntry *CreateTable(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
150
150
|
BoundCreateTableInfo *info);
|
151
151
|
//! Create a table function in the catalog
|
152
|
-
DUCKDB_API CatalogEntry *CreateTableFunction(CatalogTransaction transaction, SchemaCatalogEntry
|
152
|
+
DUCKDB_API CatalogEntry *CreateTableFunction(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
153
153
|
CreateTableFunctionInfo *info);
|
154
154
|
//! Create a copy function in the catalog
|
155
|
-
DUCKDB_API CatalogEntry *CreateCopyFunction(CatalogTransaction transaction, SchemaCatalogEntry
|
155
|
+
DUCKDB_API CatalogEntry *CreateCopyFunction(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
156
156
|
CreateCopyFunctionInfo *info);
|
157
157
|
//! Create a pragma function in the catalog
|
158
|
-
DUCKDB_API CatalogEntry *CreatePragmaFunction(CatalogTransaction transaction, SchemaCatalogEntry
|
158
|
+
DUCKDB_API CatalogEntry *CreatePragmaFunction(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
159
159
|
CreatePragmaFunctionInfo *info);
|
160
160
|
//! Create a scalar or aggregate function in the catalog
|
161
|
-
DUCKDB_API CatalogEntry *CreateFunction(CatalogTransaction transaction, SchemaCatalogEntry
|
161
|
+
DUCKDB_API CatalogEntry *CreateFunction(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
162
162
|
CreateFunctionInfo *info);
|
163
163
|
//! Creates a view in the catalog
|
164
|
-
DUCKDB_API CatalogEntry *CreateView(CatalogTransaction transaction, SchemaCatalogEntry
|
164
|
+
DUCKDB_API CatalogEntry *CreateView(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
165
165
|
CreateViewInfo *info);
|
166
166
|
//! Creates a table in the catalog.
|
167
|
-
DUCKDB_API CatalogEntry *CreateSequence(CatalogTransaction transaction, SchemaCatalogEntry
|
167
|
+
DUCKDB_API CatalogEntry *CreateSequence(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
168
168
|
CreateSequenceInfo *info);
|
169
169
|
//! Creates a enum in the catalog.
|
170
|
-
DUCKDB_API CatalogEntry *CreateType(CatalogTransaction transaction, SchemaCatalogEntry
|
170
|
+
DUCKDB_API CatalogEntry *CreateType(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
171
171
|
CreateTypeInfo *info);
|
172
172
|
//! Creates a collation in the catalog
|
173
|
-
DUCKDB_API CatalogEntry *CreateCollation(CatalogTransaction transaction, SchemaCatalogEntry
|
173
|
+
DUCKDB_API CatalogEntry *CreateCollation(CatalogTransaction transaction, SchemaCatalogEntry &schema,
|
174
174
|
CreateCollationInfo *info);
|
175
175
|
|
176
176
|
//! Drops an entry from the catalog
|
@@ -0,0 +1,38 @@
|
|
1
|
+
//===----------------------------------------------------------------------===//
|
2
|
+
// DuckDB
|
3
|
+
//
|
4
|
+
// duckdb/catalog/catalog_entry_map.hpp
|
5
|
+
//
|
6
|
+
//
|
7
|
+
//===----------------------------------------------------------------------===//
|
8
|
+
|
9
|
+
#pragma once
|
10
|
+
|
11
|
+
#include "duckdb/common/common.hpp"
|
12
|
+
#include "duckdb/common/unordered_set.hpp"
|
13
|
+
#include "duckdb/common/unordered_map.hpp"
|
14
|
+
|
15
|
+
namespace duckdb {
|
16
|
+
class CatalogEntry;
|
17
|
+
|
18
|
+
struct CatalogEntryHashFunction {
|
19
|
+
uint64_t operator()(const reference<CatalogEntry> &a) const {
|
20
|
+
std::hash<void *> hash_func;
|
21
|
+
return hash_func((void *)&a.get());
|
22
|
+
}
|
23
|
+
};
|
24
|
+
|
25
|
+
struct CatalogEntryEquality {
|
26
|
+
bool operator()(const reference<CatalogEntry> &a, const reference<CatalogEntry> &b) const {
|
27
|
+
return RefersToSameObject(a, b);
|
28
|
+
}
|
29
|
+
};
|
30
|
+
|
31
|
+
using catalog_entry_set_t = unordered_set<reference<CatalogEntry>, CatalogEntryHashFunction, CatalogEntryEquality>;
|
32
|
+
|
33
|
+
template <typename T>
|
34
|
+
using catalog_entry_map_t = unordered_map<reference<CatalogEntry>, T, CatalogEntryHashFunction, CatalogEntryEquality>;
|
35
|
+
|
36
|
+
using catalog_entry_vector_t = vector<reference<CatalogEntry>>;
|
37
|
+
|
38
|
+
} // namespace duckdb
|
@@ -9,6 +9,7 @@
|
|
9
9
|
#pragma once
|
10
10
|
|
11
11
|
#include "duckdb/common/common.hpp"
|
12
|
+
#include "duckdb/common/optional_ptr.hpp"
|
12
13
|
|
13
14
|
namespace duckdb {
|
14
15
|
class Catalog;
|
@@ -20,9 +21,9 @@ struct CatalogTransaction {
|
|
20
21
|
CatalogTransaction(Catalog &catalog, ClientContext &context);
|
21
22
|
CatalogTransaction(DatabaseInstance &db, transaction_t transaction_id_p, transaction_t start_time_p);
|
22
23
|
|
23
|
-
DatabaseInstance
|
24
|
-
ClientContext
|
25
|
-
Transaction
|
24
|
+
optional_ptr<DatabaseInstance> db;
|
25
|
+
optional_ptr<ClientContext> context;
|
26
|
+
optional_ptr<Transaction> transaction;
|
26
27
|
transaction_t transaction_id;
|
27
28
|
transaction_t start_time;
|
28
29
|
|
@@ -23,9 +23,9 @@ struct DefaultMacro {
|
|
23
23
|
|
24
24
|
class DefaultFunctionGenerator : public DefaultGenerator {
|
25
25
|
public:
|
26
|
-
DefaultFunctionGenerator(Catalog &catalog, SchemaCatalogEntry
|
26
|
+
DefaultFunctionGenerator(Catalog &catalog, SchemaCatalogEntry &schema);
|
27
27
|
|
28
|
-
SchemaCatalogEntry
|
28
|
+
SchemaCatalogEntry &schema;
|
29
29
|
|
30
30
|
DUCKDB_API static unique_ptr<CreateMacroInfo> CreateInternalMacroInfo(DefaultMacro &default_macro);
|
31
31
|
DUCKDB_API static unique_ptr<CreateMacroInfo> CreateInternalTableMacroInfo(DefaultMacro &default_macro);
|
@@ -16,9 +16,9 @@ class SchemaCatalogEntry;
|
|
16
16
|
|
17
17
|
class DefaultTypeGenerator : public DefaultGenerator {
|
18
18
|
public:
|
19
|
-
DefaultTypeGenerator(Catalog &catalog, SchemaCatalogEntry
|
19
|
+
DefaultTypeGenerator(Catalog &catalog, SchemaCatalogEntry &schema);
|
20
20
|
|
21
|
-
SchemaCatalogEntry
|
21
|
+
SchemaCatalogEntry &schema;
|
22
22
|
|
23
23
|
public:
|
24
24
|
DUCKDB_API static LogicalTypeId GetDefaultType(const string &name);
|
@@ -16,9 +16,9 @@ class SchemaCatalogEntry;
|
|
16
16
|
|
17
17
|
class DefaultViewGenerator : public DefaultGenerator {
|
18
18
|
public:
|
19
|
-
DefaultViewGenerator(Catalog &catalog, SchemaCatalogEntry
|
19
|
+
DefaultViewGenerator(Catalog &catalog, SchemaCatalogEntry &schema);
|
20
20
|
|
21
|
-
SchemaCatalogEntry
|
21
|
+
SchemaCatalogEntry &schema;
|
22
22
|
|
23
23
|
public:
|
24
24
|
unique_ptr<CatalogEntry> CreateDefaultEntry(ClientContext &context, const string &entry_name) override;
|
@@ -22,13 +22,13 @@ enum class DependencyType {
|
|
22
22
|
};
|
23
23
|
|
24
24
|
struct Dependency {
|
25
|
-
Dependency(CatalogEntry
|
25
|
+
Dependency(CatalogEntry &entry, DependencyType dependency_type = DependencyType::DEPENDENCY_REGULAR)
|
26
26
|
: // NOLINT: Allow implicit conversion from `CatalogEntry`
|
27
27
|
entry(entry), dependency_type(dependency_type) {
|
28
28
|
}
|
29
29
|
|
30
30
|
//! The catalog entry this depends on
|
31
|
-
CatalogEntry
|
31
|
+
reference<CatalogEntry> entry;
|
32
32
|
//! The type of dependency
|
33
33
|
DependencyType dependency_type;
|
34
34
|
};
|
@@ -36,16 +36,15 @@ struct Dependency {
|
|
36
36
|
struct DependencyHashFunction {
|
37
37
|
uint64_t operator()(const Dependency &a) const {
|
38
38
|
std::hash<void *> hash_func;
|
39
|
-
return hash_func((void *)a.entry);
|
39
|
+
return hash_func((void *)&a.entry.get());
|
40
40
|
}
|
41
41
|
};
|
42
42
|
|
43
43
|
struct DependencyEquality {
|
44
44
|
bool operator()(const Dependency &a, const Dependency &b) const {
|
45
|
-
return a.entry
|
45
|
+
return RefersToSameObject(a.entry, b.entry);
|
46
46
|
}
|
47
47
|
};
|
48
|
-
|
49
48
|
using dependency_set_t = unordered_set<Dependency, DependencyHashFunction, DependencyEquality>;
|
50
49
|
|
51
50
|
} // namespace duckdb
|
@@ -8,8 +8,7 @@
|
|
8
8
|
|
9
9
|
#pragma once
|
10
10
|
|
11
|
-
#include "duckdb/
|
12
|
-
#include "duckdb/common/unordered_set.hpp"
|
11
|
+
#include "duckdb/catalog/catalog_entry_map.hpp"
|
13
12
|
|
14
13
|
namespace duckdb {
|
15
14
|
class Catalog;
|
@@ -20,11 +19,11 @@ class DependencyList {
|
|
20
19
|
friend class DependencyManager;
|
21
20
|
|
22
21
|
public:
|
23
|
-
DUCKDB_API void AddDependency(CatalogEntry
|
22
|
+
DUCKDB_API void AddDependency(CatalogEntry &entry);
|
24
23
|
|
25
|
-
DUCKDB_API void VerifyDependencies(Catalog
|
24
|
+
DUCKDB_API void VerifyDependencies(Catalog &catalog, const string &name);
|
26
25
|
|
27
26
|
private:
|
28
|
-
|
27
|
+
catalog_entry_set_t set;
|
29
28
|
};
|
30
29
|
} // namespace duckdb
|
@@ -11,6 +11,7 @@
|
|
11
11
|
#include "duckdb/catalog/catalog_entry.hpp"
|
12
12
|
#include "duckdb/catalog/catalog_set.hpp"
|
13
13
|
#include "duckdb/catalog/dependency.hpp"
|
14
|
+
#include "duckdb/catalog/catalog_entry_map.hpp"
|
14
15
|
#include "duckdb/catalog/catalog_transaction.hpp"
|
15
16
|
|
16
17
|
#include <functional>
|
@@ -28,26 +29,26 @@ public:
|
|
28
29
|
explicit DependencyManager(DuckCatalog &catalog);
|
29
30
|
|
30
31
|
//! Erase the object from the DependencyManager; this should only happen when the object itself is destroyed
|
31
|
-
void EraseObject(CatalogEntry
|
32
|
+
void EraseObject(CatalogEntry &object);
|
32
33
|
|
33
34
|
//! Scans all dependencies, returning pairs of (object, dependent)
|
34
|
-
void Scan(const std::function<void(CatalogEntry
|
35
|
+
void Scan(const std::function<void(CatalogEntry &, CatalogEntry &, DependencyType)> &callback);
|
35
36
|
|
36
|
-
void AddOwnership(CatalogTransaction transaction, CatalogEntry
|
37
|
+
void AddOwnership(CatalogTransaction transaction, CatalogEntry &owner, CatalogEntry &entry);
|
37
38
|
|
38
39
|
private:
|
39
40
|
DuckCatalog &catalog;
|
40
41
|
//! Map of objects that DEPEND on [object], i.e. [object] can only be deleted when all entries in the dependency map
|
41
42
|
//! are deleted.
|
42
|
-
|
43
|
+
catalog_entry_map_t<dependency_set_t> dependents_map;
|
43
44
|
//! Map of objects that the source object DEPENDS on, i.e. when any of the entries in the vector perform a CASCADE
|
44
45
|
//! drop then [object] is deleted as well
|
45
|
-
|
46
|
+
catalog_entry_map_t<catalog_entry_set_t> dependencies_map;
|
46
47
|
|
47
48
|
private:
|
48
|
-
void AddObject(CatalogTransaction transaction, CatalogEntry
|
49
|
-
void DropObject(CatalogTransaction transaction, CatalogEntry
|
50
|
-
void AlterObject(CatalogTransaction transaction, CatalogEntry
|
51
|
-
void EraseObjectInternal(CatalogEntry
|
49
|
+
void AddObject(CatalogTransaction transaction, CatalogEntry &object, DependencyList &dependencies);
|
50
|
+
void DropObject(CatalogTransaction transaction, CatalogEntry &object, bool cascade);
|
51
|
+
void AlterObject(CatalogTransaction transaction, CatalogEntry &old_obj, CatalogEntry &new_obj);
|
52
|
+
void EraseObjectInternal(CatalogEntry &object);
|
52
53
|
};
|
53
54
|
} // namespace duckdb
|
@@ -9,6 +9,7 @@
|
|
9
9
|
#pragma once
|
10
10
|
|
11
11
|
#include "duckdb/common/common.hpp"
|
12
|
+
#include "duckdb/common/optional_ptr.hpp"
|
12
13
|
|
13
14
|
namespace duckdb {
|
14
15
|
class Allocator;
|
@@ -56,7 +57,7 @@ public:
|
|
56
57
|
void Reset();
|
57
58
|
|
58
59
|
private:
|
59
|
-
Allocator
|
60
|
+
optional_ptr<Allocator> allocator;
|
60
61
|
data_ptr_t pointer;
|
61
62
|
idx_t allocated_size;
|
62
63
|
};
|
@@ -170,4 +170,13 @@ void AssignSharedPointer(shared_ptr<T> &target, const shared_ptr<T> &source) {
|
|
170
170
|
}
|
171
171
|
}
|
172
172
|
|
173
|
+
template<typename T>
|
174
|
+
using reference = std::reference_wrapper<T>;
|
175
|
+
|
176
|
+
//! Returns whether or not two reference wrappers refer to the same object
|
177
|
+
template<class T>
|
178
|
+
bool RefersToSameObject(const reference<T> &A, const reference<T> &B) {
|
179
|
+
return &A.get() == &B.get();
|
180
|
+
}
|
181
|
+
|
173
182
|
} // namespace duckdb
|
@@ -22,19 +22,42 @@ public:
|
|
22
22
|
optional_ptr(const unique_ptr<T> &ptr_p) : ptr(ptr_p.get()) { // NOLINT: allow implicit creation from unique pointer
|
23
23
|
}
|
24
24
|
|
25
|
+
void CheckValid() const {
|
26
|
+
if (!ptr) {
|
27
|
+
throw InternalException("Attempting to dereference an optional pointer that is not set");
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
25
31
|
operator bool() const {
|
26
32
|
return ptr;
|
27
33
|
}
|
28
34
|
T &operator*() {
|
29
|
-
|
30
|
-
|
31
|
-
|
35
|
+
CheckValid();
|
36
|
+
return *ptr;
|
37
|
+
}
|
38
|
+
const T &operator*() const {
|
39
|
+
CheckValid();
|
32
40
|
return *ptr;
|
33
41
|
}
|
34
42
|
T *operator->() {
|
35
|
-
|
36
|
-
|
37
|
-
|
43
|
+
CheckValid();
|
44
|
+
return ptr;
|
45
|
+
}
|
46
|
+
const T *operator->() const {
|
47
|
+
CheckValid();
|
48
|
+
return ptr;
|
49
|
+
}
|
50
|
+
T *get() {
|
51
|
+
// CheckValid();
|
52
|
+
return ptr;
|
53
|
+
}
|
54
|
+
const T *get() const {
|
55
|
+
// CheckValid();
|
56
|
+
return ptr;
|
57
|
+
}
|
58
|
+
// this looks dirty - but this is the default behavior of raw pointers
|
59
|
+
T *get_mutable() const {
|
60
|
+
// CheckValid();
|
38
61
|
return ptr;
|
39
62
|
}
|
40
63
|
|
@@ -14,16 +14,14 @@ namespace duckdb {
|
|
14
14
|
|
15
15
|
class BufferedFileReader : public Deserializer {
|
16
16
|
public:
|
17
|
-
BufferedFileReader(FileSystem &fs, const char *path, ClientContext
|
18
|
-
FileLockType lock_type = FileLockType::READ_LOCK, FileOpener
|
17
|
+
BufferedFileReader(FileSystem &fs, const char *path, optional_ptr<ClientContext> context,
|
18
|
+
FileLockType lock_type = FileLockType::READ_LOCK, optional_ptr<FileOpener> opener = nullptr);
|
19
19
|
|
20
20
|
FileSystem &fs;
|
21
21
|
unique_ptr<data_t[]> data;
|
22
22
|
idx_t offset;
|
23
23
|
idx_t read_data;
|
24
24
|
unique_ptr<FileHandle> handle;
|
25
|
-
ClientContext *context;
|
26
|
-
Catalog *catalog = nullptr;
|
27
25
|
|
28
26
|
public:
|
29
27
|
void ReadData(data_ptr_t buffer, uint64_t read_size) override;
|
@@ -39,11 +37,14 @@ public:
|
|
39
37
|
|
40
38
|
ClientContext &GetContext() override;
|
41
39
|
|
42
|
-
Catalog
|
40
|
+
optional_ptr<Catalog> GetCatalog() override;
|
41
|
+
void SetCatalog(Catalog &catalog);
|
43
42
|
|
44
43
|
private:
|
45
44
|
idx_t file_size;
|
46
45
|
idx_t total_read;
|
46
|
+
optional_ptr<ClientContext> context;
|
47
|
+
optional_ptr<Catalog> catalog;
|
47
48
|
};
|
48
49
|
|
49
50
|
} // namespace duckdb
|
package/src/duckdb/src/include/duckdb/execution/operator/persistent/physical_batch_insert.hpp
CHANGED
@@ -22,7 +22,7 @@ public:
|
|
22
22
|
physical_index_vector_t<idx_t> column_index_map, vector<unique_ptr<Expression>> bound_defaults,
|
23
23
|
idx_t estimated_cardinality);
|
24
24
|
//! CREATE TABLE AS
|
25
|
-
PhysicalBatchInsert(LogicalOperator &op, SchemaCatalogEntry
|
25
|
+
PhysicalBatchInsert(LogicalOperator &op, SchemaCatalogEntry &schema, unique_ptr<BoundCreateTableInfo> info,
|
26
26
|
idx_t estimated_cardinality);
|
27
27
|
|
28
28
|
//! The map from insert column index to table column index
|
@@ -34,7 +34,7 @@ public:
|
|
34
34
|
//! The default expressions of the columns for which no value is provided
|
35
35
|
vector<unique_ptr<Expression>> bound_defaults;
|
36
36
|
//! Table schema, in case of CREATE TABLE AS
|
37
|
-
SchemaCatalogEntry
|
37
|
+
optional_ptr<SchemaCatalogEntry> schema;
|
38
38
|
//! Create table info, in case of CREATE TABLE AS
|
39
39
|
unique_ptr<BoundCreateTableInfo> info;
|
40
40
|
// Which action to perform on conflict
|
@@ -32,7 +32,7 @@ public:
|
|
32
32
|
unique_ptr<Expression> on_conflict_condition, unique_ptr<Expression> do_update_condition,
|
33
33
|
unordered_set<column_t> on_conflict_filter, vector<column_t> columns_to_fetch);
|
34
34
|
//! CREATE TABLE AS
|
35
|
-
PhysicalInsert(LogicalOperator &op, SchemaCatalogEntry
|
35
|
+
PhysicalInsert(LogicalOperator &op, SchemaCatalogEntry &schema, unique_ptr<BoundCreateTableInfo> info,
|
36
36
|
idx_t estimated_cardinality, bool parallel);
|
37
37
|
|
38
38
|
//! The map from insert column index to table column index
|
@@ -46,7 +46,7 @@ public:
|
|
46
46
|
//! If the returning statement is present, return the whole chunk
|
47
47
|
bool return_chunk;
|
48
48
|
//! Table schema, in case of CREATE TABLE AS
|
49
|
-
SchemaCatalogEntry
|
49
|
+
optional_ptr<SchemaCatalogEntry> schema;
|
50
50
|
//! Create table info, in case of CREATE TABLE AS
|
51
51
|
unique_ptr<BoundCreateTableInfo> info;
|
52
52
|
//! Whether or not the INSERT can be executed in parallel
|
@@ -109,15 +109,15 @@ public:
|
|
109
109
|
public:
|
110
110
|
static void GetInsertInfo(const BoundCreateTableInfo &info, vector<LogicalType> &insert_types,
|
111
111
|
vector<unique_ptr<Expression>> &bound_defaults);
|
112
|
-
static void ResolveDefaults(TableCatalogEntry
|
112
|
+
static void ResolveDefaults(const TableCatalogEntry &table, DataChunk &chunk,
|
113
113
|
const physical_index_vector_t<idx_t> &column_index_map,
|
114
114
|
ExpressionExecutor &defaults_executor, DataChunk &result);
|
115
115
|
|
116
116
|
protected:
|
117
117
|
void CombineExistingAndInsertTuples(DataChunk &result, DataChunk &scan_chunk, DataChunk &input_chunk,
|
118
118
|
ClientContext &client) const;
|
119
|
-
void OnConflictHandling(TableCatalogEntry
|
120
|
-
void PerformOnConflictAction(ExecutionContext &context, DataChunk &chunk, TableCatalogEntry
|
119
|
+
void OnConflictHandling(TableCatalogEntry &table, ExecutionContext &context, InsertLocalState &lstate) const;
|
120
|
+
void PerformOnConflictAction(ExecutionContext &context, DataChunk &chunk, TableCatalogEntry &table,
|
121
121
|
Vector &row_ids) const;
|
122
122
|
void RegisterUpdatedRows(InsertLocalState &lstate, const Vector &row_ids, idx_t count) const;
|
123
123
|
};
|
@@ -19,11 +19,11 @@ public:
|
|
19
19
|
static constexpr const PhysicalOperatorType TYPE = PhysicalOperatorType::CREATE_TABLE;
|
20
20
|
|
21
21
|
public:
|
22
|
-
PhysicalCreateTable(LogicalOperator &op, SchemaCatalogEntry
|
22
|
+
PhysicalCreateTable(LogicalOperator &op, SchemaCatalogEntry &schema, unique_ptr<BoundCreateTableInfo> info,
|
23
23
|
idx_t estimated_cardinality);
|
24
24
|
|
25
25
|
//! Schema to insert to
|
26
|
-
SchemaCatalogEntry
|
26
|
+
SchemaCatalogEntry &schema;
|
27
27
|
//! Table name to create
|
28
28
|
unique_ptr<BoundCreateTableInfo> info;
|
29
29
|
|
@@ -97,10 +97,11 @@ public:
|
|
97
97
|
};
|
98
98
|
|
99
99
|
struct BindCastInput {
|
100
|
-
DUCKDB_API BindCastInput(CastFunctionSet &function_set, BindCastInfo
|
100
|
+
DUCKDB_API BindCastInput(CastFunctionSet &function_set, optional_ptr<BindCastInfo> info,
|
101
|
+
optional_ptr<ClientContext> context);
|
101
102
|
|
102
103
|
CastFunctionSet &function_set;
|
103
|
-
BindCastInfo
|
104
|
+
optional_ptr<BindCastInfo> info;
|
104
105
|
optional_ptr<ClientContext> context;
|
105
106
|
|
106
107
|
public:
|
@@ -205,6 +205,10 @@ struct LevenshteinFun {
|
|
205
205
|
static void RegisterFunction(BuiltinFunctions &set);
|
206
206
|
};
|
207
207
|
|
208
|
+
struct DamerauLevenshteinFun {
|
209
|
+
static void RegisterFunction(BuiltinFunctions &set);
|
210
|
+
};
|
211
|
+
|
208
212
|
struct JaccardFun {
|
209
213
|
static void RegisterFunction(BuiltinFunctions &set);
|
210
214
|
};
|
@@ -12,6 +12,7 @@
|
|
12
12
|
#include "duckdb/common/case_insensitive_map.hpp"
|
13
13
|
#include "duckdb/common/mutex.hpp"
|
14
14
|
#include "duckdb/common/atomic.hpp"
|
15
|
+
#include "duckdb/common/optional_ptr.hpp"
|
15
16
|
|
16
17
|
namespace duckdb {
|
17
18
|
class AttachedDatabase;
|
@@ -35,7 +36,7 @@ public:
|
|
35
36
|
|
36
37
|
void InitializeSystemCatalog();
|
37
38
|
//! Get an attached database with the given name
|
38
|
-
AttachedDatabase
|
39
|
+
optional_ptr<AttachedDatabase> GetDatabase(ClientContext &context, const string &name);
|
39
40
|
//! Add a new attached database to the database manager
|
40
41
|
void AddDatabase(ClientContext &context, unique_ptr<AttachedDatabase> db);
|
41
42
|
void DetachDatabase(ClientContext &context, const string &name, bool if_exists);
|
@@ -43,8 +44,8 @@ public:
|
|
43
44
|
Catalog &GetSystemCatalog();
|
44
45
|
static const string &GetDefaultDatabase(ClientContext &context);
|
45
46
|
|
46
|
-
AttachedDatabase
|
47
|
-
vector<AttachedDatabase
|
47
|
+
optional_ptr<AttachedDatabase> GetDatabaseFromPath(ClientContext &context, const string &path);
|
48
|
+
vector<optional_ptr<AttachedDatabase>> GetDatabases(ClientContext &context);
|
48
49
|
|
49
50
|
transaction_t GetNewQueryNumber() {
|
50
51
|
return current_query_number++;
|
@@ -131,7 +131,8 @@ private:
|
|
131
131
|
//! The row-based query result iterator. Invoking the
|
132
132
|
class QueryResultIterator {
|
133
133
|
public:
|
134
|
-
explicit QueryResultIterator(QueryResult
|
134
|
+
explicit QueryResultIterator(optional_ptr<QueryResult> result_p)
|
135
|
+
: current_row(*this, 0), result(result_p), base_row(0) {
|
135
136
|
if (result) {
|
136
137
|
chunk = shared_ptr<DataChunk>(result->Fetch().release());
|
137
138
|
if (!chunk) {
|
@@ -142,7 +143,7 @@ private:
|
|
142
143
|
|
143
144
|
QueryResultRow current_row;
|
144
145
|
shared_ptr<DataChunk> chunk;
|
145
|
-
QueryResult
|
146
|
+
optional_ptr<QueryResult> result;
|
146
147
|
idx_t base_row;
|
147
148
|
|
148
149
|
public:
|
@@ -52,14 +52,14 @@ public:
|
|
52
52
|
// &pushed_filters);
|
53
53
|
|
54
54
|
private:
|
55
|
-
FilterResult AddFilter(Expression
|
56
|
-
FilterResult AddBoundComparisonFilter(Expression
|
55
|
+
FilterResult AddFilter(Expression &expr);
|
56
|
+
FilterResult AddBoundComparisonFilter(Expression &expr);
|
57
57
|
FilterResult AddTransitiveFilters(BoundComparisonExpression &comparison);
|
58
|
-
unique_ptr<Expression> FindTransitiveFilter(Expression
|
58
|
+
unique_ptr<Expression> FindTransitiveFilter(Expression &expr);
|
59
59
|
// unordered_map<idx_t, std::pair<Value *, Value *>>
|
60
60
|
// FindZonemapChecks(vector<idx_t> &column_ids, unordered_set<idx_t> ¬_constants, Expression *filter);
|
61
|
-
Expression
|
62
|
-
idx_t GetEquivalenceSet(Expression
|
61
|
+
Expression &GetNode(Expression &expr);
|
62
|
+
idx_t GetEquivalenceSet(Expression &expr);
|
63
63
|
FilterResult AddConstantComparison(vector<ExpressionValueInformation> &info_list, ExpressionValueInformation info);
|
64
64
|
//
|
65
65
|
// //! Functions used to push and generate OR Filters
|
@@ -97,9 +97,9 @@ private:
|
|
97
97
|
vector<unique_ptr<Expression>> remaining_filters;
|
98
98
|
|
99
99
|
expression_map_t<unique_ptr<Expression>> stored_expressions;
|
100
|
-
|
100
|
+
expression_map_t<idx_t> equivalence_set_map;
|
101
101
|
unordered_map<idx_t, vector<ExpressionValueInformation>> constant_values;
|
102
|
-
unordered_map<idx_t, vector<Expression
|
102
|
+
unordered_map<idx_t, vector<reference<Expression>>> equivalence_map;
|
103
103
|
idx_t set_index = 0;
|
104
104
|
//
|
105
105
|
// //! Structures used for OR Filters
|