Ident represents an identifier in SQL (table name, column name, etc.)
| 119 | |
| 120 | // Ident represents an identifier in SQL (table name, column name, etc.) |
| 121 | type Ident struct { |
| 122 | Name string |
| 123 | } |
| 124 | |
| 125 | func (i *Ident) String() string { return i.Name } |
| 126 |
nothing calls this directly
no outgoing calls
no test coverage detected