Instance Property
unionFeatures
A set of feature flags describing the dialect’s support for various forms of
UNION with SELECT queries.var unionFeatures: SQLUnionFeatures { get }
Discussion
See SQLUnionFeatures for the possible flags and more information.
Defaults to [.union, .unionAll].
Default Implementations
SQLDialect Implementations
var unionFeatures: SQLUnionFeaturesDefault implementation ofunionFeatures.
See Also
Support Flags
var supportsAutoIncrement: Booltrueif the dialect supports auto-increment for primary key values when inserting new rows,falseif not.var supportsIfExists: Booltrueif the dialect supports theIF EXISTSmodifier for all types ofDROPqueries (such asSQLDropEnum,SQLDropIndex,SQLDropTable, andSQLDropTrigger) and theIF NOT EXISTSmodifier forSQLCreateTablequeries.var supportsDropBehavior: Booltrueif the dialect supports thebehavior modifiers forDROPqueries,false` if not.var supportsReturning: Booltrueif the dialect supportsRETURNINGsyntax for retrieving output values from DML queries (INSERT,UPDATE,DELETE).