43dd4e9234
Signed-off-by: Anton Nesterov <anton@demiurg.io>
14 lines
249 B
Go
14 lines
249 B
Go
package builder
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
utils "l12.xyz/dal/utils"
|
|
)
|
|
|
|
func convertConflict(ctx Dialect, fields ...string) string {
|
|
keys := utils.Map(fields, ctx.GetColumnName)
|
|
return fmt.Sprintf("ON CONFLICT (%s)", strings.Join(keys, ","))
|
|
}
|