()
| 112 | } |
| 113 | |
| 114 | func (t *Table) GetWhere() string { |
| 115 | if t.Where == "" { |
| 116 | return "true" |
| 117 | } else { |
| 118 | return t.Where |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | func NewTable(schemaName string, tableName string) *Table { |
| 123 | return &Table{ |
no outgoing calls
no test coverage detected