2024-10-16 17:24:50 +08:00
|
|
|
package sqlstmt
|
|
|
|
|
|
2026-05-08 20:45:13 +08:00
|
|
|
// DdlStmt DDL 语句
|
|
|
|
|
type DdlStmt struct {
|
|
|
|
|
Base
|
|
|
|
|
DdlKind string // CREATE_TABLE, DROP_TABLE, ALTER_TABLE 等
|
2024-10-16 17:24:50 +08:00
|
|
|
}
|
2026-05-08 20:45:13 +08:00
|
|
|
|
|
|
|
|
func (*DdlStmt) StmtKind() Kind { return KindDdl }
|