Sign in
apache
/
hive
/
refs/heads/master
/
.
/
hplsql
/
src
/
test
/
queries
/
local
/
declare_condition.sql
blob: 8739499fd8ec6cee395e26911a8e5b7648530c40 [
file
]
DECLARE
cnt_condition CONDITION
;
DECLARE
EXIT
HANDLER
FOR
cnt_condition
PRINT
'Condition raised'
;
IF
1
<>
2
THEN
SIGNAL cnt_condition
;
END
IF
;
PRINT
'Must not be printed 1'
;
PRINT
'Must not be printed 2'
;