Skip to content

Instantly share code, notes, and snippets.

@AlecKazakova
Created December 29, 2018 21:09
Show Gist options
  • Save AlecKazakova/f5dcc1b99c3f27740d4d37f5d034cae7 to your computer and use it in GitHub Desktop.
Save AlecKazakova/f5dcc1b99c3f27740d4d37f5d034cae7 to your computer and use it in GitHub Desktop.
public interface SqliteCreateTableStmt extends TableElement {
@NotNull
List<SqliteColumnDef> getColumnDefList();
@Nullable
SqliteCompoundSelectStmt getCompoundSelectStmt();
@Nullable
SqliteDatabaseName getDatabaseName();
@NotNull
List<SqliteTableConstraint> getTableConstraintList();
@NotNull
SqliteTableName getTableName();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment