mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-19 01:15:40 +08:00
10 lines
182 B
Go
10 lines
182 B
Go
package sqlstmt
|
|
|
|
// DdlStmt DDL 语句
|
|
type DdlStmt struct {
|
|
Base
|
|
DdlKind string // CREATE_TABLE, DROP_TABLE, ALTER_TABLE 等
|
|
}
|
|
|
|
func (*DdlStmt) StmtKind() Kind { return KindDdl }
|