mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
recode heuristic to use existing style. add additional sample
This commit is contained in:
9
samples/SQLPL/sleep.sql
Normal file
9
samples/SQLPL/sleep.sql
Normal 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!
|
||||
Reference in New Issue
Block a user