fixed typo and updated changelog

This commit is contained in:
Gani Georgiev
2026-01-13 22:23:23 +02:00
parent 56e53e885c
commit 2af60a85c5
2 changed files with 9 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ import "regexp"
// Regexp for columns and tables (the same as the one in dbx).
var selectRegex = regexp.MustCompile(`(?i:\s+as\s+|\s+)([\w\-_\.]+)$`)
// AliasOrIdentifier returns the alias from a column or table identifier,
// AliasOrIdentifier returns the alias from a column or table identifier.
// Returns the identifier unmodified if no alias was found.
func AliasOrIdentifier(columnOrTableIdentifier string) string {
matches := selectRegex.FindStringSubmatch(columnOrTableIdentifier)