Sign in
apache
/
hive
/
refs/heads/HiveAggregateReduceFunctionsRule
/
.
/
hplsql
/
src
/
test
/
queries
/
local
/
break.sql
blob: c53535dea3ae78729ee78c383d8af760ef8d4a61 [
file
] [
log
] [
blame
]
DECLARE
count INT
DEFAULT
3
;
WHILE
1
=
1
BEGIN
PRINT
'Start of while block'
;
PRINT
count
;
SET
count
=
count
-
1
;
IF
count
=
0
BREAK
;
PRINT
'End of while block'
;
END
PRINT
'End of script'
;