mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.5 into 10.6
The changes to galera.galear_var_replicate_myisam_on in commitd9b933bec6
are omitted due to conflicts with commit27d66d644c
.
This commit is contained in:
@ -281,3 +281,16 @@ insert delayed into t1 values (1);
|
||||
--disable_prepare_warnings
|
||||
# cleanup
|
||||
drop table t1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-25891 Computed default for INVISIBLE column is ignored in INSERT
|
||||
--echo #
|
||||
create table t1(
|
||||
a int,
|
||||
x int default (a),
|
||||
y int default (a) invisible,
|
||||
z int default (33) invisible);
|
||||
insert into t1 values (1, default);
|
||||
insert into t1 (a) values (2);
|
||||
select a, x, y, z from t1;
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user