Versions in this module Expand all Collapse all v0 v0.1.0 Mar 29, 2026 Changes in this version + func AppendEscapedAliasedValue(sb []byte, value string, quote byte) []byte + func AppendEscapedReference(sb []byte, value string, quote byte) []byte + func AppendEscapedRelation(sb []byte, value string, quote byte) []byte + func ExpandNamedPlaceholders(sql string, values map[string]any, nextPlaceholder func() string) (string, []interface{}, error) + func ExpandPositionalPlaceholders(sql string, expectedCount int, nextPlaceholder func() string) (string, error) + func InlinePlaceholders(sql string, args []interface{}) (string, error) + func RelationSelectReference(value string) string + type ParsedReference struct + Alias string + Parts []string + func ParseAliasedValue(value string) (ParsedReference, bool) + func ParseReference(value string) (ParsedReference, bool) + func ParseRelationReference(value string) (ParsedReference, bool) v0.0.1 Jun 30, 2025 Changes in this version + var AsRegexp = regexp.MustCompile(`(?i)\s+as\s+`)