1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 11:47:35 +00:00

LibSQL: Parse DROP TABLE statement

This commit is contained in:
Timothy Flynn 2021-04-20 10:16:28 -04:00 committed by Andreas Kling
parent 110cd98c0a
commit e92bffb2e3
4 changed files with 79 additions and 2 deletions

View file

@ -67,8 +67,9 @@ private:
Vector<Error> m_errors;
};
NonnullRefPtr<ColumnDefinition> parse_column_definition();
NonnullRefPtr<CreateTable> parse_create_table_statement();
NonnullRefPtr<DropTable> parse_drop_table_statement();
NonnullRefPtr<ColumnDefinition> parse_column_definition();
NonnullRefPtr<TypeName> parse_type_name();
NonnullRefPtr<SignedNumber> parse_signed_number();