(columns []string)
| 192 | } |
| 193 | |
| 194 | func quoteOracleColumns(columns []string) string { |
| 195 | var quotedColumns []string |
| 196 | for _, column := range columns { |
| 197 | quotedColumns = append(quotedColumns, fmt.Sprintf(`"%s"`, column)) |
| 198 | } |
| 199 | return strings.Join(quotedColumns, ", ") |
| 200 | } |
| 201 | |
| 202 | func disjoint(a []string, b map[string]bool) bool { |
| 203 | for _, item := range a { |