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)
()
| 1111 | // SELECT format_type(pg_typeof(1::int)::regtype, NULL) |
| 1112 | // |
| 1113 | func (t *T) SQLStandardName() string { |
| 1114 | return t.SQLStandardNameWithTypmod(false, 0) |
| 1115 | } |
| 1116 | |
| 1117 | //var telemetryNameReplaceRegex = regexp.MustCompile("[^a-zA-Z0-9]") |
| 1118 |
no test coverage detected