recode heuristic to use existing style. add additional sample

This commit is contained in:
David Pyke Le Brun
2015-02-09 14:16:25 +00:00
parent f570260dfe
commit e969172543
3 changed files with 29 additions and 27 deletions

9
samples/SQLPL/sleep.sql Normal file
View File

@@ -0,0 +1,9 @@
create procedure sleep (in sleeptime integer)
begin
declare wait_until timestamp;
set wait_until = (current timestamp + sleeptime seconds);
while (wait_until > current timestamp)
do
end while;
end!