File tree Expand file tree Collapse file tree 1 file changed +4
-29
lines changed Expand file tree Collapse file tree 1 file changed +4
-29
lines changed Original file line number Diff line number Diff line change @@ -6468,42 +6468,17 @@ vacuum_option:
6468
6468
}
6469
6469
}
6470
6470
6471
- // Boolean constants for vacuum options. we can' t use `boolean_value ` because of conflicts with names
6472
- // An empty value here is considered true
6471
+ // Boolean constants for vacuum options. An empty value here is considered true
6473
6472
boolean_value_for_vacuum_opt:
6474
6473
/* EMPTY */
6475
6474
{
6476
6475
$$.val = true
6477
6476
}
6478
- | TRUE
6479
- {
6480
- $$ .val = true
6481
- }
6482
- | FALSE
6483
- {
6484
- $$ .val = false
6485
- }
6486
- | ' t'
6487
- {
6488
- $$ .val = true
6489
- }
6490
- | ' f'
6491
- {
6492
- $$ .val = false
6493
- }
6494
- | ' y'
6495
- {
6496
- $$ .val = true
6497
- }
6498
- | ' n'
6477
+ | boolean_value
6499
6478
{
6500
- $$ .val = false
6479
+ $$.val = $1
6501
6480
}
6502
- | ICONST
6503
- {
6504
- $$ .val = $1 .int64() != 0
6505
- }
6506
-
6481
+
6507
6482
auto_on_off:
6508
6483
AUTO
6509
6484
{
You can’t perform that action at this time.
0 commit comments