Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Oct 23, 2024
1 parent db7fe97 commit a7768f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/include/duckdb/common/serializer/serialization_data.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ struct SerializationData {
stack<reference<bound_parameter_map_t>, std::list<reference<bound_parameter_map_t>>> parameter_data;
stack<const_reference<LogicalType>, std::list<const_reference<LogicalType>>> types;
stack<const_reference<CompressionInfo>, std::list<const_reference<CompressionInfo>>> compression_infos;
duckdb::unordered_map<std::string, duckdb::stack<duckdb::reference<CustomData>, std::list<duckdb::reference<CustomData>>>> customs;
duckdb::unordered_map<std::string,
duckdb::stack<duckdb::reference<CustomData>, std::list<duckdb::reference<CustomData>>>>
customs;


template <class T>
void Set(T entry) = delete;
Expand Down

0 comments on commit a7768f6

Please sign in to comment.