1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:37:46 +00:00

LibSQL: Remove the now-unused ExecutionContext::result object

The INSERT and SELECT statements set up this object for any expression
evaluation to indicate errors. This is no longer needed.
This commit is contained in:
Timothy Flynn 2022-02-10 14:53:51 -05:00 committed by Andreas Kling
parent f3c6cb40d7
commit df2ddcafd4
4 changed files with 1 additions and 5 deletions

View file

@ -299,7 +299,6 @@ private:
struct ExecutionContext {
NonnullRefPtr<Database> database;
Optional<Result> result;
class Statement const* statement;
Tuple* current_row { nullptr };
};