(j *joinScope, columns []string)
| 146 | } |
| 147 | |
| 148 | func newJoinUsingScope(j *joinScope, columns []string) *joinUsingScope { |
| 149 | skip := make(map[string]struct{}) |
| 150 | for _, c := range columns { |
| 151 | skip[c] = struct{}{} |
| 152 | } |
| 153 | return &joinUsingScope{ |
| 154 | joinScope: j, |
| 155 | columns: columns, |
| 156 | skip: skip, |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | func (*staticTable) relTableType() {} |
| 161 |