SET sql_mode=ORACLE; # # MDEV-10655 Anonymous blocks # # Testing BEGIN NOT ATOMIC with no declarations BEGIN NOT ATOMIC SELECT 1 AS a; END / a 1 # Testing BEGIN NOT ATOMIC with declarations # DECLARE starts a new block and thus must be followed by BEGIN .. END BEGIN NOT ATOMIC DECLARE i INT DEFAULT 5; x INT DEFAULT 10; BEGIN <