Skip to content

Commit

Permalink
MDEV-22756 SQL Error (1364): Field 'DB_ROW_HASH_1' doesn't have a def…
Browse files Browse the repository at this point in the history
…ault value

exclude generated columns from the "has default value" check
  • Loading branch information
vuvova committed Apr 28, 2023
1 parent adbad5e commit bc97057
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions mysql-test/main/long_unique_bugs.result
Expand Up @@ -448,5 +448,11 @@ a b
1 xxx
drop table t1;
#
# MDEV-22756 SQL Error (1364): Field 'DB_ROW_HASH_1' doesn't have a default value
#
create table t1 (f text not null, unique (f));
insert into t1 (f) select 'f';
drop table t1;
#
# End of 10.4 tests
#
7 changes: 7 additions & 0 deletions mysql-test/main/long_unique_bugs.test
Expand Up @@ -442,6 +442,13 @@ insert into t1 (a,b) select 1,'xxx' from seq_1_to_5;
select * from t1;
drop table t1;

--echo #
--echo # MDEV-22756 SQL Error (1364): Field 'DB_ROW_HASH_1' doesn't have a default value
--echo #
create table t1 (f text not null, unique (f));
insert into t1 (f) select 'f';
drop table t1;

--echo #
--echo # End of 10.4 tests
--echo #
2 changes: 1 addition & 1 deletion sql/sql_insert.cc
Expand Up @@ -2134,7 +2134,7 @@ int check_that_all_fields_are_given_values(THD *thd, TABLE *entry, TABLE_LIST *t
for (Field **field=entry->field ; *field ; field++)
{
if (!bitmap_is_set(write_set, (*field)->field_index) &&
!(*field)->vers_sys_field() &&
!(*field)->vers_sys_field() && !(*field)->vcol_info &&
has_no_default_value(thd, *field, table_list) &&
((*field)->real_type() != MYSQL_TYPE_ENUM))
err=1;
Expand Down

0 comments on commit bc97057

Please sign in to comment.