| 2571 | |
| 2572 | |
| 2573 | int check_that_all_fields_are_given_values(THD *thd, TABLE *entry, TABLE_LIST *table_list) |
| 2574 | { |
| 2575 | int err= 0; |
| 2576 | MY_BITMAP *write_set= entry->write_set; |
| 2577 | |
| 2578 | for (Field **field=entry->field ; *field ; field++) |
| 2579 | { |
| 2580 | if (!bitmap_is_set(write_set, (*field)->field_index) && |
| 2581 | !(*field)->vcol_info && |
| 2582 | has_no_default_value(thd, *field, table_list)) |
| 2583 | err=1; |
| 2584 | } |
| 2585 | return thd->abort_on_warning ? err : 0; |
| 2586 | } |
| 2587 | |
| 2588 | /***************************************************************************** |
| 2589 | Handling of delayed inserts |
no test coverage detected