func (stmt AlterSeqStmt) String() string { output, _ := stmt.Compile(&PostGres{}, aspect.Params()) return output }
func (clause WithClause) String() string { output, _ := clause.Compile(&PostGres{}, aspect.Params()) return output }
// String returns the element's SQL using the default dialect. func (p MultiPoint) String() string { compiled, _ := p.Compile(&postgres.PostGres{}, aspect.Params()) return compiled }
// String returns the element's SQL using the default dialect. func (p Linestring) String() string { compiled, _ := p.Compile(&postgres.PostGres{}, aspect.Params()) return compiled }
// String outputs the parameter-less INSERT ... RETURNING statement in a // neutral dialect. func (stmt RetInsertStmt) String() string { compiled, _ := stmt.Compile(&PostGres{}, aspect.Params()) return compiled }