com.scalar.db.sql.UserOption Maven / Gradle / Ivy
package com.scalar.db.sql;
/** The user options. */
public enum UserOption {
/** If specified, the user is created as a superuser. */
SUPERUSER,
/**
* If specified, the user is created as a non-superuser. If neither SUPERUSER nor NO_SUPERUSER is
* specified, the user is created as a non-superuser.
*/
NO_SUPERUSER,
}