diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:07:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:07:14 +0000 |
commit | a175314c3e5827eb193872241446f2f8f5c9d33c (patch) | |
tree | cd3d60ca99ae00829c52a6ca79150a5b6e62528b /mysql-test/main/default_debug.result | |
parent | Initial commit. (diff) | |
download | mariadb-10.5-a175314c3e5827eb193872241446f2f8f5c9d33c.tar.xz mariadb-10.5-a175314c3e5827eb193872241446f2f8f5c9d33c.zip |
Adding upstream version 1:10.5.12.upstream/1%10.5.12upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/main/default_debug.result')
-rw-r--r-- | mysql-test/main/default_debug.result | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/main/default_debug.result b/mysql-test/main/default_debug.result new file mode 100644 index 00000000..3f5b0b78 --- /dev/null +++ b/mysql-test/main/default_debug.result @@ -0,0 +1,21 @@ +create table t1 (a int, b int default (a+1)); +insert t1 values (1,10), (2,20), (3,30); +connect con1, localhost, root; +select a,b,default(b) from t1; +a b default(b) +1 10 2 +2 20 3 +3 30 4 +set debug_sync='after_Item_default_value_calculate WAIT_FOR go'; +select a,b,default(b) from t1; +connection default; +set debug_sync='ha_write_row_start SIGNAL go'; +insert t1 values (100,default(b)); +connection con1; +a b default(b) +1 10 2 +2 20 3 +3 30 4 +connection default; +drop table t1; +set debug_sync='RESET'; |