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 has been 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.
Has anyone encountered this issue?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Has anyone encountered this issue?
The text was updated successfully, but these errors were encountered: