Details
-
New Feature
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Won't Do
-
None
-
None
Description
Trying to use the following syntax, while there is no error, the query does not seem to do the right thing ( 2-3s normally, way to long ) when using begin ... end compound.
delimiter //
begin not atomic
select count(distinct a) from a where a is not null;
end //
delimiter ;