(field arrow.Field)
| 74 | } |
| 75 | |
| 76 | func (c *Client) normalizeField(field arrow.Field) *arrow.Field { |
| 77 | return &arrow.Field{ |
| 78 | Name: field.Name, |
| 79 | Type: c.arrowTypeToSqlite(field.Type), |
| 80 | Nullable: field.Nullable, |
| 81 | Metadata: field.Metadata, |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | func (c *Client) nonAutoMigratableTables(tables schema.Tables, sqliteTables schema.Tables, safeTables map[string]bool) map[string][]schema.TableColumnChange { |
| 86 | result := make(map[string][]schema.TableColumnChange) |
no test coverage detected