/* * Copyright (c) 2021, Jan de Visser * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include namespace SQL::AST { ResultOr Statement::execute(AK::NonnullRefPtr database) const { ExecutionContext context { move(database), this, nullptr }; return execute(context); } }