(schemaName string, tableName string)
| 120 | } |
| 121 | |
| 122 | func NewTable(schemaName string, tableName string) *Table { |
| 123 | return &Table{ |
| 124 | TableSchema: schemaName, |
| 125 | TableName: tableName, |
| 126 | Where: "true", |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | type TableContext struct { |
| 131 | Table *Table |
no outgoing calls
no test coverage detected