mirror of
https://github.com/RGBCube/serenity
synced 2025-07-10 11:37:35 +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:
parent
f3c6cb40d7
commit
df2ddcafd4
4 changed files with 1 additions and 5 deletions
|
@ -13,7 +13,7 @@ namespace SQL::AST {
|
|||
|
||||
ResultOr<ResultSet> Statement::execute(AK::NonnullRefPtr<Database> database) const
|
||||
{
|
||||
ExecutionContext context { move(database), {}, this, nullptr };
|
||||
ExecutionContext context { move(database), this, nullptr };
|
||||
return execute(context);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue