Skip to content

Commit

Permalink
Fix serialize method for upcoming serialization rework
Browse files Browse the repository at this point in the history
  • Loading branch information
Mytherin committed Sep 8, 2023
1 parent 9c38a30 commit d3e675b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/sqlite_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class LogicalSQLiteCreateIndex : public LogicalExtensionOperator {
return make_uniq<SQLiteCreateIndex>(std::move(info), table);
}

void Serialize(FieldWriter &writer) const override {
void Serialize(Serializer &serializer) const override {
throw InternalException("Cannot serialize SQLite Create index");
}

Expand Down

0 comments on commit d3e675b

Please sign in to comment.