All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ast.statement.ddl.SqlDropIndex.kt Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package ast.statement.ddl

import ast.expr.SqlExpr
import ast.statement.SqlStatement

/**
 * sql语法树:删除索引语句
 * @property name SqlExpr? 索引名称
 * @property table SqlExpr? 操作的表
 */
data class SqlDropIndex(var name: SqlExpr? = null, var table: SqlExpr? = null) : SqlStatement




© 2015 - 2024 Weber Informatics LLC | Privacy Policy