summaryrefslogtreecommitdiffstats
path: root/indenters/example.sql
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-04-18 20:47:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-04-18 20:47:44 +0900
commit425e16ad894fd23d7c5b061acffba6cd04a1b1db (patch)
treee1f794e07812bcd59a4b518747bf9dc5c2a5a163 /indenters/example.sql
parent11451cea9db07b2a257297de57d76a8dbb7e3a5e (diff)
downloaduniversal-indent-gui-tqt-425e16ad894fd23d7c5b061acffba6cd04a1b1db.tar.gz
universal-indent-gui-tqt-425e16ad894fd23d7c5b061acffba6cd04a1b1db.zip
Added code to load last open file or an example or an untitled file.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'indenters/example.sql')
-rwxr-xr-xindenters/example.sql37
1 files changed, 0 insertions, 37 deletions
diff --git a/indenters/example.sql b/indenters/example.sql
deleted file mode 100755
index 077eeb8..0000000
--- a/indenters/example.sql
+++ /dev/null
@@ -1,37 +0,0 @@
-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;