Ejemplo n.º 1
0
func (stmt AlterSeqStmt) String() string {
	output, _ := stmt.Compile(&PostGres{}, aspect.Params())
	return output
}
Ejemplo n.º 2
0
func (clause WithClause) String() string {
	output, _ := clause.Compile(&PostGres{}, aspect.Params())
	return output
}
Ejemplo n.º 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
}
Ejemplo n.º 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
}
Ejemplo n.º 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
}