(c schema.Column)
| 53 | } |
| 54 | |
| 55 | func duckDBType(c schema.Column) string { |
| 56 | if keyListColumn(c) { |
| 57 | return "varchar" |
| 58 | } |
| 59 | return arrowToDuckDB(c.Type) |
| 60 | } |
| 61 | |
| 62 | func (c *Client) upsert(ctx context.Context, tmpTableName string, table *schema.Table) error { |
| 63 | var sb strings.Builder |