(ctx *sql.Context, value uint64)
| 936 | // So we create a new sequence with the new start value and change the auto_increment column to use the new sequence. |
| 937 | |
| 938 | // Find the column with the auto_increment property |
| 939 | var autoIncrementColumn *sql.Column |
| 940 | for _, column := range t.schema.Schema { |
| 941 | if column.AutoIncrement { |
| 942 | autoIncrementColumn = column |
| 943 | break |
nothing calls this directly
no test coverage detected