SQLStandardName returns the type's name as it is specified in the SQL standard (or by Postgres for any non-standard types). This can be looked up for any type in Postgres using a query similar to this: SELECT format_type(pg_typeof(1::int)::regtype, NULL)
()
| 1735 | // |
| 1736 | // SELECT format_type(pg_typeof(1::int)::regtype, NULL) |
| 1737 | func (t *T) SQLStandardName() string { |
| 1738 | return t.SQLStandardNameWithTypmod(false, 0) |
| 1739 | } |
| 1740 | |
| 1741 | var telemetryNameReplaceRegex = regexp.MustCompile("[^a-zA-Z0-9]") |
| 1742 |
no test coverage detected