mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
ignore virtual_table_scan_flags
This commit is contained in:
parent
58e50836e7
commit
9a647c57e0
1 changed files with 11 additions and 12 deletions
|
@ -158,6 +158,16 @@ my %ignore = map {$_ => 1} qw/
|
||||||
OPEN_SUBJOURNAL OPEN_MASTER_JOURNAL OPEN_WAL
|
OPEN_SUBJOURNAL OPEN_MASTER_JOURNAL OPEN_WAL
|
||||||
/;
|
/;
|
||||||
|
|
||||||
|
my $ignore_tag_re = join '|', qw/
|
||||||
|
testing_interface library_version_numbers configuration_options
|
||||||
|
device_characteristics file_locking vfs_method xshmlock_index
|
||||||
|
mutex_types scan_status run_time_limit standard_file_control
|
||||||
|
status_parameters synchronization_type virtual_table_constraint
|
||||||
|
virtual_table_indexing_information checkpoint_operation_parameters
|
||||||
|
checkpoint_mode conflict_resolution text_encodings
|
||||||
|
virtual_table_scan_flags
|
||||||
|
/;
|
||||||
|
|
||||||
my %compat = map {$_ => 1} qw/
|
my %compat = map {$_ => 1} qw/
|
||||||
authorizer_action_codes
|
authorizer_action_codes
|
||||||
authorizer_return_codes
|
authorizer_return_codes
|
||||||
|
@ -176,18 +186,7 @@ sub extract_constants {
|
||||||
$tag =~ s/[ \-]+/_/g;
|
$tag =~ s/[ \-]+/_/g;
|
||||||
($tag) = $tag =~ /^(\w+)/;
|
($tag) = $tag =~ /^(\w+)/;
|
||||||
$tag =~ s/_$//;
|
$tag =~ s/_$//;
|
||||||
if ($tag =~ /
|
if ($tag =~ /$ignore_tag_re/) {
|
||||||
testing_interface |
|
|
||||||
library_version_numbers |
|
|
||||||
configuration_options | device_characteristics |
|
|
||||||
file_locking | vfs_method | xshmlock_index |
|
|
||||||
mutex_types | scan_status | run_time_limit |
|
|
||||||
standard_file_control | status_parameters |
|
|
||||||
synchronization_type | virtual_table_constraint |
|
|
||||||
virtual_table_indexing_information |
|
|
||||||
checkpoint_operation_parameters | checkpoint_mode |
|
|
||||||
conflict_resolution | text_encodings
|
|
||||||
/x) {
|
|
||||||
print "$tag is ignored\n" if $VERBOSE;
|
print "$tag is ignored\n" if $VERBOSE;
|
||||||
$tag = '';
|
$tag = '';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue