summaryrefslogtreecommitdiffstats
path: root/indenters/__TODO/example.sql
diff options
context:
space:
mode:
Diffstat (limited to 'indenters/__TODO/example.sql')
-rwxr-xr-xindenters/__TODO/example.sql37
1 files changed, 37 insertions, 0 deletions
diff --git a/indenters/__TODO/example.sql b/indenters/__TODO/example.sql
new file mode 100755
index 0000000..077eeb8
--- /dev/null
+++ b/indenters/__TODO/example.sql
@@ -0,0 +1,37 @@
+CREATE PACKAGE BODY b IS
+
+PROCEDURE proc1 IS
+BEGIN
+IF 7 <> 5 THEN
+FOR rec IN (SELECT * FROM dual
+ WHERE g = 5) LOOP
+NULL;
+END LOOP;
+ END IF;
+END;
+
+PROCEDURE recurse IS
+ b number:=5;
+ d456 number:=456;
+BEGIN
+ recurse;
+ proc1;
+ a := (a + 1
+ +4
+ + 5
+ + 8);
+ c := f + 4 + 34;
+ total := earth +sky;
+
+ --this is comment
+
+ uk:=h;
+ g:=l;
+ exception
+ when no_data then
+ hello;
+ END;
+
+ BEGIN
+ NULL;
+END;