File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ void table_or_query_name::out(std::ostream &out) {
36
36
37
37
table_sample::table_sample (prod *p) : table_ref(p) {
38
38
match ();
39
-
39
+ retry_limit = 1000 ; /* retries are cheap here */
40
40
do {
41
41
auto pick = random_pick (scope->tables );
42
42
t = dynamic_cast <struct table *>(pick);
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ void prod::indent(std::ostream &out)
27
27
void prod::retry ()
28
28
{
29
29
impedance::retry (this );
30
- if (retries++ <= 200 )
30
+ if (retries++ <= retry_limit )
31
31
return ;
32
32
33
33
impedance::limit (this );
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ struct prod {
19
19
struct scope *scope;
20
20
int level;
21
21
long retries = 0 ;
22
+ long retry_limit = 200 ;
22
23
prod (prod *parent);
23
24
virtual void indent (std::ostream &out);
24
25
virtual void out (std::ostream &out) = 0;
You can’t perform that action at this time.
0 commit comments