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

LibSQL: Parse DELETE statement

This commit is contained in:
Timothy Flynn 2021-04-21 14:13:05 -04:00 committed by Andreas Kling
parent ce6c7ae18a
commit 733806b6a1
5 changed files with 284 additions and 1 deletions

View file

@ -37,7 +37,9 @@ class ChainedExpression;
class CollateExpression;
class ColumnDefinition;
class ColumnNameExpression;
class CommonTableExpression;
class CreateTable;
class Delete;
class DropTable;
class ErrorExpression;
class ErrorStatement;
@ -55,6 +57,8 @@ class NullExpression;
class NullLiteral;
class NumericLiteral;
class Parser;
class QualifiedTableName;
class ReturningClause;
class SignedNumber;
class Statement;
class StringLiteral;