TableNamePrefix corresponds to the path prefix of a table name.
| 38 | |
| 39 | // TableNamePrefix corresponds to the path prefix of a table name. |
| 40 | type TableNamePrefix struct { |
| 41 | CatalogName Name |
| 42 | SchemaName Name |
| 43 | |
| 44 | // ExplicitCatalog is true iff the catalog was explicitly specified |
| 45 | // or it needs to be rendered during pretty-printing. |
| 46 | ExplicitCatalog bool |
| 47 | // ExplicitSchema is true iff the schema was explicitly specified |
| 48 | // or it needs to be rendered during pretty-printing. |
| 49 | ExplicitSchema bool |
| 50 | } |
| 51 | |
| 52 | // Format implements the NodeFormatter interface. |
| 53 | func (tp *TableNamePrefix) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected