dal/pkg/builder/convert_upsert.go

18 lines
285 B
Go
Raw Permalink Normal View History

package builder
import (
"fmt"
"strings"
)
func convertUpsert(keys []string) string {
set := make([]string, 0)
for _, key := range keys {
set = append(set, fmt.Sprintf("%s = EXCLUDED.%s", key, key))
}
return fmt.Sprintf(
"DO UPDATE SET %s",
strings.Join(set, ", "),
)
}