lbug 0.16.1

An in-process property graph database management system built for query speed and scalability
Documentation
#pragma once

#include "binder/bound_statement.h"
#include "parser/ddl/drop_info.h"

namespace lbug {
namespace binder {

class BoundDrop final : public BoundStatement {
    static constexpr common::StatementType type_ = common::StatementType::DROP;

public:
    explicit BoundDrop(parser::DropInfo dropInfo)
        : BoundStatement{type_, BoundStatementResult::createSingleStringColumnResult()},
          dropInfo{std::move(dropInfo)} {}

    const parser::DropInfo& getDropInfo() const { return dropInfo; };

private:
    parser::DropInfo dropInfo;
};

} // namespace binder
} // namespace lbug