internal ValuesExpressionImpl(PostgreSQLVendorImpl vendor, ImmutableArray <ImmutableArray <ValueExpression> > values) : base(vendor) { values.ValidateNotEmpty(nameof(values)); this._values = values; }
internal PgSQLManipulationFactoryImpl(PostgreSQLVendorImpl vendor) : base(vendor) { }
internal PgSQLSpecificFactoryImpl(PostgreSQLVendorImpl vendor) : base(vendor) { this._text = new SQLDTTextImpl(vendor); }
internal PgSQLInsertStatementBuilderImpl(PostgreSQLVendorImpl vendor) : base(vendor) { }
internal PgSQLDropTableOrViewStatementImpl(PostgreSQLVendorImpl vendor, DropBehaviour db, ObjectType whatToDrop, TableNameDirect table, Boolean useIfExists) : base(vendor, db, whatToDrop, table) { this._useIfExists = useIfExists; }
internal SQLDTTextImpl(PostgreSQLVendorImpl vendor) : base(vendor) { }
internal PgSQLInsertStatementImpl(PostgreSQLVendorImpl vendor, TableNameDirect table, ColumnSource columnSource, SelectColumnClause returningClause) : base(vendor, table, columnSource) { this._returning = returningClause; }
internal ColumnNameListExpressionImpl(PostgreSQLVendorImpl vendor, ImmutableArray <String> names) : base(vendor, names) { }