QuoteIdent returns a quoted identifier if it needs quoting (e.g., reserved words, mixed case identifiers)
(s string)
| 5 | // QuoteIdent returns a quoted identifier if it needs quoting |
| 6 | // (e.g., reserved words, mixed case identifiers) |
| 7 | QuoteIdent(s string) string |
| 8 | |
| 9 | // TypeName returns the SQL type name for the given namespace and name. |
| 10 | // This handles dialect-specific type name mappings (e.g., pg_catalog.int4 -> integer) |