Example #1
0
func (stmt AlterSeqStmt) String() string {
	output, _ := stmt.Compile(&PostGres{}, aspect.Params())
	return output
}
Example #2
0
func (clause WithClause) String() string {
	output, _ := clause.Compile(&PostGres{}, aspect.Params())
	return output
}
Example #3
0
// String returns the element's SQL using the default dialect.
func (p MultiPoint) String() string {
	compiled, _ := p.Compile(&postgres.PostGres{}, aspect.Params())
	return compiled
}
Example #4
0
// String returns the element's SQL using the default dialect.
func (p Linestring) String() string {
	compiled, _ := p.Compile(&postgres.PostGres{}, aspect.Params())
	return compiled
}
Example #5
0
// 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
}