You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 18, 2021. It is now read-only.
Hi,
I amusing this parser to parse Oracle SQl based files.
Following FOR statements are getting parsed succesfully,
1.
for i in 1 ..l_line_tbl.xyz()
LOOP
l_line_xyz(i).random_ship_date := l_random_date;
l_line_xyz(i).random_set_id := x_random_set_id;
END LOOP;
2.
for i in 1..5
LOOP
l_line_xyz(i).random_ship_date := l_random_date;
l_line_xyz(i).random_set_id := x_random_set_id;
END LOOP;
3.
for i in 1 ..5
LOOP
l_line_xyz(i).random_ship_date := l_random_date;
l_line_xyz(i).random_set_id := x_random_set_id;
END LOOP;
But, this is failing,
1.
for i in 1..l_line_tbl.xyz()
LOOP
l_line_xyz(i).random_ship_date := l_random_date;
l_line_xyz(i).random_set_id := x_random_set_id;
END LOOP;
If upper bound is a function call and there is no space between lower bound and double period, then is not parsing.