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