Skip to content

Commit d7437dd

Browse files
committed
grammar: Don't hardcode the retry limit.
Override for table_sample.
1 parent 176d409 commit d7437dd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

grammar.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void table_or_query_name::out(std::ostream &out) {
3636

3737
table_sample::table_sample(prod *p) : table_ref(p) {
3838
match();
39-
39+
retry_limit = 1000; /* retries are cheap here */
4040
do {
4141
auto pick = random_pick(scope->tables);
4242
t = dynamic_cast<struct table*>(pick);

prod.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void prod::indent(std::ostream &out)
2727
void prod::retry()
2828
{
2929
impedance::retry(this);
30-
if (retries++ <= 200)
30+
if (retries++ <= retry_limit)
3131
return;
3232

3333
impedance::limit(this);

prod.hh

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ struct prod {
1919
struct scope *scope;
2020
int level;
2121
long retries = 0;
22+
long retry_limit = 200;
2223
prod(prod *parent);
2324
virtual void indent(std::ostream &out);
2425
virtual void out(std::ostream &out) = 0;

0 commit comments

Comments
 (0)