mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-06 01:10:26 +08:00
54 lines
489 B
Go
54 lines
489 B
Go
package sqlstmt
|
|
|
|
type (
|
|
IDdlStmt interface {
|
|
isDdl()
|
|
}
|
|
|
|
DdlStmt struct {
|
|
*Node
|
|
}
|
|
|
|
CreateDatabase struct {
|
|
DdlStmt
|
|
}
|
|
|
|
CreateTable struct {
|
|
DdlStmt
|
|
}
|
|
|
|
CreateIndex struct {
|
|
DdlStmt
|
|
}
|
|
|
|
AlterTable struct {
|
|
DdlStmt
|
|
}
|
|
|
|
AlterDatabase struct {
|
|
DdlStmt
|
|
}
|
|
|
|
DropDatabase struct {
|
|
DdlStmt
|
|
}
|
|
|
|
DropIndex struct {
|
|
DdlStmt
|
|
}
|
|
|
|
DropTable struct {
|
|
DdlStmt
|
|
}
|
|
|
|
DropView struct {
|
|
DdlStmt
|
|
}
|
|
)
|
|
|
|
func (d *DdlStmt) isDdl() {}
|
|
|
|
func IsDDL(node INode) bool {
|
|
return true
|
|
}
|