Default aliasing refactoring.
This commit is contained in:
parent
22426c8cad
commit
5ad213885f
16 changed files with 198 additions and 124 deletions
|
|
@ -63,7 +63,7 @@ func serializeExpressionList(expressions []Expression, separator string, out *qu
|
|||
func serializeProjectionList(projections []Projection, out *queryData) error {
|
||||
for i, col := range projections {
|
||||
if i > 0 {
|
||||
out.WriteByte(',')
|
||||
out.WriteString(", ")
|
||||
}
|
||||
if col == nil {
|
||||
return errors.New("Projection expression is nil.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue