(table *TableSchema)
| 26 | } |
| 27 | |
| 28 | func NewTableIdentifierFromSchemaTable(table *TableSchema) TableIdentifier { |
| 29 | return TableIdentifier{ |
| 30 | SchemaName: table.Schema, |
| 31 | TableName: table.Name, |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | // This is a wrapper on schema.Table with some custom information we need. |
| 36 | type TableSchema struct { |