refactor: 移除antlr4减小包体积&ai助手优化

This commit is contained in:
meilin.huang
2026-05-08 20:45:13 +08:00
parent 3768cef62d
commit f23b243fc5
154 changed files with 13054 additions and 396804 deletions

View File

@@ -1,16 +1,10 @@
package sqlstmt
type (
IDeleteStmt interface {
isDelete()
}
// DeleteStmt DELETE 语句
type DeleteStmt struct {
Base
Tables []TableRef // 删除的表
Where *Expr
}
DeleteStmt struct {
*Node
TableSources *TableSources
Where IExpr
}
)
func (*DeleteStmt) isDelete() {}
func (*DeleteStmt) StmtKind() Kind { return KindDelete }