(cat *redshiftcatalog.Catalog, sql string)
| 153 | } |
| 154 | |
| 155 | func execCompletionDDL(cat *redshiftcatalog.Catalog, sql string) bool { |
| 156 | _, err := cat.Exec(sql, nil) |
| 157 | return err == nil |
| 158 | } |
| 159 | |
| 160 | func createTableDDL(schemaName, tableName string, columns []*storepb.ColumnMetadata) string { |
| 161 | return fmt.Sprintf( |
no outgoing calls
no test coverage detected