diff --git a/.gitignore b/.gitignore index bd77489..6fbfd92 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,6 @@ *.gem *.sqlite .DS_Store + +spec/support/database.yml +/.byebug_history diff --git a/.ruby-version b/.ruby-version index 3f5987a..57cf282 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.4.9 +2.6.5 diff --git a/.travis.yml b/.travis.yml index 2671429..2dda489 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,42 @@ -sudo: false language: ruby +sudo: false +cache: bundler rvm: + - 2.7.0 + - 2.6.5 + - 2.5.7 - 2.4.9 +gemfile: + - gemfiles/Gemfile[rails-4.2.x][mysql2-0.4.x] + - gemfiles/Gemfile[rails-4.2.x][pg-0.11.x] + - gemfiles/Gemfile[rails-4.2.x][sqlite3-1.3.x] + - gemfiles/Gemfile[rails-5.2.x][mysql2-0.5.x] + - gemfiles/Gemfile[rails-5.2.x][pg-0.18.x] + - gemfiles/Gemfile[rails-5.2.x][sqlite3-1.4.x] + - gemfiles/Gemfile[rails-6.0.x][mysql2-0.5.x] + - gemfiles/Gemfile[rails-6.0.x][pg-0.18.x] + - gemfiles/Gemfile[rails-6.0.x][sqlite3-1.4.x] +matrix: + exclude: + - rvm: 2.4.9 + gemfile: gemfiles/Gemfile[rails-6.0.x][mysql2-0.5.x] + - rvm: 2.4.9 + gemfile: gemfiles/Gemfile[rails-6.0.x][pg-0.18.x] + - rvm: 2.4.9 + gemfile: gemfiles/Gemfile[rails-6.0.x][sqlite3-1.4.x] +install: + # Replace default Travis CI bundler script with a version that doesn't + # explode when lockfile doesn't match recently bumped version + - bundle install --no-deployment --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle} before_install: - gem install bundler -v 1.15.4 - export TZ=America/New_York +before_script: + - psql -c 'create database actionset_test;' -U postgres + - mysql -e 'create database IF NOT EXISTS actionset_test;' +services: + - mysql + - postgresql +script: bundle exec rake current_rspec after_success: - bash < (curl -s https://codecov.io/bash) diff --git a/Gemfile b/Gemfile index 79ad558..b70c9e3 100644 --- a/Gemfile +++ b/Gemfile @@ -1,15 +1,15 @@ -# frozen_string_literal: true - source 'https://rubygems.org' -git_source(:github) { |repo_name| "https://github.com/#{repo_name}" } +ruby '>= 2.6' + +# Runtime dependencies +gem 'activerecord', '~> 6.0' +gem 'actionpack', '~> 6.0' +gem 'sqlite3', '~> 1.4' -# Specify your gem's dependencies in actionset.gemspec -gemspec +# Gem under test +gem 'actionset', path: '.' -group :test do - gem 'actionpack' - gem 'activerecord' - gem 'rspec-rails' - gem 'sqlite3' -end +# test/dev dependencies +gem 'gemika', group: [:development, :test] +eval_gemfile './gemfiles/Gemfile.test' diff --git a/Gemfile.lock b/Gemfile.lock index 372e226..505a096 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,60 +2,46 @@ PATH remote: . specs: actionset (0.10.0) - activesupport (>= 4.0.2) + activesupport railties GEM remote: https://rubygems.org/ specs: - actioncable (5.2.4.2) - actionpack (= 5.2.4.2) - nio4r (~> 2.0) - websocket-driver (>= 0.6.1) - actionmailer (5.2.4.2) - actionpack (= 5.2.4.2) - actionview (= 5.2.4.2) - activejob (= 5.2.4.2) - mail (~> 2.5, >= 2.5.4) - rails-dom-testing (~> 2.0) - actionpack (5.2.4.2) - actionview (= 5.2.4.2) - activesupport (= 5.2.4.2) + actionpack (6.0.2.2) + actionview (= 6.0.2.2) + activesupport (= 6.0.2.2) rack (~> 2.0, >= 2.0.8) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) - rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (5.2.4.2) - activesupport (= 5.2.4.2) + rails-html-sanitizer (~> 1.0, >= 1.2.0) + actionview (6.0.2.2) + activesupport (= 6.0.2.2) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) - rails-html-sanitizer (~> 1.0, >= 1.0.3) - activejob (5.2.4.2) - activesupport (= 5.2.4.2) - globalid (>= 0.3.6) - activemodel (5.2.4.2) - activesupport (= 5.2.4.2) - activerecord (5.2.4.2) - activemodel (= 5.2.4.2) - activesupport (= 5.2.4.2) - arel (>= 9.0) - activestorage (5.2.4.2) - actionpack (= 5.2.4.2) - activerecord (= 5.2.4.2) - marcel (~> 0.3.1) - activesupport (5.2.4.2) + rails-html-sanitizer (~> 1.1, >= 1.2.0) + activemodel (6.0.2.2) + activesupport (= 6.0.2.2) + activerecord (6.0.2.2) + activemodel (= 6.0.2.2) + activesupport (= 6.0.2.2) + activesupport (6.0.2.2) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) + zeitwerk (~> 2.2) addressable (2.7.0) public_suffix (>= 2.0.2, < 5.0) ansi (1.5.0) - arel (9.0.0) ast (2.4.0) + bigdecimal (1.4.1) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) builder (3.2.4) - capybara (3.31.0) + byebug (11.1.2) + capybara (3.32.1) addressable mini_mime (>= 0.1.3) nokogiri (~> 1.8) @@ -67,88 +53,75 @@ GEM json simplecov url - combustion (1.1.2) + coderay (1.1.2) + combustion (1.2.0) activesupport (>= 3.0.0) railties (>= 3.0.0) thor (>= 0.14.6) concurrent-ruby (1.1.6) crass (1.0.6) - database_cleaner (1.8.3) + database_cleaner (1.8.4) + debug_inspector (0.0.3) diff-lcs (1.3) docile (1.3.2) erubi (1.9.0) - factory_bot (5.1.1) + factory_bot (5.1.2) activesupport (>= 4.2.0) - faker (2.10.2) + faker (2.11.0) i18n (>= 1.6, < 2) - globalid (0.4.2) - activesupport (>= 4.2.0) + gemika (0.4.0) i18n (1.8.2) concurrent-ruby (~> 1.0) + interception (0.5) jaro_winkler (1.5.4) json (2.3.0) loofah (2.5.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) - mail (2.7.1) - mini_mime (>= 0.1.1) - marcel (0.3.3) - mimemagic (~> 0.3.2) method_source (1.0.0) - mimemagic (0.3.4) mini_mime (1.0.2) mini_portile2 (2.4.0) minitest (5.14.0) - nio4r (2.5.2) nokogiri (1.10.9) mini_portile2 (~> 2.4.0) parallel (1.19.1) - parser (2.7.0.4) + parser (2.7.1.1) ast (~> 2.4.0) - polyamorous (2.3.0) - activerecord (>= 5.0) - public_suffix (4.0.3) + polyamorous (2.3.2) + activerecord (>= 5.2.1) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) rack (2.2.2) rack-test (1.1.0) rack (>= 1.0, < 3) - rails (5.2.4.2) - actioncable (= 5.2.4.2) - actionmailer (= 5.2.4.2) - actionpack (= 5.2.4.2) - actionview (= 5.2.4.2) - activejob (= 5.2.4.2) - activemodel (= 5.2.4.2) - activerecord (= 5.2.4.2) - activestorage (= 5.2.4.2) - activesupport (= 5.2.4.2) - bundler (>= 1.3.0) - railties (= 5.2.4.2) - sprockets-rails (>= 2.0.0) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) rails-html-sanitizer (1.3.0) loofah (~> 2.3) - railties (5.2.4.2) - actionpack (= 5.2.4.2) - activesupport (= 5.2.4.2) + railties (6.0.2.2) + actionpack (= 6.0.2.2) + activesupport (= 6.0.2.2) method_source rake (>= 0.8.7) - thor (>= 0.19.0, < 2.0) + thor (>= 0.20.3, < 2.0) rainbow (3.0.0) rake (13.0.1) - ransack (2.3.0) - actionpack (>= 5.0) - activerecord (>= 5.0) - activesupport (>= 5.0) + ransack (2.3.2) + activerecord (>= 5.2.1) + activesupport (>= 5.2.1) i18n - polyamorous (= 2.3.0) + polyamorous (= 2.3.2) regexp_parser (1.7.0) rexml (3.2.4) - rspec (3.9.0) - rspec-core (~> 3.9.0) - rspec-expectations (~> 3.9.0) - rspec-mocks (~> 3.9.0) rspec-core (3.9.1) rspec-support (~> 3.9.1) rspec-expectations (3.9.1) @@ -157,23 +130,23 @@ GEM rspec-mocks (3.9.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.9.0) - rspec-rails (3.9.1) - actionpack (>= 3.0) - activesupport (>= 3.0) - railties (>= 3.0) - rspec-core (~> 3.9.0) - rspec-expectations (~> 3.9.0) - rspec-mocks (~> 3.9.0) - rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) rspec-support (3.9.2) - rubocop (0.80.1) + rubocop (0.82.0) jaro_winkler (~> 1.5.1) parallel (~> 1.10) parser (>= 2.7.0.1) rainbow (>= 2.2.2, < 4.0) rexml ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 1.7) + unicode-display_width (>= 1.4.0, < 2.0) ruby-progressbar (1.10.1) simplecov (0.18.5) docile (~> 1.1) @@ -183,13 +156,6 @@ GEM simplecov terminal-table simplecov-html (0.12.2) - sprockets (3.7.2) - concurrent-ruby (~> 1.0) - rack (> 1, < 3) - sprockets-rails (3.2.1) - actionpack (>= 4.0) - activesupport (>= 4.0) - sprockets (>= 3.0.0) sqlite3 (1.4.2) terminal-table (1.8.0) unicode-display_width (~> 1.1, >= 1.1.1) @@ -197,37 +163,41 @@ GEM thread_safe (0.3.6) tzinfo (1.2.7) thread_safe (~> 0.1) - unicode-display_width (1.6.1) + unicode-display_width (1.7.0) url (0.3.2) - websocket-driver (0.7.1) - websocket-extensions (>= 0.1.0) - websocket-extensions (0.1.5) xpath (3.2.0) nokogiri (~> 1.8) + zeitwerk (2.3.0) PLATFORMS ruby DEPENDENCIES - actionpack + actionpack (~> 6.0) actionset! - activerecord - bundler + activerecord (~> 6.0) + bigdecimal (~> 1.4.x) + byebug capybara codecov combustion database_cleaner factory_bot faker - rails (~> 5.2.0) + gemika + pry + pry-rescue + pry-stack_explorer rake ransack - rspec rspec-rails rubocop simplecov simplecov-console - sqlite3 + sqlite3 (~> 1.4) + +RUBY VERSION + ruby 2.6.5p114 BUNDLED WITH 2.1.4 diff --git a/README.md b/README.md index 0bb5a09..4d5d941 100644 --- a/README.md +++ b/README.md @@ -134,12 +134,39 @@ ASC => [nil, -2, -1, 1, 2] DESC => [2, 1, -1, -2, nil] ``` +## Edge-Cases + +If you are using MySQL as your database engine, you may run into various possible edge-cases: + +- ensure your `float` and `decimal` columns have an appropriate `precision` and `scale` set (it appears the default is (5,2)) + + if, for example, you create a `float` column without any `precision` or `scale` defined, and you set a value to `12345.67`, the database will return `12345.7`. Similarly, if you set the value to `123456.78`, you will get back `123457.0` + + https://dev.mysql.com/doc/refman/8.0/en/problems-with-float.html + + https://jibai31.wordpress.com/2017/05/04/how-to-choose-your-mysql-encoding-and-collation/ + + https://dev.mysql.com/doc/refman/8.0/en/charset-collate.html + + https://api.rubyonrails.org/v3.1.1/classes/ActiveRecord/ConnectionAdapters/TableDefinition.html#method-i-column +- + ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). +There are tests in `spec`. We only accept PRs with tests. To run tests: + +- Install Ruby 2.4.6 +- Create a local test database `actionset_test` in both MySQL and PostgreSQL +- Copy `spec/support/database.sample.yml` to `spec/support/database.yml` and enter your local credentials for the test databases +- Install development dependencies using `bundle install` +- Run tests using `bundle exec rspec` + +We recommend to test large changes against multiple versions of Ruby and multiple dependency sets. Supported combinations are configured in `.travis.yml`. We provide some rake tasks to help with this: + +- Install development dependencies using `bundle matrix:install` +- Run tests using `bundle matrix:spec` + +Note that we have configured Travis CI to automatically run tests in all supported Ruby versions and dependency sets after each push. We will only merge pull requests after a green Travis build. + ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/fractaledmind/actionset. diff --git a/Rakefile b/Rakefile index 7cc2370..7e3adc0 100644 --- a/Rakefile +++ b/Rakefile @@ -3,13 +3,19 @@ require 'bundler/gem_tasks' require 'rspec/core/rake_task' +begin + require 'gemika/tasks' +rescue LoadError + puts 'Run `gem install gemika` for additional tasks' +end + RSpec::Core::RakeTask.new(:spec) -task :full_spec do +task :custom_default do ENV['COVERAGE'] = 'true' ENV['INSPECT_FAILURE'] = 'true' ENV['LOGICALLY_EXHAUSTIVE_REQUEST_SPECS'] = 'true' - Rake::Task['spec'].invoke + Rake::Task['matrix:spec'].invoke end -task default: :full_spec +task default: :custom_default diff --git a/actionset.gemspec b/actionset.gemspec index 8370f6a..c78b265 100644 --- a/actionset.gemspec +++ b/actionset.gemspec @@ -22,21 +22,6 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.add_dependency 'activesupport', '>= 4.0.2' + spec.add_dependency 'activesupport' spec.add_dependency 'railties' - - spec.add_development_dependency 'bundler' - spec.add_development_dependency 'capybara' - spec.add_development_dependency 'codecov' - spec.add_development_dependency 'combustion' - spec.add_development_dependency 'database_cleaner' - spec.add_development_dependency 'factory_bot' - spec.add_development_dependency 'faker' - spec.add_development_dependency 'rails', '~> 5.2.0' - spec.add_development_dependency 'rake' - spec.add_development_dependency 'ransack' - spec.add_development_dependency 'rspec' - spec.add_development_dependency 'rubocop' - spec.add_development_dependency 'simplecov' - spec.add_development_dependency 'simplecov-console' end diff --git a/bin/console b/bin/console index 0982598..f975280 100755 --- a/bin/console +++ b/bin/console @@ -1,19 +1,18 @@ #!/usr/bin/env ruby # frozen_string_literal: true - -ENV['RAILS_ENV'] ||= 'test' +$VERBOSE = nil require 'bundler' -require 'simplecov' -require 'combustion' - -Combustion.initialize! :active_record, :action_controller, :action_view +require_relative '../spec/support/initializers/combustion' Bundler.require :default, :development require 'bundler/setup' require 'active_set' require 'ostruct' +database = Gemika::Database.new(config_folder: 'spec/internal/config') +database.connect + begin FactoryBot.find_definitions rescue FactoryBot::DuplicateDefinitionError @@ -21,7 +20,7 @@ rescue FactoryBot::DuplicateDefinitionError end # (If you use this, don't forget to add pry to your Gemfile!) -# require "pry" +# require 'pry' # Pry.start require 'irb' diff --git a/gemfiles/Gemfile.test b/gemfiles/Gemfile.test new file mode 100644 index 0000000..27ae34f --- /dev/null +++ b/gemfiles/Gemfile.test @@ -0,0 +1,28 @@ +major, minor, patch = RUBY_VERSION.split('.') +if major == '2' && minor == '4' + gem 'bigdecimal', '1.3.5' +else + gem 'bigdecimal', '~> 1.4.x' +end + +group :development, :test do + gem 'byebug' + gem 'factory_bot' + gem 'faker' + gem 'rake' + gem 'rubocop' + gem 'pry' + gem 'pry-rescue' + gem 'pry-stack_explorer' + gem 'ransack' +end + +group :test do + gem 'capybara' + gem 'codecov' + gem 'combustion' + gem 'database_cleaner' + gem 'rspec-rails' + gem 'simplecov' + gem 'simplecov-console' +end diff --git a/gemfiles/Gemfile[rails-4.2.x][mysql2-0.4.x] b/gemfiles/Gemfile[rails-4.2.x][mysql2-0.4.x] new file mode 100644 index 0000000..aac39dc --- /dev/null +++ b/gemfiles/Gemfile[rails-4.2.x][mysql2-0.4.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 4.2' +gem 'actionpack', '~> 4.2' +gem 'mysql2', '~> 0.4.10' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-4.2.x][mysql2-0.4.x].lock b/gemfiles/Gemfile[rails-4.2.x][mysql2-0.4.x].lock new file mode 100644 index 0000000..60dee8c --- /dev/null +++ b/gemfiles/Gemfile[rails-4.2.x][mysql2-0.4.x].lock @@ -0,0 +1,201 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (4.2.11.1) + actionview (= 4.2.11.1) + activesupport (= 4.2.11.1) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.11.1) + activesupport (= 4.2.11.1) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activemodel (4.2.11.1) + activesupport (= 4.2.11.1) + builder (~> 3.1) + activerecord (4.2.11.1) + activemodel (= 4.2.11.1) + activesupport (= 4.2.11.1) + arel (~> 6.0) + activesupport (4.2.11.1) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + arel (6.0.4) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubis (2.7.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.2.1) + i18n (>= 0.8) + gemika (0.4.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + mysql2 (0.4.10) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (1.6.13) + rack-test (0.6.3) + rack (>= 1.0) + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.9) + activesupport (>= 4.2.0, < 5.0) + nokogiri (~> 1.6) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (4.2.11.1) + actionpack (= 4.2.11.1) + activesupport (= 4.2.11.1) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (1.8.10) + actionpack (>= 3.0, < 5.2) + activerecord (>= 3.0, < 5.2) + activesupport (>= 3.0, < 5.2) + i18n + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 4.2) + actionset! + activerecord (~> 4.2) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + mysql2 (~> 0.4.10) + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + +BUNDLED WITH + 2.1.4 diff --git a/gemfiles/Gemfile[rails-4.2.x][pg-0.11.x] b/gemfiles/Gemfile[rails-4.2.x][pg-0.11.x] new file mode 100644 index 0000000..c6c9426 --- /dev/null +++ b/gemfiles/Gemfile[rails-4.2.x][pg-0.11.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 4.2' +gem 'actionpack', '~> 4.2' +gem 'pg', '~> 0.11' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-4.2.x][pg-0.11.x].lock b/gemfiles/Gemfile[rails-4.2.x][pg-0.11.x].lock new file mode 100644 index 0000000..5bae2b1 --- /dev/null +++ b/gemfiles/Gemfile[rails-4.2.x][pg-0.11.x].lock @@ -0,0 +1,201 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (4.2.11.1) + actionview (= 4.2.11.1) + activesupport (= 4.2.11.1) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.11.1) + activesupport (= 4.2.11.1) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activemodel (4.2.11.1) + activesupport (= 4.2.11.1) + builder (~> 3.1) + activerecord (4.2.11.1) + activemodel (= 4.2.11.1) + activesupport (= 4.2.11.1) + arel (~> 6.0) + activesupport (4.2.11.1) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + arel (6.0.4) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubis (2.7.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.2.1) + i18n (>= 0.8) + gemika (0.4.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + pg (0.21.0) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (1.6.13) + rack-test (0.6.3) + rack (>= 1.0) + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.9) + activesupport (>= 4.2.0, < 5.0) + nokogiri (~> 1.6) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (4.2.11.1) + actionpack (= 4.2.11.1) + activesupport (= 4.2.11.1) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (1.8.10) + actionpack (>= 3.0, < 5.2) + activerecord (>= 3.0, < 5.2) + activesupport (>= 3.0, < 5.2) + i18n + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 4.2) + actionset! + activerecord (~> 4.2) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + pg (~> 0.11) + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + +BUNDLED WITH + 2.1.4 diff --git a/gemfiles/Gemfile[rails-4.2.x][sqlite3-1.3.x] b/gemfiles/Gemfile[rails-4.2.x][sqlite3-1.3.x] new file mode 100644 index 0000000..066a8c8 --- /dev/null +++ b/gemfiles/Gemfile[rails-4.2.x][sqlite3-1.3.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 4.2' +gem 'actionpack', '~> 4.2' +gem 'sqlite3', '~> 1.3', '< 1.4' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-4.2.x][sqlite3-1.3.x].lock b/gemfiles/Gemfile[rails-4.2.x][sqlite3-1.3.x].lock new file mode 100644 index 0000000..28a9e75 --- /dev/null +++ b/gemfiles/Gemfile[rails-4.2.x][sqlite3-1.3.x].lock @@ -0,0 +1,201 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (4.2.11.1) + actionview (= 4.2.11.1) + activesupport (= 4.2.11.1) + rack (~> 1.6) + rack-test (~> 0.6.2) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (4.2.11.1) + activesupport (= 4.2.11.1) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 1.0, >= 1.0.5) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activemodel (4.2.11.1) + activesupport (= 4.2.11.1) + builder (~> 3.1) + activerecord (4.2.11.1) + activemodel (= 4.2.11.1) + activesupport (= 4.2.11.1) + arel (~> 6.0) + activesupport (4.2.11.1) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + arel (6.0.4) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubis (2.7.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.2.1) + i18n (>= 0.8) + gemika (0.4.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (1.6.13) + rack-test (0.6.3) + rack (>= 1.0) + rails-deprecated_sanitizer (1.0.3) + activesupport (>= 4.2.0.alpha) + rails-dom-testing (1.0.9) + activesupport (>= 4.2.0, < 5.0) + nokogiri (~> 1.6) + rails-deprecated_sanitizer (>= 1.0.1) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (4.2.11.1) + actionpack (= 4.2.11.1) + activesupport (= 4.2.11.1) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (1.8.10) + actionpack (>= 3.0, < 5.2) + activerecord (>= 3.0, < 5.2) + activesupport (>= 3.0, < 5.2) + i18n + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + sqlite3 (1.3.13) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 4.2) + actionset! + activerecord (~> 4.2) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + sqlite3 (~> 1.3, < 1.4) + +BUNDLED WITH + 2.1.4 diff --git a/gemfiles/Gemfile[rails-5.2.x][mysql2-0.5.x] b/gemfiles/Gemfile[rails-5.2.x][mysql2-0.5.x] new file mode 100644 index 0000000..2eab42b --- /dev/null +++ b/gemfiles/Gemfile[rails-5.2.x][mysql2-0.5.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 5.2' +gem 'actionpack', '~> 5.2' +gem 'mysql2', '~> 0.5' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-5.2.x][mysql2-0.5.x].lock b/gemfiles/Gemfile[rails-5.2.x][mysql2-0.5.x].lock new file mode 100644 index 0000000..a551404 --- /dev/null +++ b/gemfiles/Gemfile[rails-5.2.x][mysql2-0.5.x].lock @@ -0,0 +1,200 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (5.2.4.2) + actionview (= 5.2.4.2) + activesupport (= 5.2.4.2) + rack (~> 2.0, >= 2.0.8) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.2.4.2) + activesupport (= 5.2.4.2) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activemodel (5.2.4.2) + activesupport (= 5.2.4.2) + activerecord (5.2.4.2) + activemodel (= 5.2.4.2) + activesupport (= 5.2.4.2) + arel (>= 9.0) + activesupport (5.2.4.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + arel (9.0.0) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubi (1.9.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.11.0) + i18n (>= 1.6, < 2) + gemika (0.4.0) + i18n (1.8.2) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + mysql2 (0.5.3) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + polyamorous (2.3.2) + activerecord (>= 5.2.1) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (2.2.2) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (5.2.4.2) + actionpack (= 5.2.4.2) + activesupport (= 5.2.4.2) + method_source + rake (>= 0.8.7) + thor (>= 0.19.0, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (2.3.2) + activerecord (>= 5.2.1) + activesupport (>= 5.2.1) + i18n + polyamorous (= 2.3.2) + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 5.2) + actionset! + activerecord (~> 5.2) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + mysql2 (~> 0.5) + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + +BUNDLED WITH + 2.1.4 diff --git a/gemfiles/Gemfile[rails-5.2.x][pg-0.18.x] b/gemfiles/Gemfile[rails-5.2.x][pg-0.18.x] new file mode 100644 index 0000000..a035803 --- /dev/null +++ b/gemfiles/Gemfile[rails-5.2.x][pg-0.18.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 5.2' +gem 'actionpack', '~> 5.2' +gem 'pg', '~> 0.18' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-5.2.x][pg-0.18.x].lock b/gemfiles/Gemfile[rails-5.2.x][pg-0.18.x].lock new file mode 100644 index 0000000..f8ccf7b --- /dev/null +++ b/gemfiles/Gemfile[rails-5.2.x][pg-0.18.x].lock @@ -0,0 +1,200 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (5.2.4.2) + actionview (= 5.2.4.2) + activesupport (= 5.2.4.2) + rack (~> 2.0, >= 2.0.8) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.2.4.2) + activesupport (= 5.2.4.2) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activemodel (5.2.4.2) + activesupport (= 5.2.4.2) + activerecord (5.2.4.2) + activemodel (= 5.2.4.2) + activesupport (= 5.2.4.2) + arel (>= 9.0) + activesupport (5.2.4.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + arel (9.0.0) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubi (1.9.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.11.0) + i18n (>= 1.6, < 2) + gemika (0.4.0) + i18n (1.8.2) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + pg (0.21.0) + polyamorous (2.3.2) + activerecord (>= 5.2.1) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (2.2.2) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (5.2.4.2) + actionpack (= 5.2.4.2) + activesupport (= 5.2.4.2) + method_source + rake (>= 0.8.7) + thor (>= 0.19.0, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (2.3.2) + activerecord (>= 5.2.1) + activesupport (>= 5.2.1) + i18n + polyamorous (= 2.3.2) + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 5.2) + actionset! + activerecord (~> 5.2) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + pg (~> 0.18) + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + +BUNDLED WITH + 2.1.4 diff --git a/gemfiles/Gemfile[rails-5.2.x][sqlite3-1.4.x] b/gemfiles/Gemfile[rails-5.2.x][sqlite3-1.4.x] new file mode 100644 index 0000000..36db170 --- /dev/null +++ b/gemfiles/Gemfile[rails-5.2.x][sqlite3-1.4.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 5.2' +gem 'actionpack', '~> 5.2' +gem 'sqlite3', '~> 1.4' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-5.2.x][sqlite3-1.4.x].lock b/gemfiles/Gemfile[rails-5.2.x][sqlite3-1.4.x].lock new file mode 100644 index 0000000..171beba --- /dev/null +++ b/gemfiles/Gemfile[rails-5.2.x][sqlite3-1.4.x].lock @@ -0,0 +1,200 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (5.2.4.2) + actionview (= 5.2.4.2) + activesupport (= 5.2.4.2) + rack (~> 2.0, >= 2.0.8) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.2.4.2) + activesupport (= 5.2.4.2) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activemodel (5.2.4.2) + activesupport (= 5.2.4.2) + activerecord (5.2.4.2) + activemodel (= 5.2.4.2) + activesupport (= 5.2.4.2) + arel (>= 9.0) + activesupport (5.2.4.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + arel (9.0.0) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubi (1.9.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.11.0) + i18n (>= 1.6, < 2) + gemika (0.4.0) + i18n (1.8.2) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + polyamorous (2.3.2) + activerecord (>= 5.2.1) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (2.2.2) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (5.2.4.2) + actionpack (= 5.2.4.2) + activesupport (= 5.2.4.2) + method_source + rake (>= 0.8.7) + thor (>= 0.19.0, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (2.3.2) + activerecord (>= 5.2.1) + activesupport (>= 5.2.1) + i18n + polyamorous (= 2.3.2) + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + sqlite3 (1.4.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 5.2) + actionset! + activerecord (~> 5.2) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + sqlite3 (~> 1.4) + +BUNDLED WITH + 2.1.4 diff --git a/gemfiles/Gemfile[rails-6.0.x][mysql2-0.5.x] b/gemfiles/Gemfile[rails-6.0.x][mysql2-0.5.x] new file mode 100644 index 0000000..889f4f4 --- /dev/null +++ b/gemfiles/Gemfile[rails-6.0.x][mysql2-0.5.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 6.0' +gem 'actionpack', '~> 6.0' +gem 'mysql2', '~> 0.5' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-6.0.x][mysql2-0.5.x].lock b/gemfiles/Gemfile[rails-6.0.x][mysql2-0.5.x].lock new file mode 100644 index 0000000..2a8f02f --- /dev/null +++ b/gemfiles/Gemfile[rails-6.0.x][mysql2-0.5.x].lock @@ -0,0 +1,200 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (6.0.2.2) + actionview (= 6.0.2.2) + activesupport (= 6.0.2.2) + rack (~> 2.0, >= 2.0.8) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.2.0) + actionview (6.0.2.2) + activesupport (= 6.0.2.2) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.1, >= 1.2.0) + activemodel (6.0.2.2) + activesupport (= 6.0.2.2) + activerecord (6.0.2.2) + activemodel (= 6.0.2.2) + activesupport (= 6.0.2.2) + activesupport (6.0.2.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubi (1.9.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.11.0) + i18n (>= 1.6, < 2) + gemika (0.4.0) + i18n (1.8.2) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + mysql2 (0.5.3) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + polyamorous (2.3.2) + activerecord (>= 5.2.1) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (2.2.2) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (6.0.2.2) + actionpack (= 6.0.2.2) + activesupport (= 6.0.2.2) + method_source + rake (>= 0.8.7) + thor (>= 0.20.3, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (2.3.2) + activerecord (>= 5.2.1) + activesupport (>= 5.2.1) + i18n + polyamorous (= 2.3.2) + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.3.0) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 6.0) + actionset! + activerecord (~> 6.0) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + mysql2 (~> 0.5) + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + +BUNDLED WITH + 2.1.4 diff --git a/gemfiles/Gemfile[rails-6.0.x][pg-0.18.x] b/gemfiles/Gemfile[rails-6.0.x][pg-0.18.x] new file mode 100644 index 0000000..eee118c --- /dev/null +++ b/gemfiles/Gemfile[rails-6.0.x][pg-0.18.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 6.0' +gem 'actionpack', '~> 6.0' +gem 'pg', '~> 0.18' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-6.0.x][pg-0.18.x].lock b/gemfiles/Gemfile[rails-6.0.x][pg-0.18.x].lock new file mode 100644 index 0000000..6e3809c --- /dev/null +++ b/gemfiles/Gemfile[rails-6.0.x][pg-0.18.x].lock @@ -0,0 +1,200 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (6.0.2.2) + actionview (= 6.0.2.2) + activesupport (= 6.0.2.2) + rack (~> 2.0, >= 2.0.8) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.2.0) + actionview (6.0.2.2) + activesupport (= 6.0.2.2) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.1, >= 1.2.0) + activemodel (6.0.2.2) + activesupport (= 6.0.2.2) + activerecord (6.0.2.2) + activemodel (= 6.0.2.2) + activesupport (= 6.0.2.2) + activesupport (6.0.2.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubi (1.9.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.11.0) + i18n (>= 1.6, < 2) + gemika (0.4.0) + i18n (1.8.2) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + pg (0.21.0) + polyamorous (2.3.2) + activerecord (>= 5.2.1) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (2.2.2) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (6.0.2.2) + actionpack (= 6.0.2.2) + activesupport (= 6.0.2.2) + method_source + rake (>= 0.8.7) + thor (>= 0.20.3, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (2.3.2) + activerecord (>= 5.2.1) + activesupport (>= 5.2.1) + i18n + polyamorous (= 2.3.2) + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.3.0) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 6.0) + actionset! + activerecord (~> 6.0) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + pg (~> 0.18) + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + +BUNDLED WITH + 2.1.4 diff --git a/gemfiles/Gemfile[rails-6.0.x][sqlite3-1.4.x] b/gemfiles/Gemfile[rails-6.0.x][sqlite3-1.4.x] new file mode 100644 index 0000000..5dcdcd8 --- /dev/null +++ b/gemfiles/Gemfile[rails-6.0.x][sqlite3-1.4.x] @@ -0,0 +1,13 @@ +source 'https://rubygems.org' + +# Runtime dependencies +gem 'activerecord', '~> 6.0' +gem 'actionpack', '~> 6.0' +gem 'sqlite3', '~> 1.4' + +# Gem under test +gem 'actionset', path: '..' + +# test/dev dependencies +gem 'gemika', group: :test +eval_gemfile './Gemfile.test' diff --git a/gemfiles/Gemfile[rails-6.0.x][sqlite3-1.4.x].lock b/gemfiles/Gemfile[rails-6.0.x][sqlite3-1.4.x].lock new file mode 100644 index 0000000..f8cd7a1 --- /dev/null +++ b/gemfiles/Gemfile[rails-6.0.x][sqlite3-1.4.x].lock @@ -0,0 +1,200 @@ +PATH + remote: .. + specs: + actionset (0.10.0) + activesupport + railties + +GEM + remote: https://rubygems.org/ + specs: + actionpack (6.0.2.2) + actionview (= 6.0.2.2) + activesupport (= 6.0.2.2) + rack (~> 2.0, >= 2.0.8) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.2.0) + actionview (6.0.2.2) + activesupport (= 6.0.2.2) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.1, >= 1.2.0) + activemodel (6.0.2.2) + activesupport (= 6.0.2.2) + activerecord (6.0.2.2) + activemodel (= 6.0.2.2) + activesupport (= 6.0.2.2) + activesupport (6.0.2.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + zeitwerk (~> 2.2) + addressable (2.7.0) + public_suffix (>= 2.0.2, < 5.0) + ansi (1.5.0) + ast (2.4.0) + bigdecimal (1.4.4) + binding_of_caller (0.8.0) + debug_inspector (>= 0.0.1) + builder (3.2.4) + byebug (11.1.2) + capybara (3.32.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) + codecov (0.1.16) + json + simplecov + url + coderay (1.1.2) + combustion (1.2.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.1.6) + crass (1.0.6) + database_cleaner (1.8.4) + debug_inspector (0.0.3) + diff-lcs (1.3) + docile (1.3.2) + erubi (1.9.0) + factory_bot (5.1.2) + activesupport (>= 4.2.0) + faker (2.11.0) + i18n (>= 1.6, < 2) + gemika (0.4.0) + i18n (1.8.2) + concurrent-ruby (~> 1.0) + interception (0.5) + jaro_winkler (1.5.4) + json (2.3.0) + loofah (2.5.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + mini_mime (1.0.2) + mini_portile2 (2.4.0) + minitest (5.14.0) + nokogiri (1.10.9) + mini_portile2 (~> 2.4.0) + parallel (1.19.1) + parser (2.7.1.1) + ast (~> 2.4.0) + polyamorous (2.3.2) + activerecord (>= 5.2.1) + pry (0.13.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-rescue (1.5.0) + interception (>= 0.5) + pry (>= 0.12.0) + pry-stack_explorer (0.4.9.3) + binding_of_caller (>= 0.7) + pry (>= 0.9.11) + public_suffix (4.0.4) + rack (2.2.2) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.3.0) + loofah (~> 2.3) + railties (6.0.2.2) + actionpack (= 6.0.2.2) + activesupport (= 6.0.2.2) + method_source + rake (>= 0.8.7) + thor (>= 0.20.3, < 2.0) + rainbow (3.0.0) + rake (13.0.1) + ransack (2.3.2) + activerecord (>= 5.2.1) + activesupport (>= 5.2.1) + i18n + polyamorous (= 2.3.2) + regexp_parser (1.7.0) + rexml (3.2.4) + rspec-core (3.9.1) + rspec-support (~> 3.9.1) + rspec-expectations (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-mocks (3.9.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.9.0) + rspec-rails (4.0.0) + actionpack (>= 4.2) + activesupport (>= 4.2) + railties (>= 4.2) + rspec-core (~> 3.9) + rspec-expectations (~> 3.9) + rspec-mocks (~> 3.9) + rspec-support (~> 3.9) + rspec-support (3.9.2) + rubocop (0.82.0) + jaro_winkler (~> 1.5.1) + parallel (~> 1.10) + parser (>= 2.7.0.1) + rainbow (>= 2.2.2, < 4.0) + rexml + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 2.0) + ruby-progressbar (1.10.1) + simplecov (0.18.5) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov-console (0.7.2) + ansi + simplecov + terminal-table + simplecov-html (0.12.2) + sqlite3 (1.4.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.0.1) + thread_safe (0.3.6) + tzinfo (1.2.7) + thread_safe (~> 0.1) + unicode-display_width (1.7.0) + url (0.3.2) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.3.0) + +PLATFORMS + ruby + +DEPENDENCIES + actionpack (~> 6.0) + actionset! + activerecord (~> 6.0) + bigdecimal (~> 1.4.x) + byebug + capybara + codecov + combustion + database_cleaner + factory_bot + faker + gemika + pry + pry-rescue + pry-stack_explorer + rake + ransack + rspec-rails + rubocop + simplecov + simplecov-console + sqlite3 (~> 1.4) + +BUNDLED WITH + 2.1.4 diff --git a/issues_with_float.txt b/issues_with_float.txt new file mode 100644 index 0000000..7ae39fb --- /dev/null +++ b/issues_with_float.txt @@ -0,0 +1,31 @@ +> Only.create(float: 1.23456789) +# +> Only.create(float: 12.3456789) +# +> Only.create(float: 123.456789) +# +> Only.create(float: 1234.56789) +# +> Only.create(float: 12345.6789) +# +> Only.create(float: 123456.789) +# +> Only.create(float: 1234567.89) +# +> Only.create(float: 12345678.9) +# +> Only.create(float: 123456789.0) +# +> Only.pluck(:float) +[1.23457, 12.3457, 123.457, 1234.57, 12345.7, 123457.0, 1234570.0, 12345700.0, 123457000.0] + +Precision(6) + +1.23456789 => 1.23457 +12.3456789 => 12.3457 +123.456789 => 123.457 +1234.56789 => 1234.57 +12345.6789 => 12345.7 +123456.789 => 123457.0 +1234567.89 => 1234570.0 +12345678.9 => 12345700.0 diff --git a/lib/action_set.rb b/lib/action_set.rb index 5ed81bd..965f0d0 100644 --- a/lib/action_set.rb +++ b/lib/action_set.rb @@ -12,7 +12,7 @@ module ActionSet # Ensure that the HelperMethods are callable from the Rails view-layer ActiveSupport.on_load :action_view do - ::ActionView::Base.send :include, Helpers::HelperMethods + ::ActionView::Base.include Helpers::HelperMethods end module ClassMethods @@ -59,9 +59,10 @@ def paginate_instructions # rubocop:disable Metrics/AbcSize def export_instructions + instructions = export_params.deep_symbolize_keys {}.tap do |struct| - struct[:format] = export_params[:format] || request.format.symbol - columns_params = export_params[:columns]&.map do |column| + struct[:format] = instructions[:format] || request.format.symbol + columns_params = instructions[:columns]&.map do |column| Hash[column&.map do |k, v| is_literal_value = ->(key) { key.to_s == 'value*' } key = is_literal_value.call(k) ? 'value' : k diff --git a/lib/action_set/attribute_value.rb b/lib/action_set/attribute_value.rb index c6d8e54..b2241ae 100644 --- a/lib/action_set/attribute_value.rb +++ b/lib/action_set/attribute_value.rb @@ -87,22 +87,25 @@ def possible_values def possible_typecasters @possible_typecasters ||= type_class.constants .map(&:to_s) - .select { |t| can_typecast?(t) } .reject { |t| t == 'Time' } + .select { |t| can_typecast?(t) } .map { |t| init_typecaster(t) } .compact end def typecast(to_type, value) - return to_type.type_cast(value) if to_type.respond_to? :type_cast + return to_type.type_cast(value) if to_type.respond_to? :type_cast + return to_type.type_cast_from_user(value) if to_type.respond_to? :type_cast_from_user to_type.cast(value) end def can_typecast?(const_name) typecasting_class = type_class.const_get(const_name) + typecasting_class.instance_methods.include?(:cast) || - typecasting_class.instance_methods.include?(:type_cast) + typecasting_class.instance_methods.include?(:type_cast) || + typecasting_class.instance_methods.include?(:type_cast_from_user) end def init_typecaster(const_name) diff --git a/lib/action_set/filter_instructions.rb b/lib/action_set/filter_instructions.rb index 9502393..9ca034b 100644 --- a/lib/action_set/filter_instructions.rb +++ b/lib/action_set/filter_instructions.rb @@ -5,7 +5,7 @@ module ActionSet class FilterInstructions def initialize(params, set, controller) - @params = params + @params = params.deep_symbolize_keys @set = set @controller = controller end diff --git a/lib/action_set/sort_instructions.rb b/lib/action_set/sort_instructions.rb index eee06ab..c9fb689 100644 --- a/lib/action_set/sort_instructions.rb +++ b/lib/action_set/sort_instructions.rb @@ -3,7 +3,7 @@ module ActionSet class SortInstructions def initialize(params, set, controller) - @params = params + @params = params.deep_symbolize_keys @set = set @controller = controller end diff --git a/lib/active_set/active_record_set_instruction.rb b/lib/active_set/active_record_set_instruction.rb index 635338d..d6bdf44 100644 --- a/lib/active_set/active_record_set_instruction.rb +++ b/lib/active_set/active_record_set_instruction.rb @@ -53,8 +53,6 @@ def arel_table end end - private - def arel_type attribute_model &.columns_hash[@attribute_instruction.attribute] diff --git a/lib/active_set/filtering/active_record/operators.rb b/lib/active_set/filtering/active_record/operators.rb index 3c16319..ecf2ac0 100644 --- a/lib/active_set/filtering/active_record/operators.rb +++ b/lib/active_set/filtering/active_record/operators.rb @@ -15,7 +15,7 @@ module Operators end end BLANK_TRANSFORMER = proc do |type:, **_ctx| - if type.presence_in %i[date float integer time datetime boolean] + if type.presence_in %i[boolean date datetime decimal float integer time] [nil] else Constants::BLANK_VALUES diff --git a/lib/active_set/filtering/active_record/query_column.rb b/lib/active_set/filtering/active_record/query_column.rb deleted file mode 100644 index c5a8666..0000000 --- a/lib/active_set/filtering/active_record/query_column.rb +++ /dev/null @@ -1,35 +0,0 @@ -# frozen_string_literal: true - -class ActiveSet - module Filtering - module ActiveRecord - module QueryColumn - def query_column - return @query_column if defined? @query_column - - @query_column = if must_cast_numerical_column? - column_cast_as_char - else - arel_column - end - end - - private - - def column_cast_as_char - # In order to use LIKE, we must CAST the numeric column as a CHAR column. - # NOTE: this is can be quite inefficient, as it forces the DB engine to perform that cast on all rows. - # https://www.ryadel.com/en/like-operator-equivalent-integer-numeric-columns-sql-t-sql-database/ - Arel::Nodes::NamedFunction.new('CAST', [arel_column.as('CHAR')]) - end - - def must_cast_numerical_column? - # The LIKE operator can't be used if the column hosts numeric types. - return false unless arel_type.presence_in(%i[integer float]) - - arel_operator.to_s.downcase.include?('match') - end - end - end - end -end diff --git a/lib/active_set/filtering/active_record/query_value.rb b/lib/active_set/filtering/active_record/query_value.rb deleted file mode 100644 index b125301..0000000 --- a/lib/active_set/filtering/active_record/query_value.rb +++ /dev/null @@ -1,47 +0,0 @@ -# frozen_string_literal: true - -class ActiveSet - module Filtering - module ActiveRecord - module QueryValue - def query_value - return @query_value if defined? @query_value - - query_value = @attribute_instruction.value - query_value = query_attribute_for(query_value) - query_value = query_value.downcase if case_insensitive_operation? - - @query_value = query_value - end - - private - - def query_attribute_for(value) - return value unless operator_hash.key?(:query_attribute_transformer) - - context = { - raw: value, - sql: to_sql_str(value), - type: arel_type - } - - operator_hash[:query_attribute_transformer].call(context) - end - - def to_sql_str(value) - return value.map { |a| to_sql_str(a) } if value.respond_to?(:map) - - arel_node = Arel::Nodes::Casted.new(value, arel_column) - sql_value = arel_node.to_sql - unwrap_sql_str(sql_value) - end - - def unwrap_sql_str(sql_str) - return sql_str unless sql_str[0] == "'" && sql_str[-1] == "'" - - sql_str[1..-2] - end - end - end - end -end diff --git a/lib/active_set/filtering/active_record/set_instruction.rb b/lib/active_set/filtering/active_record/set_instruction.rb index c94eb6f..67fd921 100644 --- a/lib/active_set/filtering/active_record/set_instruction.rb +++ b/lib/active_set/filtering/active_record/set_instruction.rb @@ -2,26 +2,167 @@ require_relative '../../active_record_set_instruction' require_relative './operators' -require_relative './query_value' -require_relative './query_column' class ActiveSet module Filtering module ActiveRecord class SetInstruction < ActiveRecordSetInstruction - include QueryValue - include QueryColumn - def arel_operator + instruction_operator = @attribute_instruction.operator + operator_hash = Operators.get(instruction_operator) + operator_hash.fetch(:operator, :eq) end - private + def query_value + return @query_value if defined? @query_value + + value = @attribute_instruction.value + + adapter_is_mysql = adapter_type.presence_in(%i[mysql mysql2]) + arel_column = attribute_model.column_for_attribute(attribute) + arel_column_scale = arel_column&.scale + value = begin + if value.respond_to?(:map) + value.map do |v| + if v.respond_to?(:map) + v.map { |vv| sprintf("%0.#{arel_column_scale}f", vv) } + else + sprintf("%0.#{arel_column_scale}f", v) + end + end + else + sprintf("%0.#{arel_column_scale}f", value) + end + end if adapter_is_mysql && arel_column_scale - def operator_hash instruction_operator = @attribute_instruction.operator + operator_hash = Operators.get(instruction_operator) + operator_has_transformer = operator_hash.key?(:query_attribute_transformer) + value = begin + context = { + raw: value, + sql: to_sql_str(value), + type: arel_type + } + + operator_hash[:query_attribute_transformer].call(context) + end if operator_has_transformer + + value = value.downcase if case_insensitive_operation? + + arel_type_is_time = arel_type == :time + arel_operator_is_match_type = arel_operator.to_s.downcase.include?('match') + value = begin + if value.respond_to?(:map) + value.map do |v| + if v.respond_to?(:map) + v.map { |vv| vv.remove('2000-01-01 ').remove('.000000') } + else + v.remove('2000-01-01 ').remove('.000000') + end + end + else + value.remove('2000-01-01 ') + .remove('.000000') + end + end if arel_type_is_time && arel_operator_is_match_type && adapter_is_mysql + + # return value.map { |v| prepare_query_value(v) } if value.respond_to?(:map) && !arel_operator.to_s.downcase.include?('between') + + @query_value = value + end + + def query_column + return @query_column if defined? @query_column + + adapter_is_mysql = adapter_type.presence_in(%i[mysql mysql2]) + arel_type_is_float = arel_type == :float + arel_type_integer_or_float = arel_type.presence_in(%i[integer float]) + arel_operator_is_match_type = arel_operator.to_s.downcase.include?('match') + query_value_is_numeric = query_value.is_a?(Numeric) + query_value_is_collection_of_numerics = (query_value.respond_to?(:flatten) && query_value.flatten.all? { |qv| qv.is_a?(Numeric) }) + query_value_is_range_of_numerics = query_value.is_a?(Range) && query_value.begin.is_a?(Numeric) + arel_type_is_string_or_text_or_binary = arel_type.presence_in(%i[string text binary]) + arel_operator_is_between_type = arel_operator.to_s.downcase.include?('between') + + if adapter_is_mysql + activerecord_result_encoding_info = ::ActiveRecord::Base.connection.exec_query(<<~SQL) + SELECT character_set_name, collation_name + FROM information_schema.`COLUMNS` + WHERE table_schema = '#{::ActiveRecord::Base.connection.current_database}' + AND table_name = '#{attribute_model.table_name}' + AND column_name = '#{arel_column_name}' + SQL + encoding_info = activerecord_result_encoding_info.to_a.first + # "character_set_name", "collation_name" + encoding_to_comparison_collation_mapping = { + 'utf8mb4' => 'utf8mb4_bin', + 'utf8' => 'utf8_bin', + 'latin1' => 'latin1_bin' + } + character_set = encoding_info['character_set_name'] + comparison_collation = encoding_to_comparison_collation_mapping[character_set] + arel_column_collation_is_not_comparable = encoding_info['collation_name'] != comparison_collation + else + arel_column_collation_is_not_comparable = false + end + + @query_column = if arel_type_integer_or_float && arel_operator_is_match_type + # In order to use LIKE, we must CAST the column as a CHAR column. + # NOTE: this is can be quite inefficient, as it forces the DB engine to perform that cast on all rows. + # https://www.ryadel.com/en/like-operator-equivalent-integer-numeric-columns-sql-t-sql-database/ + if adapter_type == :postgresql + Arel::Nodes::NamedFunction.new('CAST', [arel_column.as('TEXT')]) + else + Arel::Nodes::NamedFunction.new('CAST', [arel_column.as('CHAR')]) + end + elsif adapter_is_mysql && arel_type_is_float && (query_value_is_numeric || query_value_is_collection_of_numerics || query_value_is_range_of_numerics) + # In order to use equality matchers for :float fields in MySQL, we need to cast to :decimal + # https://dev.mysql.com/doc/refman/8.0/en/problems-with-float.html + Arel::Nodes::NamedFunction.new('CAST', [arel_column.as('DECIMAL(8,2)')]) + elsif arel_type_is_string_or_text_or_binary && arel_operator_is_between_type && arel_column_collation_is_not_comparable + Arel.sql("#{arel_column_to_sql(arel_column)} COLLATE #{comparison_collation}") + elsif adapter_type == :postgresql && arel_type == :boolean + Arel::Nodes::NamedFunction.new('CAST', [arel_column.as('TEXT')]) + else + arel_column + end + end + + private + + def adapter_type + return @adapter_type if defined? @adapter_type + + @adapter_type = ::ActiveRecord::Base.connection + .adapter_name + .downcase + .to_sym + end + + def to_sql_str(value) + return value.map { |a| to_sql_str(a) } if value.respond_to?(:map) + return value if arel_type == :binary + + arel_node = Arel::Nodes::Casted.new(value, arel_column) + sql_value = arel_node.to_sql + unwrap_sql_str(sql_value) + end + + def unwrap_sql_str(sql_str) + return sql_str unless sql_str[0] == "'" && sql_str[-1] == "'" + + sql_str[1..-2] + end - Operators.get(instruction_operator) + def arel_column_to_sql(arel_column) + # the ARel column can already be rendered as SQL (because it is wrapped in a LOWER function, for example) + if arel_column.respond_to?(:to_sql) + arel_column.to_sql + else + arel_column.eq(nil).to_sql.remove(' IS NULL') + end end end end diff --git a/lib/active_set/filtering/active_record/strategy.rb b/lib/active_set/filtering/active_record/strategy.rb index 56044da..ad5a6a7 100644 --- a/lib/active_set/filtering/active_record/strategy.rb +++ b/lib/active_set/filtering/active_record/strategy.rb @@ -3,6 +3,22 @@ require_relative './set_instruction' require 'active_support/core_ext/module/delegation' +module Arel + module Visitors + class PostgreSQL < Arel::Visitors::ToSql + private + + def visit_Arel_Nodes_Matches(o, collector) + infix_value o, collector, ' LIKE ' + end + + def visit_Arel_Nodes_DoesNotMatch(o, collector) + infix_value o, collector, ' NOT LIKE ' + end + end + end +end + class ActiveSet module Filtering module ActiveRecord @@ -24,6 +40,7 @@ def initialize(set, attribute_instruction) def execute return false unless @set.respond_to? :to_sql + return @set if @set.empty? if execute_filter_operation? statement = filter_operation diff --git a/lib/active_set/filtering/enumerable/strategy.rb b/lib/active_set/filtering/enumerable/strategy.rb index d668846..c63fa3a 100644 --- a/lib/active_set/filtering/enumerable/strategy.rb +++ b/lib/active_set/filtering/enumerable/strategy.rb @@ -25,6 +25,7 @@ def initialize(set, attribute_instruction) def execute return false unless @set.respond_to? :select + return @set if @set.empty? if execute_filter_operation? set = filter_operation @@ -61,6 +62,7 @@ def execute_intersect_operation? def filter_operation @set.select do |item| + item = item.reload if item.respond_to?(:reload) @set_instruction.item_matches_query?(item) end end @@ -74,15 +76,11 @@ def other_set attribute, instruction_value ) - if attribute_class != set_item.class - other_set = begin - @set.select { |item| resource_for(item: item)&.presence_in other_set } - rescue ArgumentError # thrown if other_set is doesn't respond to #include?, like when nil - nil - end - end + return other_set if attribute_class == set_item.class - other_set + @set.select { |item| resource_for(item: item)&.presence_in other_set } + rescue ArgumentError # thrown if other_set is doesn't respond to #include?, like when nil + nil end end end diff --git a/lib/active_set/sorting/active_record_strategy.rb b/lib/active_set/sorting/active_record_strategy.rb index 8b7ed71..3833f7a 100644 --- a/lib/active_set/sorting/active_record_strategy.rb +++ b/lib/active_set/sorting/active_record_strategy.rb @@ -1,26 +1,21 @@ # frozen_string_literal: true -require_relative '../active_record_set_instruction' - class ActiveSet module Sorting class ActiveRecordStrategy def initialize(set, attribute_instructions) @set = set @attribute_instructions = attribute_instructions - @set_instructions = attribute_instructions.map do |attribute_instruction| - ActiveRecordSetInstruction.new(attribute_instruction, set) - end end def execute return false unless @set.respond_to? :to_sql - executable_instructions.reduce(@set) do |set, set_instruction| - statement = set.merge(set_instruction.initial_relation) - statement = statement.merge(order_operation_for(set_instruction)) + executable_instructions.reduce(@set) do |set, attribute_instruction| + statement = set.merge(initial_relation_for(attribute_instruction)) + statement = statement.merge(order_operation_for(attribute_instruction)) - set_instruction.processed = true + attribute_instruction.processed = true statement end end @@ -28,11 +23,11 @@ def execute def executable_instructions return {} unless @set.respond_to? :to_sql - @set_instructions.select do |set_instruction| - attribute_model = set_instruction.attribute_model + @attribute_instructions.select do |attribute_instruction| + attribute_model = attribute_model_for(attribute_instruction) next false unless attribute_model next false unless attribute_model.respond_to?(:attribute_names) - next false unless attribute_model.attribute_names.include?(set_instruction.attribute) + next false unless attribute_model.attribute_names.include?(attribute_instruction.attribute) true end @@ -40,6 +35,26 @@ def executable_instructions private + def order_operation_for(attribute_instruction) + attribute_model = attribute_model_for(attribute_instruction) + table_name = attribute_model.table_name + column_name = arel_column_name_for(attribute_instruction) + direction = direction_operator(attribute_instruction.value) + arel_column = arel_column_for(attribute_instruction) + arel_type = arel_type_for(attribute_instruction) + + nil_sort_instruction = nil_sorter_for(arel_column, + direction) + col_sort_instruction = if adapter_type.presence_in(%i[mysql mysql2]) && arel_type.presence_in(%i[string text]) + Arel.sql("#{arel_column_to_sql(arel_column)} COLLATE utf8_bin #{direction.to_s.upcase}") + else + arel_column.send(direction) + end + + attribute_model.order(nil_sort_instruction) + .order(col_sort_instruction) + end + # https://stackoverflow.com/a/44912964/2884386 # When ActiveSet.configuration.on_asc_sort_nils_come == :last # null values to be sorted as if larger than any non-null value. @@ -48,16 +63,23 @@ def executable_instructions # Otherwise sort nulls as if smaller than any non-null value. # ASC => [nil, -2, -1, 1, 2] # DESC => [2, 1, -1, -2, nil] - def order_operation_for(set_instruction) - attribute_model = set_instruction.attribute_model - - arel_column = set_instruction.arel_column - arel_direction = direction_operator(set_instruction.value) - - attribute_model.order(Arel.sql(nil_sorter_for(set_instruction.arel_table, - set_instruction.arel_column_name, - arel_direction))) - .order(arel_column.send(arel_direction)) + def nil_sorter_for(arel_column, direction) + null_as_zero = 'THEN 0 ELSE 1 END' + null_as_one = 'THEN 1 ELSE 0 END' + then_statement = case [ActiveSet.configuration.on_asc_sort_nils_come, direction] + when %i[last asc] + null_as_one + when %i[last desc] + null_as_zero + when %i[first asc] + null_as_zero + when %i[first desc] + null_as_one + else + null_as_one + end + + Arel.sql("CASE WHEN #{arel_column_to_sql(arel_column)} IS NULL #{then_statement}") end def direction_operator(direction) @@ -66,21 +88,83 @@ def direction_operator(direction) :asc end - def nil_sorter_for(model, column, direction) - "CASE WHEN #{model.table_name}.#{column} IS NULL #{nil_sorter_then_statement(direction)}" + def attribute_model_for(attribute_instruction) + return @set.klass if attribute_instruction.associations_array.empty? + + attribute_instruction.associations_array + .reduce(@set) do |object, association| + object.reflections[association.to_s]&.klass + end + end + + def initial_relation_for(attribute_instruction) + if attribute_instruction.associations_array.empty? + @set + else + @set.eager_load(attribute_instruction.associations_hash) + end end - def nil_sorter_then_statement(direction) - first = 'THEN 0 ELSE 1 END' - last = 'THEN 1 ELSE 0 END' - if ActiveSet.configuration.on_asc_sort_nils_come == :last - return last if direction == :asc + def arel_table_for(attribute_instruction) + attribute_model = attribute_model_for(attribute_instruction) + arel_type = arel_type_for(attribute_instruction) - return first + # This is to work around an bug in ActiveRecord, + # where BINARY fields aren't found properly when using + # the `arel_table` class method to build an ARel::Node + if arel_type == :binary + Arel::Table.new(attribute_model.table_name) else - return first if direction == :asc + attribute_model.arel_table + end + end - return last + def arel_type_for(attribute_instruction) + attribute_model = attribute_model_for(attribute_instruction) + attribute = attribute_instruction.attribute + + attribute_model + &.columns_hash[attribute] + &.type + end + + def arel_column_name_for(attribute_instruction) + arel_table = arel_table_for(attribute_instruction) + attribute = attribute_instruction.attribute + arel_column = arel_table[attribute] + + arel_column.name + end + + def arel_column_for(attribute_instruction) + arel_table = arel_table_for(attribute_instruction) + arel_type = arel_type_for(attribute_instruction) + attribute = attribute_instruction.attribute + is_case_insensitive_operation = begin + attribute_instruction.case_insensitive? && + arel_type.presence_in(%i[string text]) + end + + arel_column = arel_table[attribute] + arel_column = arel_column.lower if is_case_insensitive_operation + arel_column + end + + def adapter_type + return @adapter_type if defined? @adapter_type + + @adapter_type = ::ActiveRecord::Base.connection + .adapter_name + .downcase + .to_sym + end + + def arel_column_to_sql(arel_column) + # the ARel column can already be rendered as SQL (because it is wrapped in a LOWER function, for example) + if arel_column.respond_to?(:to_sql) + arel_column.to_sql + else + arel_column.eq(nil).to_sql.remove(' IS NULL') end end end diff --git a/predications.matrix b/predications.matrix new file mode 100644 index 0000000..f6e5456 --- /dev/null +++ b/predications.matrix @@ -0,0 +1,20255 @@ +types = %w[ + binary + boolean + date + datetime + decimal + float + integer + string + text + time +] + +operators = %w[ + eq + not_eq + eq_any + eq_all + not_eq_any + not_eq_all + in + not_in + in_any + in_all + not_in_any + not_in_all + matches + does_not_match + matches_any + matches_all + does_not_match_any + does_not_match_all + lt + lteq + lt_any + lt_all + lteq_any + lteq_all + gt + gteq + gt_any + gt_all + gteq_any + gteq_all + between + not_between + is_true + is_false + is_null + not_null + is_present + is_blank + match_start + match_start_any + match_start_all + match_not_start + match_not_start_any + match_not_start_all + match_end + match_end_any + match_end_all + match_not_end + match_not_end_any + match_not_end_all + match_contain + match_contain_any + match_contain_all + match_not_contain + match_not_contain_any + match_not_contain_all +] + +adapters = %w[ + postgresql + mysql + sqlite +] + +ruby_versions = %w[ + 2.7.0 + 2.6.5 + 2.5.7 + 2.4.9 +] + +rails_versions = %w[ + 4.2 + 5.2 + 6.0 +] + +- - - + +[ + ["eq", "binary", "postgresql", "2.7.0", "4.2"], + ["eq", "binary", "postgresql", "2.7.0", "5.2"], + ["eq", "binary", "postgresql", "2.7.0", "6.0"], + ["eq", "binary", "postgresql", "2.6.5", "4.2"], + ["eq", "binary", "postgresql", "2.6.5", "5.2"], + ["eq", "binary", "postgresql", "2.6.5", "6.0"], + ["eq", "binary", "postgresql", "2.5.7", "4.2"], + ["eq", "binary", "postgresql", "2.5.7", "5.2"], + ["eq", "binary", "postgresql", "2.5.7", "6.0"], + ["eq", "binary", "postgresql", "2.4.9", "4.2"], + ["eq", "binary", "postgresql", "2.4.9", "5.2"], + ["eq", "binary", "postgresql", "2.4.9", "6.0"], + ["eq", "binary", "mysql", "2.7.0", "4.2"], + ["eq", "binary", "mysql", "2.7.0", "5.2"], + ["eq", "binary", "mysql", "2.7.0", "6.0"], + ["eq", "binary", "mysql", "2.6.5", "4.2"], + ["eq", "binary", "mysql", "2.6.5", "5.2"], + ["eq", "binary", "mysql", "2.6.5", "6.0"], + ["eq", "binary", "mysql", "2.5.7", "4.2"], + ["eq", "binary", "mysql", "2.5.7", "5.2"], + ["eq", "binary", "mysql", "2.5.7", "6.0"], + ["eq", "binary", "mysql", "2.4.9", "4.2"], + ["eq", "binary", "mysql", "2.4.9", "5.2"], + ["eq", "binary", "mysql", "2.4.9", "6.0"], + ["eq", "binary", "sqlite", "2.7.0", "4.2"], + ["eq", "binary", "sqlite", "2.7.0", "5.2"], + ["eq", "binary", "sqlite", "2.7.0", "6.0"], + ["eq", "binary", "sqlite", "2.6.5", "4.2"], + ["eq", "binary", "sqlite", "2.6.5", "5.2"], + ["eq", "binary", "sqlite", "2.6.5", "6.0"], + ["eq", "binary", "sqlite", "2.5.7", "4.2"], + ["eq", "binary", "sqlite", "2.5.7", "5.2"], + ["eq", "binary", "sqlite", "2.5.7", "6.0"], + ["eq", "binary", "sqlite", "2.4.9", "4.2"], + ["eq", "binary", "sqlite", "2.4.9", "5.2"], + ["eq", "binary", "sqlite", "2.4.9", "6.0"], + ["eq", "boolean", "postgresql", "2.7.0", "4.2"], + ["eq", "boolean", "postgresql", "2.7.0", "5.2"], + ["eq", "boolean", "postgresql", "2.7.0", "6.0"], + ["eq", "boolean", "postgresql", "2.6.5", "4.2"], + ["eq", "boolean", "postgresql", "2.6.5", "5.2"], + ["eq", "boolean", "postgresql", "2.6.5", "6.0"], + ["eq", "boolean", "postgresql", "2.5.7", "4.2"], + ["eq", "boolean", "postgresql", "2.5.7", "5.2"], + ["eq", "boolean", "postgresql", "2.5.7", "6.0"], + ["eq", "boolean", "postgresql", "2.4.9", "4.2"], + ["eq", "boolean", "postgresql", "2.4.9", "5.2"], + ["eq", "boolean", "postgresql", "2.4.9", "6.0"], + ["eq", "boolean", "mysql", "2.7.0", "4.2"], + ["eq", "boolean", "mysql", "2.7.0", "5.2"], + ["eq", "boolean", "mysql", "2.7.0", "6.0"], + ["eq", "boolean", "mysql", "2.6.5", "4.2"], + ["eq", "boolean", "mysql", "2.6.5", "5.2"], + ["eq", "boolean", "mysql", "2.6.5", "6.0"], + ["eq", "boolean", "mysql", "2.5.7", "4.2"], + ["eq", "boolean", "mysql", "2.5.7", "5.2"], + ["eq", "boolean", "mysql", "2.5.7", "6.0"], + ["eq", "boolean", "mysql", "2.4.9", "4.2"], + ["eq", "boolean", "mysql", "2.4.9", "5.2"], + ["eq", "boolean", "mysql", "2.4.9", "6.0"], + ["eq", "boolean", "sqlite", "2.7.0", "4.2"], + ["eq", "boolean", "sqlite", "2.7.0", "5.2"], + ["eq", "boolean", "sqlite", "2.7.0", "6.0"], + ["eq", "boolean", "sqlite", "2.6.5", "4.2"], + ["eq", "boolean", "sqlite", "2.6.5", "5.2"], + ["eq", "boolean", "sqlite", "2.6.5", "6.0"], + ["eq", "boolean", "sqlite", "2.5.7", "4.2"], + ["eq", "boolean", "sqlite", "2.5.7", "5.2"], + ["eq", "boolean", "sqlite", "2.5.7", "6.0"], + ["eq", "boolean", "sqlite", "2.4.9", "4.2"], + ["eq", "boolean", "sqlite", "2.4.9", "5.2"], + ["eq", "boolean", "sqlite", "2.4.9", "6.0"], + ["eq", "date", "postgresql", "2.7.0", "4.2"], + ["eq", "date", "postgresql", "2.7.0", "5.2"], + ["eq", "date", "postgresql", "2.7.0", "6.0"], + ["eq", "date", "postgresql", "2.6.5", "4.2"], + ["eq", "date", "postgresql", "2.6.5", "5.2"], + ["eq", "date", "postgresql", "2.6.5", "6.0"], + ["eq", "date", "postgresql", "2.5.7", "4.2"], + ["eq", "date", "postgresql", "2.5.7", "5.2"], + ["eq", "date", "postgresql", "2.5.7", "6.0"], + ["eq", "date", "postgresql", "2.4.9", "4.2"], + ["eq", "date", "postgresql", "2.4.9", "5.2"], + ["eq", "date", "postgresql", "2.4.9", "6.0"], + ["eq", "date", "mysql", "2.7.0", "4.2"], + ["eq", "date", "mysql", "2.7.0", "5.2"], + ["eq", "date", "mysql", "2.7.0", "6.0"], + ["eq", "date", "mysql", "2.6.5", "4.2"], + ["eq", "date", "mysql", "2.6.5", "5.2"], + ["eq", "date", "mysql", "2.6.5", "6.0"], + ["eq", "date", "mysql", "2.5.7", "4.2"], + ["eq", "date", "mysql", "2.5.7", "5.2"], + ["eq", "date", "mysql", "2.5.7", "6.0"], + ["eq", "date", "mysql", "2.4.9", "4.2"], + ["eq", "date", "mysql", "2.4.9", "5.2"], + ["eq", "date", "mysql", "2.4.9", "6.0"], + ["eq", "date", "sqlite", "2.7.0", "4.2"], + ["eq", "date", "sqlite", "2.7.0", "5.2"], + ["eq", "date", "sqlite", "2.7.0", "6.0"], + ["eq", "date", "sqlite", "2.6.5", "4.2"], + ["eq", "date", "sqlite", "2.6.5", "5.2"], + ["eq", "date", "sqlite", "2.6.5", "6.0"], + ["eq", "date", "sqlite", "2.5.7", "4.2"], + ["eq", "date", "sqlite", "2.5.7", "5.2"], + ["eq", "date", "sqlite", "2.5.7", "6.0"], + ["eq", "date", "sqlite", "2.4.9", "4.2"], + ["eq", "date", "sqlite", "2.4.9", "5.2"], + ["eq", "date", "sqlite", "2.4.9", "6.0"], + ["eq", "datetime", "postgresql", "2.7.0", "4.2"], + ["eq", "datetime", "postgresql", "2.7.0", "5.2"], + ["eq", "datetime", "postgresql", "2.7.0", "6.0"], + ["eq", "datetime", "postgresql", "2.6.5", "4.2"], + ["eq", "datetime", "postgresql", "2.6.5", "5.2"], + ["eq", "datetime", "postgresql", "2.6.5", "6.0"], + ["eq", "datetime", "postgresql", "2.5.7", "4.2"], + ["eq", "datetime", "postgresql", "2.5.7", "5.2"], + ["eq", "datetime", "postgresql", "2.5.7", "6.0"], + ["eq", "datetime", "postgresql", "2.4.9", "4.2"], + ["eq", "datetime", "postgresql", "2.4.9", "5.2"], + ["eq", "datetime", "postgresql", "2.4.9", "6.0"], + ["eq", "datetime", "mysql", "2.7.0", "4.2"], + ["eq", "datetime", "mysql", "2.7.0", "5.2"], + ["eq", "datetime", "mysql", "2.7.0", "6.0"], + ["eq", "datetime", "mysql", "2.6.5", "4.2"], + ["eq", "datetime", "mysql", "2.6.5", "5.2"], + ["eq", "datetime", "mysql", "2.6.5", "6.0"], + ["eq", "datetime", "mysql", "2.5.7", "4.2"], + ["eq", "datetime", "mysql", "2.5.7", "5.2"], + ["eq", "datetime", "mysql", "2.5.7", "6.0"], + ["eq", "datetime", "mysql", "2.4.9", "4.2"], + ["eq", "datetime", "mysql", "2.4.9", "5.2"], + ["eq", "datetime", "mysql", "2.4.9", "6.0"], + ["eq", "datetime", "sqlite", "2.7.0", "4.2"], + ["eq", "datetime", "sqlite", "2.7.0", "5.2"], + ["eq", "datetime", "sqlite", "2.7.0", "6.0"], + ["eq", "datetime", "sqlite", "2.6.5", "4.2"], + ["eq", "datetime", "sqlite", "2.6.5", "5.2"], + ["eq", "datetime", "sqlite", "2.6.5", "6.0"], + ["eq", "datetime", "sqlite", "2.5.7", "4.2"], + ["eq", "datetime", "sqlite", "2.5.7", "5.2"], + ["eq", "datetime", "sqlite", "2.5.7", "6.0"], + ["eq", "datetime", "sqlite", "2.4.9", "4.2"], + ["eq", "datetime", "sqlite", "2.4.9", "5.2"], + ["eq", "datetime", "sqlite", "2.4.9", "6.0"], + ["eq", "decimal", "postgresql", "2.7.0", "4.2"], + ["eq", "decimal", "postgresql", "2.7.0", "5.2"], + ["eq", "decimal", "postgresql", "2.7.0", "6.0"], + ["eq", "decimal", "postgresql", "2.6.5", "4.2"], + ["eq", "decimal", "postgresql", "2.6.5", "5.2"], + ["eq", "decimal", "postgresql", "2.6.5", "6.0"], + ["eq", "decimal", "postgresql", "2.5.7", "4.2"], + ["eq", "decimal", "postgresql", "2.5.7", "5.2"], + ["eq", "decimal", "postgresql", "2.5.7", "6.0"], + ["eq", "decimal", "postgresql", "2.4.9", "4.2"], + ["eq", "decimal", "postgresql", "2.4.9", "5.2"], + ["eq", "decimal", "postgresql", "2.4.9", "6.0"], + ["eq", "decimal", "mysql", "2.7.0", "4.2"], + ["eq", "decimal", "mysql", "2.7.0", "5.2"], + ["eq", "decimal", "mysql", "2.7.0", "6.0"], + ["eq", "decimal", "mysql", "2.6.5", "4.2"], + ["eq", "decimal", "mysql", "2.6.5", "5.2"], + ["eq", "decimal", "mysql", "2.6.5", "6.0"], + ["eq", "decimal", "mysql", "2.5.7", "4.2"], + ["eq", "decimal", "mysql", "2.5.7", "5.2"], + ["eq", "decimal", "mysql", "2.5.7", "6.0"], + ["eq", "decimal", "mysql", "2.4.9", "4.2"], + ["eq", "decimal", "mysql", "2.4.9", "5.2"], + ["eq", "decimal", "mysql", "2.4.9", "6.0"], + ["eq", "decimal", "sqlite", "2.7.0", "4.2"], + ["eq", "decimal", "sqlite", "2.7.0", "5.2"], + ["eq", "decimal", "sqlite", "2.7.0", "6.0"], + ["eq", "decimal", "sqlite", "2.6.5", "4.2"], + ["eq", "decimal", "sqlite", "2.6.5", "5.2"], + ["eq", "decimal", "sqlite", "2.6.5", "6.0"], + ["eq", "decimal", "sqlite", "2.5.7", "4.2"], + ["eq", "decimal", "sqlite", "2.5.7", "5.2"], + ["eq", "decimal", "sqlite", "2.5.7", "6.0"], + ["eq", "decimal", "sqlite", "2.4.9", "4.2"], + ["eq", "decimal", "sqlite", "2.4.9", "5.2"], + ["eq", "decimal", "sqlite", "2.4.9", "6.0"], + ["eq", "float", "postgresql", "2.7.0", "4.2"], + ["eq", "float", "postgresql", "2.7.0", "5.2"], + ["eq", "float", "postgresql", "2.7.0", "6.0"], + ["eq", "float", "postgresql", "2.6.5", "4.2"], + ["eq", "float", "postgresql", "2.6.5", "5.2"], + ["eq", "float", "postgresql", "2.6.5", "6.0"], + ["eq", "float", "postgresql", "2.5.7", "4.2"], + ["eq", "float", "postgresql", "2.5.7", "5.2"], + ["eq", "float", "postgresql", "2.5.7", "6.0"], + ["eq", "float", "postgresql", "2.4.9", "4.2"], + ["eq", "float", "postgresql", "2.4.9", "5.2"], + ["eq", "float", "postgresql", "2.4.9", "6.0"], + ["eq", "float", "mysql", "2.7.0", "4.2"], + ["eq", "float", "mysql", "2.7.0", "5.2"], + ["eq", "float", "mysql", "2.7.0", "6.0"], + ["eq", "float", "mysql", "2.6.5", "4.2"], + ["eq", "float", "mysql", "2.6.5", "5.2"], + ["eq", "float", "mysql", "2.6.5", "6.0"], + ["eq", "float", "mysql", "2.5.7", "4.2"], + ["eq", "float", "mysql", "2.5.7", "5.2"], + ["eq", "float", "mysql", "2.5.7", "6.0"], + ["eq", "float", "mysql", "2.4.9", "4.2"], + ["eq", "float", "mysql", "2.4.9", "5.2"], + ["eq", "float", "mysql", "2.4.9", "6.0"], + ["eq", "float", "sqlite", "2.7.0", "4.2"], + ["eq", "float", "sqlite", "2.7.0", "5.2"], + ["eq", "float", "sqlite", "2.7.0", "6.0"], + ["eq", "float", "sqlite", "2.6.5", "4.2"], + ["eq", "float", "sqlite", "2.6.5", "5.2"], + ["eq", "float", "sqlite", "2.6.5", "6.0"], + ["eq", "float", "sqlite", "2.5.7", "4.2"], + ["eq", "float", "sqlite", "2.5.7", "5.2"], + ["eq", "float", "sqlite", "2.5.7", "6.0"], + ["eq", "float", "sqlite", "2.4.9", "4.2"], + ["eq", "float", "sqlite", "2.4.9", "5.2"], + ["eq", "float", "sqlite", "2.4.9", "6.0"], + ["eq", "integer", "postgresql", "2.7.0", "4.2"], + ["eq", "integer", "postgresql", "2.7.0", "5.2"], + ["eq", "integer", "postgresql", "2.7.0", "6.0"], + ["eq", "integer", "postgresql", "2.6.5", "4.2"], + ["eq", "integer", "postgresql", "2.6.5", "5.2"], + ["eq", "integer", "postgresql", "2.6.5", "6.0"], + ["eq", "integer", "postgresql", "2.5.7", "4.2"], + ["eq", "integer", "postgresql", "2.5.7", "5.2"], + ["eq", "integer", "postgresql", "2.5.7", "6.0"], + ["eq", "integer", "postgresql", "2.4.9", "4.2"], + ["eq", "integer", "postgresql", "2.4.9", "5.2"], + ["eq", "integer", "postgresql", "2.4.9", "6.0"], + ["eq", "integer", "mysql", "2.7.0", "4.2"], + ["eq", "integer", "mysql", "2.7.0", "5.2"], + ["eq", "integer", "mysql", "2.7.0", "6.0"], + ["eq", "integer", "mysql", "2.6.5", "4.2"], + ["eq", "integer", "mysql", "2.6.5", "5.2"], + ["eq", "integer", "mysql", "2.6.5", "6.0"], + ["eq", "integer", "mysql", "2.5.7", "4.2"], + ["eq", "integer", "mysql", "2.5.7", "5.2"], + ["eq", "integer", "mysql", "2.5.7", "6.0"], + ["eq", "integer", "mysql", "2.4.9", "4.2"], + ["eq", "integer", "mysql", "2.4.9", "5.2"], + ["eq", "integer", "mysql", "2.4.9", "6.0"], + ["eq", "integer", "sqlite", "2.7.0", "4.2"], + ["eq", "integer", "sqlite", "2.7.0", "5.2"], + ["eq", "integer", "sqlite", "2.7.0", "6.0"], + ["eq", "integer", "sqlite", "2.6.5", "4.2"], + ["eq", "integer", "sqlite", "2.6.5", "5.2"], + ["eq", "integer", "sqlite", "2.6.5", "6.0"], + ["eq", "integer", "sqlite", "2.5.7", "4.2"], + ["eq", "integer", "sqlite", "2.5.7", "5.2"], + ["eq", "integer", "sqlite", "2.5.7", "6.0"], + ["eq", "integer", "sqlite", "2.4.9", "4.2"], + ["eq", "integer", "sqlite", "2.4.9", "5.2"], + ["eq", "integer", "sqlite", "2.4.9", "6.0"], + ["eq", "string", "postgresql", "2.7.0", "4.2"], + ["eq", "string", "postgresql", "2.7.0", "5.2"], + ["eq", "string", "postgresql", "2.7.0", "6.0"], + ["eq", "string", "postgresql", "2.6.5", "4.2"], + ["eq", "string", "postgresql", "2.6.5", "5.2"], + ["eq", "string", "postgresql", "2.6.5", "6.0"], + ["eq", "string", "postgresql", "2.5.7", "4.2"], + ["eq", "string", "postgresql", "2.5.7", "5.2"], + ["eq", "string", "postgresql", "2.5.7", "6.0"], + ["eq", "string", "postgresql", "2.4.9", "4.2"], + ["eq", "string", "postgresql", "2.4.9", "5.2"], + ["eq", "string", "postgresql", "2.4.9", "6.0"], + ["eq", "string", "mysql", "2.7.0", "4.2"], + ["eq", "string", "mysql", "2.7.0", "5.2"], + ["eq", "string", "mysql", "2.7.0", "6.0"], + ["eq", "string", "mysql", "2.6.5", "4.2"], + ["eq", "string", "mysql", "2.6.5", "5.2"], + ["eq", "string", "mysql", "2.6.5", "6.0"], + ["eq", "string", "mysql", "2.5.7", "4.2"], + ["eq", "string", "mysql", "2.5.7", "5.2"], + ["eq", "string", "mysql", "2.5.7", "6.0"], + ["eq", "string", "mysql", "2.4.9", "4.2"], + ["eq", "string", "mysql", "2.4.9", "5.2"], + ["eq", "string", "mysql", "2.4.9", "6.0"], + ["eq", "string", "sqlite", "2.7.0", "4.2"], + ["eq", "string", "sqlite", "2.7.0", "5.2"], + ["eq", "string", "sqlite", "2.7.0", "6.0"], + ["eq", "string", "sqlite", "2.6.5", "4.2"], + ["eq", "string", "sqlite", "2.6.5", "5.2"], + ["eq", "string", "sqlite", "2.6.5", "6.0"], + ["eq", "string", "sqlite", "2.5.7", "4.2"], + ["eq", "string", "sqlite", "2.5.7", "5.2"], + ["eq", "string", "sqlite", "2.5.7", "6.0"], + ["eq", "string", "sqlite", "2.4.9", "4.2"], + ["eq", "string", "sqlite", "2.4.9", "5.2"], + ["eq", "string", "sqlite", "2.4.9", "6.0"], + ["eq", "text", "postgresql", "2.7.0", "4.2"], + ["eq", "text", "postgresql", "2.7.0", "5.2"], + ["eq", "text", "postgresql", "2.7.0", "6.0"], + ["eq", "text", "postgresql", "2.6.5", "4.2"], + ["eq", "text", "postgresql", "2.6.5", "5.2"], + ["eq", "text", "postgresql", "2.6.5", "6.0"], + ["eq", "text", "postgresql", "2.5.7", "4.2"], + ["eq", "text", "postgresql", "2.5.7", "5.2"], + ["eq", "text", "postgresql", "2.5.7", "6.0"], + ["eq", "text", "postgresql", "2.4.9", "4.2"], + ["eq", "text", "postgresql", "2.4.9", "5.2"], + ["eq", "text", "postgresql", "2.4.9", "6.0"], + ["eq", "text", "mysql", "2.7.0", "4.2"], + ["eq", "text", "mysql", "2.7.0", "5.2"], + ["eq", "text", "mysql", "2.7.0", "6.0"], + ["eq", "text", "mysql", "2.6.5", "4.2"], + ["eq", "text", "mysql", "2.6.5", "5.2"], + ["eq", "text", "mysql", "2.6.5", "6.0"], + ["eq", "text", "mysql", "2.5.7", "4.2"], + ["eq", "text", "mysql", "2.5.7", "5.2"], + ["eq", "text", "mysql", "2.5.7", "6.0"], + ["eq", "text", "mysql", "2.4.9", "4.2"], + ["eq", "text", "mysql", "2.4.9", "5.2"], + ["eq", "text", "mysql", "2.4.9", "6.0"], + ["eq", "text", "sqlite", "2.7.0", "4.2"], + ["eq", "text", "sqlite", "2.7.0", "5.2"], + ["eq", "text", "sqlite", "2.7.0", "6.0"], + ["eq", "text", "sqlite", "2.6.5", "4.2"], + ["eq", "text", "sqlite", "2.6.5", "5.2"], + ["eq", "text", "sqlite", "2.6.5", "6.0"], + ["eq", "text", "sqlite", "2.5.7", "4.2"], + ["eq", "text", "sqlite", "2.5.7", "5.2"], + ["eq", "text", "sqlite", "2.5.7", "6.0"], + ["eq", "text", "sqlite", "2.4.9", "4.2"], + ["eq", "text", "sqlite", "2.4.9", "5.2"], + ["eq", "text", "sqlite", "2.4.9", "6.0"], + ["eq", "time", "postgresql", "2.7.0", "4.2"], + ["eq", "time", "postgresql", "2.7.0", "5.2"], + ["eq", "time", "postgresql", "2.7.0", "6.0"], + ["eq", "time", "postgresql", "2.6.5", "4.2"], + ["eq", "time", "postgresql", "2.6.5", "5.2"], + ["eq", "time", "postgresql", "2.6.5", "6.0"], + ["eq", "time", "postgresql", "2.5.7", "4.2"], + ["eq", "time", "postgresql", "2.5.7", "5.2"], + ["eq", "time", "postgresql", "2.5.7", "6.0"], + ["eq", "time", "postgresql", "2.4.9", "4.2"], + ["eq", "time", "postgresql", "2.4.9", "5.2"], + ["eq", "time", "postgresql", "2.4.9", "6.0"], + ["eq", "time", "mysql", "2.7.0", "4.2"], + ["eq", "time", "mysql", "2.7.0", "5.2"], + ["eq", "time", "mysql", "2.7.0", "6.0"], + ["eq", "time", "mysql", "2.6.5", "4.2"], + ["eq", "time", "mysql", "2.6.5", "5.2"], + ["eq", "time", "mysql", "2.6.5", "6.0"], + ["eq", "time", "mysql", "2.5.7", "4.2"], + ["eq", "time", "mysql", "2.5.7", "5.2"], + ["eq", "time", "mysql", "2.5.7", "6.0"], + ["eq", "time", "mysql", "2.4.9", "4.2"], + ["eq", "time", "mysql", "2.4.9", "5.2"], + ["eq", "time", "mysql", "2.4.9", "6.0"], + ["eq", "time", "sqlite", "2.7.0", "4.2"], + ["eq", "time", "sqlite", "2.7.0", "5.2"], + ["eq", "time", "sqlite", "2.7.0", "6.0"], + ["eq", "time", "sqlite", "2.6.5", "4.2"], + ["eq", "time", "sqlite", "2.6.5", "5.2"], + ["eq", "time", "sqlite", "2.6.5", "6.0"], + ["eq", "time", "sqlite", "2.5.7", "4.2"], + ["eq", "time", "sqlite", "2.5.7", "5.2"], + ["eq", "time", "sqlite", "2.5.7", "6.0"], + ["eq", "time", "sqlite", "2.4.9", "4.2"], + ["eq", "time", "sqlite", "2.4.9", "5.2"], + ["eq", "time", "sqlite", "2.4.9", "6.0"], + ["not_eq", "binary", "postgresql", "2.7.0", "4.2"], + ["not_eq", "binary", "postgresql", "2.7.0", "5.2"], + ["not_eq", "binary", "postgresql", "2.7.0", "6.0"], + ["not_eq", "binary", "postgresql", "2.6.5", "4.2"], + ["not_eq", "binary", "postgresql", "2.6.5", "5.2"], + ["not_eq", "binary", "postgresql", "2.6.5", "6.0"], + ["not_eq", "binary", "postgresql", "2.5.7", "4.2"], + ["not_eq", "binary", "postgresql", "2.5.7", "5.2"], + ["not_eq", "binary", "postgresql", "2.5.7", "6.0"], + ["not_eq", "binary", "postgresql", "2.4.9", "4.2"], + ["not_eq", "binary", "postgresql", "2.4.9", "5.2"], + ["not_eq", "binary", "postgresql", "2.4.9", "6.0"], + ["not_eq", "binary", "mysql", "2.7.0", "4.2"], + ["not_eq", "binary", "mysql", "2.7.0", "5.2"], + ["not_eq", "binary", "mysql", "2.7.0", "6.0"], + ["not_eq", "binary", "mysql", "2.6.5", "4.2"], + ["not_eq", "binary", "mysql", "2.6.5", "5.2"], + ["not_eq", "binary", "mysql", "2.6.5", "6.0"], + ["not_eq", "binary", "mysql", "2.5.7", "4.2"], + ["not_eq", "binary", "mysql", "2.5.7", "5.2"], + ["not_eq", "binary", "mysql", "2.5.7", "6.0"], + ["not_eq", "binary", "mysql", "2.4.9", "4.2"], + ["not_eq", "binary", "mysql", "2.4.9", "5.2"], + ["not_eq", "binary", "mysql", "2.4.9", "6.0"], + ["not_eq", "binary", "sqlite", "2.7.0", "4.2"], + ["not_eq", "binary", "sqlite", "2.7.0", "5.2"], + ["not_eq", "binary", "sqlite", "2.7.0", "6.0"], + ["not_eq", "binary", "sqlite", "2.6.5", "4.2"], + ["not_eq", "binary", "sqlite", "2.6.5", "5.2"], + ["not_eq", "binary", "sqlite", "2.6.5", "6.0"], + ["not_eq", "binary", "sqlite", "2.5.7", "4.2"], + ["not_eq", "binary", "sqlite", "2.5.7", "5.2"], + ["not_eq", "binary", "sqlite", "2.5.7", "6.0"], + ["not_eq", "binary", "sqlite", "2.4.9", "4.2"], + ["not_eq", "binary", "sqlite", "2.4.9", "5.2"], + ["not_eq", "binary", "sqlite", "2.4.9", "6.0"], + ["not_eq", "boolean", "postgresql", "2.7.0", "4.2"], + ["not_eq", "boolean", "postgresql", "2.7.0", "5.2"], + ["not_eq", "boolean", "postgresql", "2.7.0", "6.0"], + ["not_eq", "boolean", "postgresql", "2.6.5", "4.2"], + ["not_eq", "boolean", "postgresql", "2.6.5", "5.2"], + ["not_eq", "boolean", "postgresql", "2.6.5", "6.0"], + ["not_eq", "boolean", "postgresql", "2.5.7", "4.2"], + ["not_eq", "boolean", "postgresql", "2.5.7", "5.2"], + ["not_eq", "boolean", "postgresql", "2.5.7", "6.0"], + ["not_eq", "boolean", "postgresql", "2.4.9", "4.2"], + ["not_eq", "boolean", "postgresql", "2.4.9", "5.2"], + ["not_eq", "boolean", "postgresql", "2.4.9", "6.0"], + ["not_eq", "boolean", "mysql", "2.7.0", "4.2"], + ["not_eq", "boolean", "mysql", "2.7.0", "5.2"], + ["not_eq", "boolean", "mysql", "2.7.0", "6.0"], + ["not_eq", "boolean", "mysql", "2.6.5", "4.2"], + ["not_eq", "boolean", "mysql", "2.6.5", "5.2"], + ["not_eq", "boolean", "mysql", "2.6.5", "6.0"], + ["not_eq", "boolean", "mysql", "2.5.7", "4.2"], + ["not_eq", "boolean", "mysql", "2.5.7", "5.2"], + ["not_eq", "boolean", "mysql", "2.5.7", "6.0"], + ["not_eq", "boolean", "mysql", "2.4.9", "4.2"], + ["not_eq", "boolean", "mysql", "2.4.9", "5.2"], + ["not_eq", "boolean", "mysql", "2.4.9", "6.0"], + ["not_eq", "boolean", "sqlite", "2.7.0", "4.2"], + ["not_eq", "boolean", "sqlite", "2.7.0", "5.2"], + ["not_eq", "boolean", "sqlite", "2.7.0", "6.0"], + ["not_eq", "boolean", "sqlite", "2.6.5", "4.2"], + ["not_eq", "boolean", "sqlite", "2.6.5", "5.2"], + ["not_eq", "boolean", "sqlite", "2.6.5", "6.0"], + ["not_eq", "boolean", "sqlite", "2.5.7", "4.2"], + ["not_eq", "boolean", "sqlite", "2.5.7", "5.2"], + ["not_eq", "boolean", "sqlite", "2.5.7", "6.0"], + ["not_eq", "boolean", "sqlite", "2.4.9", "4.2"], + ["not_eq", "boolean", "sqlite", "2.4.9", "5.2"], + ["not_eq", "boolean", "sqlite", "2.4.9", "6.0"], + ["not_eq", "date", "postgresql", "2.7.0", "4.2"], + ["not_eq", "date", "postgresql", "2.7.0", "5.2"], + ["not_eq", "date", "postgresql", "2.7.0", "6.0"], + ["not_eq", "date", "postgresql", "2.6.5", "4.2"], + ["not_eq", "date", "postgresql", "2.6.5", "5.2"], + ["not_eq", "date", "postgresql", "2.6.5", "6.0"], + ["not_eq", "date", "postgresql", "2.5.7", "4.2"], + ["not_eq", "date", "postgresql", "2.5.7", "5.2"], + ["not_eq", "date", "postgresql", "2.5.7", "6.0"], + ["not_eq", "date", "postgresql", "2.4.9", "4.2"], + ["not_eq", "date", "postgresql", "2.4.9", "5.2"], + ["not_eq", "date", "postgresql", "2.4.9", "6.0"], + ["not_eq", "date", "mysql", "2.7.0", "4.2"], + ["not_eq", "date", "mysql", "2.7.0", "5.2"], + ["not_eq", "date", "mysql", "2.7.0", "6.0"], + ["not_eq", "date", "mysql", "2.6.5", "4.2"], + ["not_eq", "date", "mysql", "2.6.5", "5.2"], + ["not_eq", "date", "mysql", "2.6.5", "6.0"], + ["not_eq", "date", "mysql", "2.5.7", "4.2"], + ["not_eq", "date", "mysql", "2.5.7", "5.2"], + ["not_eq", "date", "mysql", "2.5.7", "6.0"], + ["not_eq", "date", "mysql", "2.4.9", "4.2"], + ["not_eq", "date", "mysql", "2.4.9", "5.2"], + ["not_eq", "date", "mysql", "2.4.9", "6.0"], + ["not_eq", "date", "sqlite", "2.7.0", "4.2"], + ["not_eq", "date", "sqlite", "2.7.0", "5.2"], + ["not_eq", "date", "sqlite", "2.7.0", "6.0"], + ["not_eq", "date", "sqlite", "2.6.5", "4.2"], + ["not_eq", "date", "sqlite", "2.6.5", "5.2"], + ["not_eq", "date", "sqlite", "2.6.5", "6.0"], + ["not_eq", "date", "sqlite", "2.5.7", "4.2"], + ["not_eq", "date", "sqlite", "2.5.7", "5.2"], + ["not_eq", "date", "sqlite", "2.5.7", "6.0"], + ["not_eq", "date", "sqlite", "2.4.9", "4.2"], + ["not_eq", "date", "sqlite", "2.4.9", "5.2"], + ["not_eq", "date", "sqlite", "2.4.9", "6.0"], + ["not_eq", "datetime", "postgresql", "2.7.0", "4.2"], + ["not_eq", "datetime", "postgresql", "2.7.0", "5.2"], + ["not_eq", "datetime", "postgresql", "2.7.0", "6.0"], + ["not_eq", "datetime", "postgresql", "2.6.5", "4.2"], + ["not_eq", "datetime", "postgresql", "2.6.5", "5.2"], + ["not_eq", "datetime", "postgresql", "2.6.5", "6.0"], + ["not_eq", "datetime", "postgresql", "2.5.7", "4.2"], + ["not_eq", "datetime", "postgresql", "2.5.7", "5.2"], + ["not_eq", "datetime", "postgresql", "2.5.7", "6.0"], + ["not_eq", "datetime", "postgresql", "2.4.9", "4.2"], + ["not_eq", "datetime", "postgresql", "2.4.9", "5.2"], + ["not_eq", "datetime", "postgresql", "2.4.9", "6.0"], + ["not_eq", "datetime", "mysql", "2.7.0", "4.2"], + ["not_eq", "datetime", "mysql", "2.7.0", "5.2"], + ["not_eq", "datetime", "mysql", "2.7.0", "6.0"], + ["not_eq", "datetime", "mysql", "2.6.5", "4.2"], + ["not_eq", "datetime", "mysql", "2.6.5", "5.2"], + ["not_eq", "datetime", "mysql", "2.6.5", "6.0"], + ["not_eq", "datetime", "mysql", "2.5.7", "4.2"], + ["not_eq", "datetime", "mysql", "2.5.7", "5.2"], + ["not_eq", "datetime", "mysql", "2.5.7", "6.0"], + ["not_eq", "datetime", "mysql", "2.4.9", "4.2"], + ["not_eq", "datetime", "mysql", "2.4.9", "5.2"], + ["not_eq", "datetime", "mysql", "2.4.9", "6.0"], + ["not_eq", "datetime", "sqlite", "2.7.0", "4.2"], + ["not_eq", "datetime", "sqlite", "2.7.0", "5.2"], + ["not_eq", "datetime", "sqlite", "2.7.0", "6.0"], + ["not_eq", "datetime", "sqlite", "2.6.5", "4.2"], + ["not_eq", "datetime", "sqlite", "2.6.5", "5.2"], + ["not_eq", "datetime", "sqlite", "2.6.5", "6.0"], + ["not_eq", "datetime", "sqlite", "2.5.7", "4.2"], + ["not_eq", "datetime", "sqlite", "2.5.7", "5.2"], + ["not_eq", "datetime", "sqlite", "2.5.7", "6.0"], + ["not_eq", "datetime", "sqlite", "2.4.9", "4.2"], + ["not_eq", "datetime", "sqlite", "2.4.9", "5.2"], + ["not_eq", "datetime", "sqlite", "2.4.9", "6.0"], + ["not_eq", "decimal", "postgresql", "2.7.0", "4.2"], + ["not_eq", "decimal", "postgresql", "2.7.0", "5.2"], + ["not_eq", "decimal", "postgresql", "2.7.0", "6.0"], + ["not_eq", "decimal", "postgresql", "2.6.5", "4.2"], + ["not_eq", "decimal", "postgresql", "2.6.5", "5.2"], + ["not_eq", "decimal", "postgresql", "2.6.5", "6.0"], + ["not_eq", "decimal", "postgresql", "2.5.7", "4.2"], + ["not_eq", "decimal", "postgresql", "2.5.7", "5.2"], + ["not_eq", "decimal", "postgresql", "2.5.7", "6.0"], + ["not_eq", "decimal", "postgresql", "2.4.9", "4.2"], + ["not_eq", "decimal", "postgresql", "2.4.9", "5.2"], + ["not_eq", "decimal", "postgresql", "2.4.9", "6.0"], + ["not_eq", "decimal", "mysql", "2.7.0", "4.2"], + ["not_eq", "decimal", "mysql", "2.7.0", "5.2"], + ["not_eq", "decimal", "mysql", "2.7.0", "6.0"], + ["not_eq", "decimal", "mysql", "2.6.5", "4.2"], + ["not_eq", "decimal", "mysql", "2.6.5", "5.2"], + ["not_eq", "decimal", "mysql", "2.6.5", "6.0"], + ["not_eq", "decimal", "mysql", "2.5.7", "4.2"], + ["not_eq", "decimal", "mysql", "2.5.7", "5.2"], + ["not_eq", "decimal", "mysql", "2.5.7", "6.0"], + ["not_eq", "decimal", "mysql", "2.4.9", "4.2"], + ["not_eq", "decimal", "mysql", "2.4.9", "5.2"], + ["not_eq", "decimal", "mysql", "2.4.9", "6.0"], + ["not_eq", "decimal", "sqlite", "2.7.0", "4.2"], + ["not_eq", "decimal", "sqlite", "2.7.0", "5.2"], + ["not_eq", "decimal", "sqlite", "2.7.0", "6.0"], + ["not_eq", "decimal", "sqlite", "2.6.5", "4.2"], + ["not_eq", "decimal", "sqlite", "2.6.5", "5.2"], + ["not_eq", "decimal", "sqlite", "2.6.5", "6.0"], + ["not_eq", "decimal", "sqlite", "2.5.7", "4.2"], + ["not_eq", "decimal", "sqlite", "2.5.7", "5.2"], + ["not_eq", "decimal", "sqlite", "2.5.7", "6.0"], + ["not_eq", "decimal", "sqlite", "2.4.9", "4.2"], + ["not_eq", "decimal", "sqlite", "2.4.9", "5.2"], + ["not_eq", "decimal", "sqlite", "2.4.9", "6.0"], + ["not_eq", "float", "postgresql", "2.7.0", "4.2"], + ["not_eq", "float", "postgresql", "2.7.0", "5.2"], + ["not_eq", "float", "postgresql", "2.7.0", "6.0"], + ["not_eq", "float", "postgresql", "2.6.5", "4.2"], + ["not_eq", "float", "postgresql", "2.6.5", "5.2"], + ["not_eq", "float", "postgresql", "2.6.5", "6.0"], + ["not_eq", "float", "postgresql", "2.5.7", "4.2"], + ["not_eq", "float", "postgresql", "2.5.7", "5.2"], + ["not_eq", "float", "postgresql", "2.5.7", "6.0"], + ["not_eq", "float", "postgresql", "2.4.9", "4.2"], + ["not_eq", "float", "postgresql", "2.4.9", "5.2"], + ["not_eq", "float", "postgresql", "2.4.9", "6.0"], + ["not_eq", "float", "mysql", "2.7.0", "4.2"], + ["not_eq", "float", "mysql", "2.7.0", "5.2"], + ["not_eq", "float", "mysql", "2.7.0", "6.0"], + ["not_eq", "float", "mysql", "2.6.5", "4.2"], + ["not_eq", "float", "mysql", "2.6.5", "5.2"], + ["not_eq", "float", "mysql", "2.6.5", "6.0"], + ["not_eq", "float", "mysql", "2.5.7", "4.2"], + ["not_eq", "float", "mysql", "2.5.7", "5.2"], + ["not_eq", "float", "mysql", "2.5.7", "6.0"], + ["not_eq", "float", "mysql", "2.4.9", "4.2"], + ["not_eq", "float", "mysql", "2.4.9", "5.2"], + ["not_eq", "float", "mysql", "2.4.9", "6.0"], + ["not_eq", "float", "sqlite", "2.7.0", "4.2"], + ["not_eq", "float", "sqlite", "2.7.0", "5.2"], + ["not_eq", "float", "sqlite", "2.7.0", "6.0"], + ["not_eq", "float", "sqlite", "2.6.5", "4.2"], + ["not_eq", "float", "sqlite", "2.6.5", "5.2"], + ["not_eq", "float", "sqlite", "2.6.5", "6.0"], + ["not_eq", "float", "sqlite", "2.5.7", "4.2"], + ["not_eq", "float", "sqlite", "2.5.7", "5.2"], + ["not_eq", "float", "sqlite", "2.5.7", "6.0"], + ["not_eq", "float", "sqlite", "2.4.9", "4.2"], + ["not_eq", "float", "sqlite", "2.4.9", "5.2"], + ["not_eq", "float", "sqlite", "2.4.9", "6.0"], + ["not_eq", "integer", "postgresql", "2.7.0", "4.2"], + ["not_eq", "integer", "postgresql", "2.7.0", "5.2"], + ["not_eq", "integer", "postgresql", "2.7.0", "6.0"], + ["not_eq", "integer", "postgresql", "2.6.5", "4.2"], + ["not_eq", "integer", "postgresql", "2.6.5", "5.2"], + ["not_eq", "integer", "postgresql", "2.6.5", "6.0"], + ["not_eq", "integer", "postgresql", "2.5.7", "4.2"], + ["not_eq", "integer", "postgresql", "2.5.7", "5.2"], + ["not_eq", "integer", "postgresql", "2.5.7", "6.0"], + ["not_eq", "integer", "postgresql", "2.4.9", "4.2"], + ["not_eq", "integer", "postgresql", "2.4.9", "5.2"], + ["not_eq", "integer", "postgresql", "2.4.9", "6.0"], + ["not_eq", "integer", "mysql", "2.7.0", "4.2"], + ["not_eq", "integer", "mysql", "2.7.0", "5.2"], + ["not_eq", "integer", "mysql", "2.7.0", "6.0"], + ["not_eq", "integer", "mysql", "2.6.5", "4.2"], + ["not_eq", "integer", "mysql", "2.6.5", "5.2"], + ["not_eq", "integer", "mysql", "2.6.5", "6.0"], + ["not_eq", "integer", "mysql", "2.5.7", "4.2"], + ["not_eq", "integer", "mysql", "2.5.7", "5.2"], + ["not_eq", "integer", "mysql", "2.5.7", "6.0"], + ["not_eq", "integer", "mysql", "2.4.9", "4.2"], + ["not_eq", "integer", "mysql", "2.4.9", "5.2"], + ["not_eq", "integer", "mysql", "2.4.9", "6.0"], + ["not_eq", "integer", "sqlite", "2.7.0", "4.2"], + ["not_eq", "integer", "sqlite", "2.7.0", "5.2"], + ["not_eq", "integer", "sqlite", "2.7.0", "6.0"], + ["not_eq", "integer", "sqlite", "2.6.5", "4.2"], + ["not_eq", "integer", "sqlite", "2.6.5", "5.2"], + ["not_eq", "integer", "sqlite", "2.6.5", "6.0"], + ["not_eq", "integer", "sqlite", "2.5.7", "4.2"], + ["not_eq", "integer", "sqlite", "2.5.7", "5.2"], + ["not_eq", "integer", "sqlite", "2.5.7", "6.0"], + ["not_eq", "integer", "sqlite", "2.4.9", "4.2"], + ["not_eq", "integer", "sqlite", "2.4.9", "5.2"], + ["not_eq", "integer", "sqlite", "2.4.9", "6.0"], + ["not_eq", "string", "postgresql", "2.7.0", "4.2"], + ["not_eq", "string", "postgresql", "2.7.0", "5.2"], + ["not_eq", "string", "postgresql", "2.7.0", "6.0"], + ["not_eq", "string", "postgresql", "2.6.5", "4.2"], + ["not_eq", "string", "postgresql", "2.6.5", "5.2"], + ["not_eq", "string", "postgresql", "2.6.5", "6.0"], + ["not_eq", "string", "postgresql", "2.5.7", "4.2"], + ["not_eq", "string", "postgresql", "2.5.7", "5.2"], + ["not_eq", "string", "postgresql", "2.5.7", "6.0"], + ["not_eq", "string", "postgresql", "2.4.9", "4.2"], + ["not_eq", "string", "postgresql", "2.4.9", "5.2"], + ["not_eq", "string", "postgresql", "2.4.9", "6.0"], + ["not_eq", "string", "mysql", "2.7.0", "4.2"], + ["not_eq", "string", "mysql", "2.7.0", "5.2"], + ["not_eq", "string", "mysql", "2.7.0", "6.0"], + ["not_eq", "string", "mysql", "2.6.5", "4.2"], + ["not_eq", "string", "mysql", "2.6.5", "5.2"], + ["not_eq", "string", "mysql", "2.6.5", "6.0"], + ["not_eq", "string", "mysql", "2.5.7", "4.2"], + ["not_eq", "string", "mysql", "2.5.7", "5.2"], + ["not_eq", "string", "mysql", "2.5.7", "6.0"], + ["not_eq", "string", "mysql", "2.4.9", "4.2"], + ["not_eq", "string", "mysql", "2.4.9", "5.2"], + ["not_eq", "string", "mysql", "2.4.9", "6.0"], + ["not_eq", "string", "sqlite", "2.7.0", "4.2"], + ["not_eq", "string", "sqlite", "2.7.0", "5.2"], + ["not_eq", "string", "sqlite", "2.7.0", "6.0"], + ["not_eq", "string", "sqlite", "2.6.5", "4.2"], + ["not_eq", "string", "sqlite", "2.6.5", "5.2"], + ["not_eq", "string", "sqlite", "2.6.5", "6.0"], + ["not_eq", "string", "sqlite", "2.5.7", "4.2"], + ["not_eq", "string", "sqlite", "2.5.7", "5.2"], + ["not_eq", "string", "sqlite", "2.5.7", "6.0"], + ["not_eq", "string", "sqlite", "2.4.9", "4.2"], + ["not_eq", "string", "sqlite", "2.4.9", "5.2"], + ["not_eq", "string", "sqlite", "2.4.9", "6.0"], + ["not_eq", "text", "postgresql", "2.7.0", "4.2"], + ["not_eq", "text", "postgresql", "2.7.0", "5.2"], + ["not_eq", "text", "postgresql", "2.7.0", "6.0"], + ["not_eq", "text", "postgresql", "2.6.5", "4.2"], + ["not_eq", "text", "postgresql", "2.6.5", "5.2"], + ["not_eq", "text", "postgresql", "2.6.5", "6.0"], + ["not_eq", "text", "postgresql", "2.5.7", "4.2"], + ["not_eq", "text", "postgresql", "2.5.7", "5.2"], + ["not_eq", "text", "postgresql", "2.5.7", "6.0"], + ["not_eq", "text", "postgresql", "2.4.9", "4.2"], + ["not_eq", "text", "postgresql", "2.4.9", "5.2"], + ["not_eq", "text", "postgresql", "2.4.9", "6.0"], + ["not_eq", "text", "mysql", "2.7.0", "4.2"], + ["not_eq", "text", "mysql", "2.7.0", "5.2"], + ["not_eq", "text", "mysql", "2.7.0", "6.0"], + ["not_eq", "text", "mysql", "2.6.5", "4.2"], + ["not_eq", "text", "mysql", "2.6.5", "5.2"], + ["not_eq", "text", "mysql", "2.6.5", "6.0"], + ["not_eq", "text", "mysql", "2.5.7", "4.2"], + ["not_eq", "text", "mysql", "2.5.7", "5.2"], + ["not_eq", "text", "mysql", "2.5.7", "6.0"], + ["not_eq", "text", "mysql", "2.4.9", "4.2"], + ["not_eq", "text", "mysql", "2.4.9", "5.2"], + ["not_eq", "text", "mysql", "2.4.9", "6.0"], + ["not_eq", "text", "sqlite", "2.7.0", "4.2"], + ["not_eq", "text", "sqlite", "2.7.0", "5.2"], + ["not_eq", "text", "sqlite", "2.7.0", "6.0"], + ["not_eq", "text", "sqlite", "2.6.5", "4.2"], + ["not_eq", "text", "sqlite", "2.6.5", "5.2"], + ["not_eq", "text", "sqlite", "2.6.5", "6.0"], + ["not_eq", "text", "sqlite", "2.5.7", "4.2"], + ["not_eq", "text", "sqlite", "2.5.7", "5.2"], + ["not_eq", "text", "sqlite", "2.5.7", "6.0"], + ["not_eq", "text", "sqlite", "2.4.9", "4.2"], + ["not_eq", "text", "sqlite", "2.4.9", "5.2"], + ["not_eq", "text", "sqlite", "2.4.9", "6.0"], + ["not_eq", "time", "postgresql", "2.7.0", "4.2"], + ["not_eq", "time", "postgresql", "2.7.0", "5.2"], + ["not_eq", "time", "postgresql", "2.7.0", "6.0"], + ["not_eq", "time", "postgresql", "2.6.5", "4.2"], + ["not_eq", "time", "postgresql", "2.6.5", "5.2"], + ["not_eq", "time", "postgresql", "2.6.5", "6.0"], + ["not_eq", "time", "postgresql", "2.5.7", "4.2"], + ["not_eq", "time", "postgresql", "2.5.7", "5.2"], + ["not_eq", "time", "postgresql", "2.5.7", "6.0"], + ["not_eq", "time", "postgresql", "2.4.9", "4.2"], + ["not_eq", "time", "postgresql", "2.4.9", "5.2"], + ["not_eq", "time", "postgresql", "2.4.9", "6.0"], + ["not_eq", "time", "mysql", "2.7.0", "4.2"], + ["not_eq", "time", "mysql", "2.7.0", "5.2"], + ["not_eq", "time", "mysql", "2.7.0", "6.0"], + ["not_eq", "time", "mysql", "2.6.5", "4.2"], + ["not_eq", "time", "mysql", "2.6.5", "5.2"], + ["not_eq", "time", "mysql", "2.6.5", "6.0"], + ["not_eq", "time", "mysql", "2.5.7", "4.2"], + ["not_eq", "time", "mysql", "2.5.7", "5.2"], + ["not_eq", "time", "mysql", "2.5.7", "6.0"], + ["not_eq", "time", "mysql", "2.4.9", "4.2"], + ["not_eq", "time", "mysql", "2.4.9", "5.2"], + ["not_eq", "time", "mysql", "2.4.9", "6.0"], + ["not_eq", "time", "sqlite", "2.7.0", "4.2"], + ["not_eq", "time", "sqlite", "2.7.0", "5.2"], + ["not_eq", "time", "sqlite", "2.7.0", "6.0"], + ["not_eq", "time", "sqlite", "2.6.5", "4.2"], + ["not_eq", "time", "sqlite", "2.6.5", "5.2"], + ["not_eq", "time", "sqlite", "2.6.5", "6.0"], + ["not_eq", "time", "sqlite", "2.5.7", "4.2"], + ["not_eq", "time", "sqlite", "2.5.7", "5.2"], + ["not_eq", "time", "sqlite", "2.5.7", "6.0"], + ["not_eq", "time", "sqlite", "2.4.9", "4.2"], + ["not_eq", "time", "sqlite", "2.4.9", "5.2"], + ["not_eq", "time", "sqlite", "2.4.9", "6.0"], + ["eq_any", "binary", "postgresql", "2.7.0", "4.2"], + ["eq_any", "binary", "postgresql", "2.7.0", "5.2"], + ["eq_any", "binary", "postgresql", "2.7.0", "6.0"], + ["eq_any", "binary", "postgresql", "2.6.5", "4.2"], + ["eq_any", "binary", "postgresql", "2.6.5", "5.2"], + ["eq_any", "binary", "postgresql", "2.6.5", "6.0"], + ["eq_any", "binary", "postgresql", "2.5.7", "4.2"], + ["eq_any", "binary", "postgresql", "2.5.7", "5.2"], + ["eq_any", "binary", "postgresql", "2.5.7", "6.0"], + ["eq_any", "binary", "postgresql", "2.4.9", "4.2"], + ["eq_any", "binary", "postgresql", "2.4.9", "5.2"], + ["eq_any", "binary", "postgresql", "2.4.9", "6.0"], + ["eq_any", "binary", "mysql", "2.7.0", "4.2"], + ["eq_any", "binary", "mysql", "2.7.0", "5.2"], + ["eq_any", "binary", "mysql", "2.7.0", "6.0"], + ["eq_any", "binary", "mysql", "2.6.5", "4.2"], + ["eq_any", "binary", "mysql", "2.6.5", "5.2"], + ["eq_any", "binary", "mysql", "2.6.5", "6.0"], + ["eq_any", "binary", "mysql", "2.5.7", "4.2"], + ["eq_any", "binary", "mysql", "2.5.7", "5.2"], + ["eq_any", "binary", "mysql", "2.5.7", "6.0"], + ["eq_any", "binary", "mysql", "2.4.9", "4.2"], + ["eq_any", "binary", "mysql", "2.4.9", "5.2"], + ["eq_any", "binary", "mysql", "2.4.9", "6.0"], + ["eq_any", "binary", "sqlite", "2.7.0", "4.2"], + ["eq_any", "binary", "sqlite", "2.7.0", "5.2"], + ["eq_any", "binary", "sqlite", "2.7.0", "6.0"], + ["eq_any", "binary", "sqlite", "2.6.5", "4.2"], + ["eq_any", "binary", "sqlite", "2.6.5", "5.2"], + ["eq_any", "binary", "sqlite", "2.6.5", "6.0"], + ["eq_any", "binary", "sqlite", "2.5.7", "4.2"], + ["eq_any", "binary", "sqlite", "2.5.7", "5.2"], + ["eq_any", "binary", "sqlite", "2.5.7", "6.0"], + ["eq_any", "binary", "sqlite", "2.4.9", "4.2"], + ["eq_any", "binary", "sqlite", "2.4.9", "5.2"], + ["eq_any", "binary", "sqlite", "2.4.9", "6.0"], + ["eq_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["eq_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["eq_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["eq_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["eq_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["eq_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["eq_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["eq_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["eq_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["eq_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["eq_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["eq_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["eq_any", "boolean", "mysql", "2.7.0", "4.2"], + ["eq_any", "boolean", "mysql", "2.7.0", "5.2"], + ["eq_any", "boolean", "mysql", "2.7.0", "6.0"], + ["eq_any", "boolean", "mysql", "2.6.5", "4.2"], + ["eq_any", "boolean", "mysql", "2.6.5", "5.2"], + ["eq_any", "boolean", "mysql", "2.6.5", "6.0"], + ["eq_any", "boolean", "mysql", "2.5.7", "4.2"], + ["eq_any", "boolean", "mysql", "2.5.7", "5.2"], + ["eq_any", "boolean", "mysql", "2.5.7", "6.0"], + ["eq_any", "boolean", "mysql", "2.4.9", "4.2"], + ["eq_any", "boolean", "mysql", "2.4.9", "5.2"], + ["eq_any", "boolean", "mysql", "2.4.9", "6.0"], + ["eq_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["eq_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["eq_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["eq_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["eq_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["eq_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["eq_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["eq_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["eq_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["eq_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["eq_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["eq_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["eq_any", "date", "postgresql", "2.7.0", "4.2"], + ["eq_any", "date", "postgresql", "2.7.0", "5.2"], + ["eq_any", "date", "postgresql", "2.7.0", "6.0"], + ["eq_any", "date", "postgresql", "2.6.5", "4.2"], + ["eq_any", "date", "postgresql", "2.6.5", "5.2"], + ["eq_any", "date", "postgresql", "2.6.5", "6.0"], + ["eq_any", "date", "postgresql", "2.5.7", "4.2"], + ["eq_any", "date", "postgresql", "2.5.7", "5.2"], + ["eq_any", "date", "postgresql", "2.5.7", "6.0"], + ["eq_any", "date", "postgresql", "2.4.9", "4.2"], + ["eq_any", "date", "postgresql", "2.4.9", "5.2"], + ["eq_any", "date", "postgresql", "2.4.9", "6.0"], + ["eq_any", "date", "mysql", "2.7.0", "4.2"], + ["eq_any", "date", "mysql", "2.7.0", "5.2"], + ["eq_any", "date", "mysql", "2.7.0", "6.0"], + ["eq_any", "date", "mysql", "2.6.5", "4.2"], + ["eq_any", "date", "mysql", "2.6.5", "5.2"], + ["eq_any", "date", "mysql", "2.6.5", "6.0"], + ["eq_any", "date", "mysql", "2.5.7", "4.2"], + ["eq_any", "date", "mysql", "2.5.7", "5.2"], + ["eq_any", "date", "mysql", "2.5.7", "6.0"], + ["eq_any", "date", "mysql", "2.4.9", "4.2"], + ["eq_any", "date", "mysql", "2.4.9", "5.2"], + ["eq_any", "date", "mysql", "2.4.9", "6.0"], + ["eq_any", "date", "sqlite", "2.7.0", "4.2"], + ["eq_any", "date", "sqlite", "2.7.0", "5.2"], + ["eq_any", "date", "sqlite", "2.7.0", "6.0"], + ["eq_any", "date", "sqlite", "2.6.5", "4.2"], + ["eq_any", "date", "sqlite", "2.6.5", "5.2"], + ["eq_any", "date", "sqlite", "2.6.5", "6.0"], + ["eq_any", "date", "sqlite", "2.5.7", "4.2"], + ["eq_any", "date", "sqlite", "2.5.7", "5.2"], + ["eq_any", "date", "sqlite", "2.5.7", "6.0"], + ["eq_any", "date", "sqlite", "2.4.9", "4.2"], + ["eq_any", "date", "sqlite", "2.4.9", "5.2"], + ["eq_any", "date", "sqlite", "2.4.9", "6.0"], + ["eq_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["eq_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["eq_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["eq_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["eq_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["eq_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["eq_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["eq_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["eq_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["eq_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["eq_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["eq_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["eq_any", "datetime", "mysql", "2.7.0", "4.2"], + ["eq_any", "datetime", "mysql", "2.7.0", "5.2"], + ["eq_any", "datetime", "mysql", "2.7.0", "6.0"], + ["eq_any", "datetime", "mysql", "2.6.5", "4.2"], + ["eq_any", "datetime", "mysql", "2.6.5", "5.2"], + ["eq_any", "datetime", "mysql", "2.6.5", "6.0"], + ["eq_any", "datetime", "mysql", "2.5.7", "4.2"], + ["eq_any", "datetime", "mysql", "2.5.7", "5.2"], + ["eq_any", "datetime", "mysql", "2.5.7", "6.0"], + ["eq_any", "datetime", "mysql", "2.4.9", "4.2"], + ["eq_any", "datetime", "mysql", "2.4.9", "5.2"], + ["eq_any", "datetime", "mysql", "2.4.9", "6.0"], + ["eq_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["eq_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["eq_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["eq_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["eq_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["eq_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["eq_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["eq_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["eq_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["eq_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["eq_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["eq_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["eq_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["eq_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["eq_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["eq_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["eq_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["eq_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["eq_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["eq_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["eq_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["eq_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["eq_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["eq_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["eq_any", "decimal", "mysql", "2.7.0", "4.2"], + ["eq_any", "decimal", "mysql", "2.7.0", "5.2"], + ["eq_any", "decimal", "mysql", "2.7.0", "6.0"], + ["eq_any", "decimal", "mysql", "2.6.5", "4.2"], + ["eq_any", "decimal", "mysql", "2.6.5", "5.2"], + ["eq_any", "decimal", "mysql", "2.6.5", "6.0"], + ["eq_any", "decimal", "mysql", "2.5.7", "4.2"], + ["eq_any", "decimal", "mysql", "2.5.7", "5.2"], + ["eq_any", "decimal", "mysql", "2.5.7", "6.0"], + ["eq_any", "decimal", "mysql", "2.4.9", "4.2"], + ["eq_any", "decimal", "mysql", "2.4.9", "5.2"], + ["eq_any", "decimal", "mysql", "2.4.9", "6.0"], + ["eq_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["eq_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["eq_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["eq_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["eq_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["eq_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["eq_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["eq_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["eq_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["eq_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["eq_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["eq_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["eq_any", "float", "postgresql", "2.7.0", "4.2"], + ["eq_any", "float", "postgresql", "2.7.0", "5.2"], + ["eq_any", "float", "postgresql", "2.7.0", "6.0"], + ["eq_any", "float", "postgresql", "2.6.5", "4.2"], + ["eq_any", "float", "postgresql", "2.6.5", "5.2"], + ["eq_any", "float", "postgresql", "2.6.5", "6.0"], + ["eq_any", "float", "postgresql", "2.5.7", "4.2"], + ["eq_any", "float", "postgresql", "2.5.7", "5.2"], + ["eq_any", "float", "postgresql", "2.5.7", "6.0"], + ["eq_any", "float", "postgresql", "2.4.9", "4.2"], + ["eq_any", "float", "postgresql", "2.4.9", "5.2"], + ["eq_any", "float", "postgresql", "2.4.9", "6.0"], + ["eq_any", "float", "mysql", "2.7.0", "4.2"], + ["eq_any", "float", "mysql", "2.7.0", "5.2"], + ["eq_any", "float", "mysql", "2.7.0", "6.0"], + ["eq_any", "float", "mysql", "2.6.5", "4.2"], + ["eq_any", "float", "mysql", "2.6.5", "5.2"], + ["eq_any", "float", "mysql", "2.6.5", "6.0"], + ["eq_any", "float", "mysql", "2.5.7", "4.2"], + ["eq_any", "float", "mysql", "2.5.7", "5.2"], + ["eq_any", "float", "mysql", "2.5.7", "6.0"], + ["eq_any", "float", "mysql", "2.4.9", "4.2"], + ["eq_any", "float", "mysql", "2.4.9", "5.2"], + ["eq_any", "float", "mysql", "2.4.9", "6.0"], + ["eq_any", "float", "sqlite", "2.7.0", "4.2"], + ["eq_any", "float", "sqlite", "2.7.0", "5.2"], + ["eq_any", "float", "sqlite", "2.7.0", "6.0"], + ["eq_any", "float", "sqlite", "2.6.5", "4.2"], + ["eq_any", "float", "sqlite", "2.6.5", "5.2"], + ["eq_any", "float", "sqlite", "2.6.5", "6.0"], + ["eq_any", "float", "sqlite", "2.5.7", "4.2"], + ["eq_any", "float", "sqlite", "2.5.7", "5.2"], + ["eq_any", "float", "sqlite", "2.5.7", "6.0"], + ["eq_any", "float", "sqlite", "2.4.9", "4.2"], + ["eq_any", "float", "sqlite", "2.4.9", "5.2"], + ["eq_any", "float", "sqlite", "2.4.9", "6.0"], + ["eq_any", "integer", "postgresql", "2.7.0", "4.2"], + ["eq_any", "integer", "postgresql", "2.7.0", "5.2"], + ["eq_any", "integer", "postgresql", "2.7.0", "6.0"], + ["eq_any", "integer", "postgresql", "2.6.5", "4.2"], + ["eq_any", "integer", "postgresql", "2.6.5", "5.2"], + ["eq_any", "integer", "postgresql", "2.6.5", "6.0"], + ["eq_any", "integer", "postgresql", "2.5.7", "4.2"], + ["eq_any", "integer", "postgresql", "2.5.7", "5.2"], + ["eq_any", "integer", "postgresql", "2.5.7", "6.0"], + ["eq_any", "integer", "postgresql", "2.4.9", "4.2"], + ["eq_any", "integer", "postgresql", "2.4.9", "5.2"], + ["eq_any", "integer", "postgresql", "2.4.9", "6.0"], + ["eq_any", "integer", "mysql", "2.7.0", "4.2"], + ["eq_any", "integer", "mysql", "2.7.0", "5.2"], + ["eq_any", "integer", "mysql", "2.7.0", "6.0"], + ["eq_any", "integer", "mysql", "2.6.5", "4.2"], + ["eq_any", "integer", "mysql", "2.6.5", "5.2"], + ["eq_any", "integer", "mysql", "2.6.5", "6.0"], + ["eq_any", "integer", "mysql", "2.5.7", "4.2"], + ["eq_any", "integer", "mysql", "2.5.7", "5.2"], + ["eq_any", "integer", "mysql", "2.5.7", "6.0"], + ["eq_any", "integer", "mysql", "2.4.9", "4.2"], + ["eq_any", "integer", "mysql", "2.4.9", "5.2"], + ["eq_any", "integer", "mysql", "2.4.9", "6.0"], + ["eq_any", "integer", "sqlite", "2.7.0", "4.2"], + ["eq_any", "integer", "sqlite", "2.7.0", "5.2"], + ["eq_any", "integer", "sqlite", "2.7.0", "6.0"], + ["eq_any", "integer", "sqlite", "2.6.5", "4.2"], + ["eq_any", "integer", "sqlite", "2.6.5", "5.2"], + ["eq_any", "integer", "sqlite", "2.6.5", "6.0"], + ["eq_any", "integer", "sqlite", "2.5.7", "4.2"], + ["eq_any", "integer", "sqlite", "2.5.7", "5.2"], + ["eq_any", "integer", "sqlite", "2.5.7", "6.0"], + ["eq_any", "integer", "sqlite", "2.4.9", "4.2"], + ["eq_any", "integer", "sqlite", "2.4.9", "5.2"], + ["eq_any", "integer", "sqlite", "2.4.9", "6.0"], + ["eq_any", "string", "postgresql", "2.7.0", "4.2"], + ["eq_any", "string", "postgresql", "2.7.0", "5.2"], + ["eq_any", "string", "postgresql", "2.7.0", "6.0"], + ["eq_any", "string", "postgresql", "2.6.5", "4.2"], + ["eq_any", "string", "postgresql", "2.6.5", "5.2"], + ["eq_any", "string", "postgresql", "2.6.5", "6.0"], + ["eq_any", "string", "postgresql", "2.5.7", "4.2"], + ["eq_any", "string", "postgresql", "2.5.7", "5.2"], + ["eq_any", "string", "postgresql", "2.5.7", "6.0"], + ["eq_any", "string", "postgresql", "2.4.9", "4.2"], + ["eq_any", "string", "postgresql", "2.4.9", "5.2"], + ["eq_any", "string", "postgresql", "2.4.9", "6.0"], + ["eq_any", "string", "mysql", "2.7.0", "4.2"], + ["eq_any", "string", "mysql", "2.7.0", "5.2"], + ["eq_any", "string", "mysql", "2.7.0", "6.0"], + ["eq_any", "string", "mysql", "2.6.5", "4.2"], + ["eq_any", "string", "mysql", "2.6.5", "5.2"], + ["eq_any", "string", "mysql", "2.6.5", "6.0"], + ["eq_any", "string", "mysql", "2.5.7", "4.2"], + ["eq_any", "string", "mysql", "2.5.7", "5.2"], + ["eq_any", "string", "mysql", "2.5.7", "6.0"], + ["eq_any", "string", "mysql", "2.4.9", "4.2"], + ["eq_any", "string", "mysql", "2.4.9", "5.2"], + ["eq_any", "string", "mysql", "2.4.9", "6.0"], + ["eq_any", "string", "sqlite", "2.7.0", "4.2"], + ["eq_any", "string", "sqlite", "2.7.0", "5.2"], + ["eq_any", "string", "sqlite", "2.7.0", "6.0"], + ["eq_any", "string", "sqlite", "2.6.5", "4.2"], + ["eq_any", "string", "sqlite", "2.6.5", "5.2"], + ["eq_any", "string", "sqlite", "2.6.5", "6.0"], + ["eq_any", "string", "sqlite", "2.5.7", "4.2"], + ["eq_any", "string", "sqlite", "2.5.7", "5.2"], + ["eq_any", "string", "sqlite", "2.5.7", "6.0"], + ["eq_any", "string", "sqlite", "2.4.9", "4.2"], + ["eq_any", "string", "sqlite", "2.4.9", "5.2"], + ["eq_any", "string", "sqlite", "2.4.9", "6.0"], + ["eq_any", "text", "postgresql", "2.7.0", "4.2"], + ["eq_any", "text", "postgresql", "2.7.0", "5.2"], + ["eq_any", "text", "postgresql", "2.7.0", "6.0"], + ["eq_any", "text", "postgresql", "2.6.5", "4.2"], + ["eq_any", "text", "postgresql", "2.6.5", "5.2"], + ["eq_any", "text", "postgresql", "2.6.5", "6.0"], + ["eq_any", "text", "postgresql", "2.5.7", "4.2"], + ["eq_any", "text", "postgresql", "2.5.7", "5.2"], + ["eq_any", "text", "postgresql", "2.5.7", "6.0"], + ["eq_any", "text", "postgresql", "2.4.9", "4.2"], + ["eq_any", "text", "postgresql", "2.4.9", "5.2"], + ["eq_any", "text", "postgresql", "2.4.9", "6.0"], + ["eq_any", "text", "mysql", "2.7.0", "4.2"], + ["eq_any", "text", "mysql", "2.7.0", "5.2"], + ["eq_any", "text", "mysql", "2.7.0", "6.0"], + ["eq_any", "text", "mysql", "2.6.5", "4.2"], + ["eq_any", "text", "mysql", "2.6.5", "5.2"], + ["eq_any", "text", "mysql", "2.6.5", "6.0"], + ["eq_any", "text", "mysql", "2.5.7", "4.2"], + ["eq_any", "text", "mysql", "2.5.7", "5.2"], + ["eq_any", "text", "mysql", "2.5.7", "6.0"], + ["eq_any", "text", "mysql", "2.4.9", "4.2"], + ["eq_any", "text", "mysql", "2.4.9", "5.2"], + ["eq_any", "text", "mysql", "2.4.9", "6.0"], + ["eq_any", "text", "sqlite", "2.7.0", "4.2"], + ["eq_any", "text", "sqlite", "2.7.0", "5.2"], + ["eq_any", "text", "sqlite", "2.7.0", "6.0"], + ["eq_any", "text", "sqlite", "2.6.5", "4.2"], + ["eq_any", "text", "sqlite", "2.6.5", "5.2"], + ["eq_any", "text", "sqlite", "2.6.5", "6.0"], + ["eq_any", "text", "sqlite", "2.5.7", "4.2"], + ["eq_any", "text", "sqlite", "2.5.7", "5.2"], + ["eq_any", "text", "sqlite", "2.5.7", "6.0"], + ["eq_any", "text", "sqlite", "2.4.9", "4.2"], + ["eq_any", "text", "sqlite", "2.4.9", "5.2"], + ["eq_any", "text", "sqlite", "2.4.9", "6.0"], + ["eq_any", "time", "postgresql", "2.7.0", "4.2"], + ["eq_any", "time", "postgresql", "2.7.0", "5.2"], + ["eq_any", "time", "postgresql", "2.7.0", "6.0"], + ["eq_any", "time", "postgresql", "2.6.5", "4.2"], + ["eq_any", "time", "postgresql", "2.6.5", "5.2"], + ["eq_any", "time", "postgresql", "2.6.5", "6.0"], + ["eq_any", "time", "postgresql", "2.5.7", "4.2"], + ["eq_any", "time", "postgresql", "2.5.7", "5.2"], + ["eq_any", "time", "postgresql", "2.5.7", "6.0"], + ["eq_any", "time", "postgresql", "2.4.9", "4.2"], + ["eq_any", "time", "postgresql", "2.4.9", "5.2"], + ["eq_any", "time", "postgresql", "2.4.9", "6.0"], + ["eq_any", "time", "mysql", "2.7.0", "4.2"], + ["eq_any", "time", "mysql", "2.7.0", "5.2"], + ["eq_any", "time", "mysql", "2.7.0", "6.0"], + ["eq_any", "time", "mysql", "2.6.5", "4.2"], + ["eq_any", "time", "mysql", "2.6.5", "5.2"], + ["eq_any", "time", "mysql", "2.6.5", "6.0"], + ["eq_any", "time", "mysql", "2.5.7", "4.2"], + ["eq_any", "time", "mysql", "2.5.7", "5.2"], + ["eq_any", "time", "mysql", "2.5.7", "6.0"], + ["eq_any", "time", "mysql", "2.4.9", "4.2"], + ["eq_any", "time", "mysql", "2.4.9", "5.2"], + ["eq_any", "time", "mysql", "2.4.9", "6.0"], + ["eq_any", "time", "sqlite", "2.7.0", "4.2"], + ["eq_any", "time", "sqlite", "2.7.0", "5.2"], + ["eq_any", "time", "sqlite", "2.7.0", "6.0"], + ["eq_any", "time", "sqlite", "2.6.5", "4.2"], + ["eq_any", "time", "sqlite", "2.6.5", "5.2"], + ["eq_any", "time", "sqlite", "2.6.5", "6.0"], + ["eq_any", "time", "sqlite", "2.5.7", "4.2"], + ["eq_any", "time", "sqlite", "2.5.7", "5.2"], + ["eq_any", "time", "sqlite", "2.5.7", "6.0"], + ["eq_any", "time", "sqlite", "2.4.9", "4.2"], + ["eq_any", "time", "sqlite", "2.4.9", "5.2"], + ["eq_any", "time", "sqlite", "2.4.9", "6.0"], + ["eq_all", "binary", "postgresql", "2.7.0", "4.2"], + ["eq_all", "binary", "postgresql", "2.7.0", "5.2"], + ["eq_all", "binary", "postgresql", "2.7.0", "6.0"], + ["eq_all", "binary", "postgresql", "2.6.5", "4.2"], + ["eq_all", "binary", "postgresql", "2.6.5", "5.2"], + ["eq_all", "binary", "postgresql", "2.6.5", "6.0"], + ["eq_all", "binary", "postgresql", "2.5.7", "4.2"], + ["eq_all", "binary", "postgresql", "2.5.7", "5.2"], + ["eq_all", "binary", "postgresql", "2.5.7", "6.0"], + ["eq_all", "binary", "postgresql", "2.4.9", "4.2"], + ["eq_all", "binary", "postgresql", "2.4.9", "5.2"], + ["eq_all", "binary", "postgresql", "2.4.9", "6.0"], + ["eq_all", "binary", "mysql", "2.7.0", "4.2"], + ["eq_all", "binary", "mysql", "2.7.0", "5.2"], + ["eq_all", "binary", "mysql", "2.7.0", "6.0"], + ["eq_all", "binary", "mysql", "2.6.5", "4.2"], + ["eq_all", "binary", "mysql", "2.6.5", "5.2"], + ["eq_all", "binary", "mysql", "2.6.5", "6.0"], + ["eq_all", "binary", "mysql", "2.5.7", "4.2"], + ["eq_all", "binary", "mysql", "2.5.7", "5.2"], + ["eq_all", "binary", "mysql", "2.5.7", "6.0"], + ["eq_all", "binary", "mysql", "2.4.9", "4.2"], + ["eq_all", "binary", "mysql", "2.4.9", "5.2"], + ["eq_all", "binary", "mysql", "2.4.9", "6.0"], + ["eq_all", "binary", "sqlite", "2.7.0", "4.2"], + ["eq_all", "binary", "sqlite", "2.7.0", "5.2"], + ["eq_all", "binary", "sqlite", "2.7.0", "6.0"], + ["eq_all", "binary", "sqlite", "2.6.5", "4.2"], + ["eq_all", "binary", "sqlite", "2.6.5", "5.2"], + ["eq_all", "binary", "sqlite", "2.6.5", "6.0"], + ["eq_all", "binary", "sqlite", "2.5.7", "4.2"], + ["eq_all", "binary", "sqlite", "2.5.7", "5.2"], + ["eq_all", "binary", "sqlite", "2.5.7", "6.0"], + ["eq_all", "binary", "sqlite", "2.4.9", "4.2"], + ["eq_all", "binary", "sqlite", "2.4.9", "5.2"], + ["eq_all", "binary", "sqlite", "2.4.9", "6.0"], + ["eq_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["eq_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["eq_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["eq_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["eq_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["eq_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["eq_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["eq_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["eq_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["eq_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["eq_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["eq_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["eq_all", "boolean", "mysql", "2.7.0", "4.2"], + ["eq_all", "boolean", "mysql", "2.7.0", "5.2"], + ["eq_all", "boolean", "mysql", "2.7.0", "6.0"], + ["eq_all", "boolean", "mysql", "2.6.5", "4.2"], + ["eq_all", "boolean", "mysql", "2.6.5", "5.2"], + ["eq_all", "boolean", "mysql", "2.6.5", "6.0"], + ["eq_all", "boolean", "mysql", "2.5.7", "4.2"], + ["eq_all", "boolean", "mysql", "2.5.7", "5.2"], + ["eq_all", "boolean", "mysql", "2.5.7", "6.0"], + ["eq_all", "boolean", "mysql", "2.4.9", "4.2"], + ["eq_all", "boolean", "mysql", "2.4.9", "5.2"], + ["eq_all", "boolean", "mysql", "2.4.9", "6.0"], + ["eq_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["eq_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["eq_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["eq_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["eq_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["eq_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["eq_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["eq_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["eq_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["eq_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["eq_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["eq_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["eq_all", "date", "postgresql", "2.7.0", "4.2"], + ["eq_all", "date", "postgresql", "2.7.0", "5.2"], + ["eq_all", "date", "postgresql", "2.7.0", "6.0"], + ["eq_all", "date", "postgresql", "2.6.5", "4.2"], + ["eq_all", "date", "postgresql", "2.6.5", "5.2"], + ["eq_all", "date", "postgresql", "2.6.5", "6.0"], + ["eq_all", "date", "postgresql", "2.5.7", "4.2"], + ["eq_all", "date", "postgresql", "2.5.7", "5.2"], + ["eq_all", "date", "postgresql", "2.5.7", "6.0"], + ["eq_all", "date", "postgresql", "2.4.9", "4.2"], + ["eq_all", "date", "postgresql", "2.4.9", "5.2"], + ["eq_all", "date", "postgresql", "2.4.9", "6.0"], + ["eq_all", "date", "mysql", "2.7.0", "4.2"], + ["eq_all", "date", "mysql", "2.7.0", "5.2"], + ["eq_all", "date", "mysql", "2.7.0", "6.0"], + ["eq_all", "date", "mysql", "2.6.5", "4.2"], + ["eq_all", "date", "mysql", "2.6.5", "5.2"], + ["eq_all", "date", "mysql", "2.6.5", "6.0"], + ["eq_all", "date", "mysql", "2.5.7", "4.2"], + ["eq_all", "date", "mysql", "2.5.7", "5.2"], + ["eq_all", "date", "mysql", "2.5.7", "6.0"], + ["eq_all", "date", "mysql", "2.4.9", "4.2"], + ["eq_all", "date", "mysql", "2.4.9", "5.2"], + ["eq_all", "date", "mysql", "2.4.9", "6.0"], + ["eq_all", "date", "sqlite", "2.7.0", "4.2"], + ["eq_all", "date", "sqlite", "2.7.0", "5.2"], + ["eq_all", "date", "sqlite", "2.7.0", "6.0"], + ["eq_all", "date", "sqlite", "2.6.5", "4.2"], + ["eq_all", "date", "sqlite", "2.6.5", "5.2"], + ["eq_all", "date", "sqlite", "2.6.5", "6.0"], + ["eq_all", "date", "sqlite", "2.5.7", "4.2"], + ["eq_all", "date", "sqlite", "2.5.7", "5.2"], + ["eq_all", "date", "sqlite", "2.5.7", "6.0"], + ["eq_all", "date", "sqlite", "2.4.9", "4.2"], + ["eq_all", "date", "sqlite", "2.4.9", "5.2"], + ["eq_all", "date", "sqlite", "2.4.9", "6.0"], + ["eq_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["eq_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["eq_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["eq_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["eq_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["eq_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["eq_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["eq_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["eq_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["eq_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["eq_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["eq_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["eq_all", "datetime", "mysql", "2.7.0", "4.2"], + ["eq_all", "datetime", "mysql", "2.7.0", "5.2"], + ["eq_all", "datetime", "mysql", "2.7.0", "6.0"], + ["eq_all", "datetime", "mysql", "2.6.5", "4.2"], + ["eq_all", "datetime", "mysql", "2.6.5", "5.2"], + ["eq_all", "datetime", "mysql", "2.6.5", "6.0"], + ["eq_all", "datetime", "mysql", "2.5.7", "4.2"], + ["eq_all", "datetime", "mysql", "2.5.7", "5.2"], + ["eq_all", "datetime", "mysql", "2.5.7", "6.0"], + ["eq_all", "datetime", "mysql", "2.4.9", "4.2"], + ["eq_all", "datetime", "mysql", "2.4.9", "5.2"], + ["eq_all", "datetime", "mysql", "2.4.9", "6.0"], + ["eq_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["eq_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["eq_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["eq_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["eq_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["eq_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["eq_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["eq_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["eq_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["eq_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["eq_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["eq_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["eq_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["eq_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["eq_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["eq_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["eq_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["eq_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["eq_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["eq_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["eq_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["eq_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["eq_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["eq_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["eq_all", "decimal", "mysql", "2.7.0", "4.2"], + ["eq_all", "decimal", "mysql", "2.7.0", "5.2"], + ["eq_all", "decimal", "mysql", "2.7.0", "6.0"], + ["eq_all", "decimal", "mysql", "2.6.5", "4.2"], + ["eq_all", "decimal", "mysql", "2.6.5", "5.2"], + ["eq_all", "decimal", "mysql", "2.6.5", "6.0"], + ["eq_all", "decimal", "mysql", "2.5.7", "4.2"], + ["eq_all", "decimal", "mysql", "2.5.7", "5.2"], + ["eq_all", "decimal", "mysql", "2.5.7", "6.0"], + ["eq_all", "decimal", "mysql", "2.4.9", "4.2"], + ["eq_all", "decimal", "mysql", "2.4.9", "5.2"], + ["eq_all", "decimal", "mysql", "2.4.9", "6.0"], + ["eq_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["eq_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["eq_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["eq_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["eq_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["eq_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["eq_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["eq_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["eq_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["eq_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["eq_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["eq_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["eq_all", "float", "postgresql", "2.7.0", "4.2"], + ["eq_all", "float", "postgresql", "2.7.0", "5.2"], + ["eq_all", "float", "postgresql", "2.7.0", "6.0"], + ["eq_all", "float", "postgresql", "2.6.5", "4.2"], + ["eq_all", "float", "postgresql", "2.6.5", "5.2"], + ["eq_all", "float", "postgresql", "2.6.5", "6.0"], + ["eq_all", "float", "postgresql", "2.5.7", "4.2"], + ["eq_all", "float", "postgresql", "2.5.7", "5.2"], + ["eq_all", "float", "postgresql", "2.5.7", "6.0"], + ["eq_all", "float", "postgresql", "2.4.9", "4.2"], + ["eq_all", "float", "postgresql", "2.4.9", "5.2"], + ["eq_all", "float", "postgresql", "2.4.9", "6.0"], + ["eq_all", "float", "mysql", "2.7.0", "4.2"], + ["eq_all", "float", "mysql", "2.7.0", "5.2"], + ["eq_all", "float", "mysql", "2.7.0", "6.0"], + ["eq_all", "float", "mysql", "2.6.5", "4.2"], + ["eq_all", "float", "mysql", "2.6.5", "5.2"], + ["eq_all", "float", "mysql", "2.6.5", "6.0"], + ["eq_all", "float", "mysql", "2.5.7", "4.2"], + ["eq_all", "float", "mysql", "2.5.7", "5.2"], + ["eq_all", "float", "mysql", "2.5.7", "6.0"], + ["eq_all", "float", "mysql", "2.4.9", "4.2"], + ["eq_all", "float", "mysql", "2.4.9", "5.2"], + ["eq_all", "float", "mysql", "2.4.9", "6.0"], + ["eq_all", "float", "sqlite", "2.7.0", "4.2"], + ["eq_all", "float", "sqlite", "2.7.0", "5.2"], + ["eq_all", "float", "sqlite", "2.7.0", "6.0"], + ["eq_all", "float", "sqlite", "2.6.5", "4.2"], + ["eq_all", "float", "sqlite", "2.6.5", "5.2"], + ["eq_all", "float", "sqlite", "2.6.5", "6.0"], + ["eq_all", "float", "sqlite", "2.5.7", "4.2"], + ["eq_all", "float", "sqlite", "2.5.7", "5.2"], + ["eq_all", "float", "sqlite", "2.5.7", "6.0"], + ["eq_all", "float", "sqlite", "2.4.9", "4.2"], + ["eq_all", "float", "sqlite", "2.4.9", "5.2"], + ["eq_all", "float", "sqlite", "2.4.9", "6.0"], + ["eq_all", "integer", "postgresql", "2.7.0", "4.2"], + ["eq_all", "integer", "postgresql", "2.7.0", "5.2"], + ["eq_all", "integer", "postgresql", "2.7.0", "6.0"], + ["eq_all", "integer", "postgresql", "2.6.5", "4.2"], + ["eq_all", "integer", "postgresql", "2.6.5", "5.2"], + ["eq_all", "integer", "postgresql", "2.6.5", "6.0"], + ["eq_all", "integer", "postgresql", "2.5.7", "4.2"], + ["eq_all", "integer", "postgresql", "2.5.7", "5.2"], + ["eq_all", "integer", "postgresql", "2.5.7", "6.0"], + ["eq_all", "integer", "postgresql", "2.4.9", "4.2"], + ["eq_all", "integer", "postgresql", "2.4.9", "5.2"], + ["eq_all", "integer", "postgresql", "2.4.9", "6.0"], + ["eq_all", "integer", "mysql", "2.7.0", "4.2"], + ["eq_all", "integer", "mysql", "2.7.0", "5.2"], + ["eq_all", "integer", "mysql", "2.7.0", "6.0"], + ["eq_all", "integer", "mysql", "2.6.5", "4.2"], + ["eq_all", "integer", "mysql", "2.6.5", "5.2"], + ["eq_all", "integer", "mysql", "2.6.5", "6.0"], + ["eq_all", "integer", "mysql", "2.5.7", "4.2"], + ["eq_all", "integer", "mysql", "2.5.7", "5.2"], + ["eq_all", "integer", "mysql", "2.5.7", "6.0"], + ["eq_all", "integer", "mysql", "2.4.9", "4.2"], + ["eq_all", "integer", "mysql", "2.4.9", "5.2"], + ["eq_all", "integer", "mysql", "2.4.9", "6.0"], + ["eq_all", "integer", "sqlite", "2.7.0", "4.2"], + ["eq_all", "integer", "sqlite", "2.7.0", "5.2"], + ["eq_all", "integer", "sqlite", "2.7.0", "6.0"], + ["eq_all", "integer", "sqlite", "2.6.5", "4.2"], + ["eq_all", "integer", "sqlite", "2.6.5", "5.2"], + ["eq_all", "integer", "sqlite", "2.6.5", "6.0"], + ["eq_all", "integer", "sqlite", "2.5.7", "4.2"], + ["eq_all", "integer", "sqlite", "2.5.7", "5.2"], + ["eq_all", "integer", "sqlite", "2.5.7", "6.0"], + ["eq_all", "integer", "sqlite", "2.4.9", "4.2"], + ["eq_all", "integer", "sqlite", "2.4.9", "5.2"], + ["eq_all", "integer", "sqlite", "2.4.9", "6.0"], + ["eq_all", "string", "postgresql", "2.7.0", "4.2"], + ["eq_all", "string", "postgresql", "2.7.0", "5.2"], + ["eq_all", "string", "postgresql", "2.7.0", "6.0"], + ["eq_all", "string", "postgresql", "2.6.5", "4.2"], + ["eq_all", "string", "postgresql", "2.6.5", "5.2"], + ["eq_all", "string", "postgresql", "2.6.5", "6.0"], + ["eq_all", "string", "postgresql", "2.5.7", "4.2"], + ["eq_all", "string", "postgresql", "2.5.7", "5.2"], + ["eq_all", "string", "postgresql", "2.5.7", "6.0"], + ["eq_all", "string", "postgresql", "2.4.9", "4.2"], + ["eq_all", "string", "postgresql", "2.4.9", "5.2"], + ["eq_all", "string", "postgresql", "2.4.9", "6.0"], + ["eq_all", "string", "mysql", "2.7.0", "4.2"], + ["eq_all", "string", "mysql", "2.7.0", "5.2"], + ["eq_all", "string", "mysql", "2.7.0", "6.0"], + ["eq_all", "string", "mysql", "2.6.5", "4.2"], + ["eq_all", "string", "mysql", "2.6.5", "5.2"], + ["eq_all", "string", "mysql", "2.6.5", "6.0"], + ["eq_all", "string", "mysql", "2.5.7", "4.2"], + ["eq_all", "string", "mysql", "2.5.7", "5.2"], + ["eq_all", "string", "mysql", "2.5.7", "6.0"], + ["eq_all", "string", "mysql", "2.4.9", "4.2"], + ["eq_all", "string", "mysql", "2.4.9", "5.2"], + ["eq_all", "string", "mysql", "2.4.9", "6.0"], + ["eq_all", "string", "sqlite", "2.7.0", "4.2"], + ["eq_all", "string", "sqlite", "2.7.0", "5.2"], + ["eq_all", "string", "sqlite", "2.7.0", "6.0"], + ["eq_all", "string", "sqlite", "2.6.5", "4.2"], + ["eq_all", "string", "sqlite", "2.6.5", "5.2"], + ["eq_all", "string", "sqlite", "2.6.5", "6.0"], + ["eq_all", "string", "sqlite", "2.5.7", "4.2"], + ["eq_all", "string", "sqlite", "2.5.7", "5.2"], + ["eq_all", "string", "sqlite", "2.5.7", "6.0"], + ["eq_all", "string", "sqlite", "2.4.9", "4.2"], + ["eq_all", "string", "sqlite", "2.4.9", "5.2"], + ["eq_all", "string", "sqlite", "2.4.9", "6.0"], + ["eq_all", "text", "postgresql", "2.7.0", "4.2"], + ["eq_all", "text", "postgresql", "2.7.0", "5.2"], + ["eq_all", "text", "postgresql", "2.7.0", "6.0"], + ["eq_all", "text", "postgresql", "2.6.5", "4.2"], + ["eq_all", "text", "postgresql", "2.6.5", "5.2"], + ["eq_all", "text", "postgresql", "2.6.5", "6.0"], + ["eq_all", "text", "postgresql", "2.5.7", "4.2"], + ["eq_all", "text", "postgresql", "2.5.7", "5.2"], + ["eq_all", "text", "postgresql", "2.5.7", "6.0"], + ["eq_all", "text", "postgresql", "2.4.9", "4.2"], + ["eq_all", "text", "postgresql", "2.4.9", "5.2"], + ["eq_all", "text", "postgresql", "2.4.9", "6.0"], + ["eq_all", "text", "mysql", "2.7.0", "4.2"], + ["eq_all", "text", "mysql", "2.7.0", "5.2"], + ["eq_all", "text", "mysql", "2.7.0", "6.0"], + ["eq_all", "text", "mysql", "2.6.5", "4.2"], + ["eq_all", "text", "mysql", "2.6.5", "5.2"], + ["eq_all", "text", "mysql", "2.6.5", "6.0"], + ["eq_all", "text", "mysql", "2.5.7", "4.2"], + ["eq_all", "text", "mysql", "2.5.7", "5.2"], + ["eq_all", "text", "mysql", "2.5.7", "6.0"], + ["eq_all", "text", "mysql", "2.4.9", "4.2"], + ["eq_all", "text", "mysql", "2.4.9", "5.2"], + ["eq_all", "text", "mysql", "2.4.9", "6.0"], + ["eq_all", "text", "sqlite", "2.7.0", "4.2"], + ["eq_all", "text", "sqlite", "2.7.0", "5.2"], + ["eq_all", "text", "sqlite", "2.7.0", "6.0"], + ["eq_all", "text", "sqlite", "2.6.5", "4.2"], + ["eq_all", "text", "sqlite", "2.6.5", "5.2"], + ["eq_all", "text", "sqlite", "2.6.5", "6.0"], + ["eq_all", "text", "sqlite", "2.5.7", "4.2"], + ["eq_all", "text", "sqlite", "2.5.7", "5.2"], + ["eq_all", "text", "sqlite", "2.5.7", "6.0"], + ["eq_all", "text", "sqlite", "2.4.9", "4.2"], + ["eq_all", "text", "sqlite", "2.4.9", "5.2"], + ["eq_all", "text", "sqlite", "2.4.9", "6.0"], + ["eq_all", "time", "postgresql", "2.7.0", "4.2"], + ["eq_all", "time", "postgresql", "2.7.0", "5.2"], + ["eq_all", "time", "postgresql", "2.7.0", "6.0"], + ["eq_all", "time", "postgresql", "2.6.5", "4.2"], + ["eq_all", "time", "postgresql", "2.6.5", "5.2"], + ["eq_all", "time", "postgresql", "2.6.5", "6.0"], + ["eq_all", "time", "postgresql", "2.5.7", "4.2"], + ["eq_all", "time", "postgresql", "2.5.7", "5.2"], + ["eq_all", "time", "postgresql", "2.5.7", "6.0"], + ["eq_all", "time", "postgresql", "2.4.9", "4.2"], + ["eq_all", "time", "postgresql", "2.4.9", "5.2"], + ["eq_all", "time", "postgresql", "2.4.9", "6.0"], + ["eq_all", "time", "mysql", "2.7.0", "4.2"], + ["eq_all", "time", "mysql", "2.7.0", "5.2"], + ["eq_all", "time", "mysql", "2.7.0", "6.0"], + ["eq_all", "time", "mysql", "2.6.5", "4.2"], + ["eq_all", "time", "mysql", "2.6.5", "5.2"], + ["eq_all", "time", "mysql", "2.6.5", "6.0"], + ["eq_all", "time", "mysql", "2.5.7", "4.2"], + ["eq_all", "time", "mysql", "2.5.7", "5.2"], + ["eq_all", "time", "mysql", "2.5.7", "6.0"], + ["eq_all", "time", "mysql", "2.4.9", "4.2"], + ["eq_all", "time", "mysql", "2.4.9", "5.2"], + ["eq_all", "time", "mysql", "2.4.9", "6.0"], + ["eq_all", "time", "sqlite", "2.7.0", "4.2"], + ["eq_all", "time", "sqlite", "2.7.0", "5.2"], + ["eq_all", "time", "sqlite", "2.7.0", "6.0"], + ["eq_all", "time", "sqlite", "2.6.5", "4.2"], + ["eq_all", "time", "sqlite", "2.6.5", "5.2"], + ["eq_all", "time", "sqlite", "2.6.5", "6.0"], + ["eq_all", "time", "sqlite", "2.5.7", "4.2"], + ["eq_all", "time", "sqlite", "2.5.7", "5.2"], + ["eq_all", "time", "sqlite", "2.5.7", "6.0"], + ["eq_all", "time", "sqlite", "2.4.9", "4.2"], + ["eq_all", "time", "sqlite", "2.4.9", "5.2"], + ["eq_all", "time", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "binary", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "binary", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "binary", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "binary", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "binary", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "binary", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "binary", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "binary", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "binary", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "binary", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "binary", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "binary", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "binary", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "binary", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "binary", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "binary", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "binary", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "binary", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "binary", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "binary", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "binary", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "binary", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "binary", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "binary", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "binary", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "binary", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "binary", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "binary", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "binary", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "binary", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "binary", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "binary", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "binary", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "binary", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "binary", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "binary", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "boolean", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "boolean", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "boolean", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "boolean", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "boolean", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "boolean", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "boolean", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "boolean", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "boolean", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "boolean", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "boolean", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "boolean", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "date", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "date", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "date", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "date", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "date", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "date", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "date", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "date", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "date", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "date", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "date", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "date", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "date", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "date", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "date", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "date", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "date", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "date", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "date", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "date", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "date", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "date", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "date", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "date", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "date", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "date", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "date", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "date", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "date", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "date", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "date", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "date", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "date", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "date", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "date", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "date", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "datetime", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "datetime", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "datetime", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "datetime", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "datetime", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "datetime", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "datetime", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "datetime", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "datetime", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "datetime", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "datetime", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "datetime", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "decimal", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "decimal", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "decimal", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "decimal", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "decimal", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "decimal", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "decimal", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "decimal", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "decimal", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "decimal", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "decimal", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "decimal", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "float", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "float", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "float", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "float", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "float", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "float", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "float", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "float", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "float", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "float", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "float", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "float", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "float", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "float", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "float", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "float", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "float", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "float", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "float", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "float", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "float", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "float", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "float", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "float", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "float", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "float", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "float", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "float", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "float", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "float", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "float", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "float", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "float", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "float", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "float", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "float", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "integer", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "integer", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "integer", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "integer", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "integer", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "integer", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "integer", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "integer", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "integer", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "integer", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "integer", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "integer", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "integer", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "integer", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "integer", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "integer", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "integer", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "integer", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "integer", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "integer", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "integer", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "integer", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "integer", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "integer", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "integer", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "integer", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "integer", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "integer", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "integer", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "integer", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "integer", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "integer", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "integer", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "integer", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "integer", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "integer", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "string", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "string", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "string", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "string", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "string", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "string", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "string", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "string", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "string", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "string", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "string", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "string", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "string", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "string", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "string", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "string", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "string", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "string", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "string", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "string", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "string", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "string", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "string", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "string", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "string", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "string", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "string", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "string", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "string", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "string", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "string", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "string", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "string", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "string", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "string", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "string", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "text", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "text", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "text", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "text", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "text", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "text", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "text", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "text", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "text", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "text", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "text", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "text", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "text", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "text", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "text", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "text", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "text", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "text", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "text", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "text", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "text", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "text", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "text", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "text", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "text", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "text", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "text", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "text", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "text", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "text", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "text", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "text", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "text", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "text", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "text", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "text", "sqlite", "2.4.9", "6.0"], + ["not_eq_any", "time", "postgresql", "2.7.0", "4.2"], + ["not_eq_any", "time", "postgresql", "2.7.0", "5.2"], + ["not_eq_any", "time", "postgresql", "2.7.0", "6.0"], + ["not_eq_any", "time", "postgresql", "2.6.5", "4.2"], + ["not_eq_any", "time", "postgresql", "2.6.5", "5.2"], + ["not_eq_any", "time", "postgresql", "2.6.5", "6.0"], + ["not_eq_any", "time", "postgresql", "2.5.7", "4.2"], + ["not_eq_any", "time", "postgresql", "2.5.7", "5.2"], + ["not_eq_any", "time", "postgresql", "2.5.7", "6.0"], + ["not_eq_any", "time", "postgresql", "2.4.9", "4.2"], + ["not_eq_any", "time", "postgresql", "2.4.9", "5.2"], + ["not_eq_any", "time", "postgresql", "2.4.9", "6.0"], + ["not_eq_any", "time", "mysql", "2.7.0", "4.2"], + ["not_eq_any", "time", "mysql", "2.7.0", "5.2"], + ["not_eq_any", "time", "mysql", "2.7.0", "6.0"], + ["not_eq_any", "time", "mysql", "2.6.5", "4.2"], + ["not_eq_any", "time", "mysql", "2.6.5", "5.2"], + ["not_eq_any", "time", "mysql", "2.6.5", "6.0"], + ["not_eq_any", "time", "mysql", "2.5.7", "4.2"], + ["not_eq_any", "time", "mysql", "2.5.7", "5.2"], + ["not_eq_any", "time", "mysql", "2.5.7", "6.0"], + ["not_eq_any", "time", "mysql", "2.4.9", "4.2"], + ["not_eq_any", "time", "mysql", "2.4.9", "5.2"], + ["not_eq_any", "time", "mysql", "2.4.9", "6.0"], + ["not_eq_any", "time", "sqlite", "2.7.0", "4.2"], + ["not_eq_any", "time", "sqlite", "2.7.0", "5.2"], + ["not_eq_any", "time", "sqlite", "2.7.0", "6.0"], + ["not_eq_any", "time", "sqlite", "2.6.5", "4.2"], + ["not_eq_any", "time", "sqlite", "2.6.5", "5.2"], + ["not_eq_any", "time", "sqlite", "2.6.5", "6.0"], + ["not_eq_any", "time", "sqlite", "2.5.7", "4.2"], + ["not_eq_any", "time", "sqlite", "2.5.7", "5.2"], + ["not_eq_any", "time", "sqlite", "2.5.7", "6.0"], + ["not_eq_any", "time", "sqlite", "2.4.9", "4.2"], + ["not_eq_any", "time", "sqlite", "2.4.9", "5.2"], + ["not_eq_any", "time", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "binary", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "binary", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "binary", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "binary", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "binary", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "binary", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "binary", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "binary", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "binary", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "binary", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "binary", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "binary", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "binary", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "binary", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "binary", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "binary", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "binary", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "binary", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "binary", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "binary", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "binary", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "binary", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "binary", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "binary", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "binary", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "binary", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "binary", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "binary", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "binary", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "binary", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "binary", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "binary", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "binary", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "binary", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "binary", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "binary", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "boolean", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "boolean", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "boolean", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "boolean", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "boolean", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "boolean", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "boolean", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "boolean", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "boolean", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "boolean", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "boolean", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "boolean", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "date", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "date", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "date", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "date", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "date", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "date", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "date", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "date", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "date", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "date", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "date", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "date", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "date", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "date", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "date", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "date", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "date", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "date", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "date", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "date", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "date", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "date", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "date", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "date", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "date", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "date", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "date", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "date", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "date", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "date", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "date", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "date", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "date", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "date", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "date", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "date", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "datetime", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "datetime", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "datetime", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "datetime", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "datetime", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "datetime", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "datetime", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "datetime", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "datetime", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "datetime", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "datetime", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "datetime", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "decimal", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "decimal", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "decimal", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "decimal", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "decimal", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "decimal", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "decimal", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "decimal", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "decimal", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "decimal", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "decimal", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "decimal", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "float", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "float", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "float", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "float", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "float", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "float", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "float", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "float", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "float", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "float", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "float", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "float", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "float", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "float", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "float", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "float", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "float", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "float", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "float", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "float", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "float", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "float", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "float", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "float", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "float", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "float", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "float", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "float", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "float", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "float", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "float", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "float", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "float", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "float", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "float", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "float", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "integer", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "integer", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "integer", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "integer", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "integer", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "integer", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "integer", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "integer", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "integer", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "integer", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "integer", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "integer", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "integer", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "integer", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "integer", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "integer", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "integer", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "integer", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "integer", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "integer", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "integer", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "integer", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "integer", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "integer", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "integer", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "integer", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "integer", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "integer", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "integer", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "integer", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "integer", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "integer", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "integer", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "integer", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "integer", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "integer", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "string", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "string", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "string", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "string", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "string", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "string", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "string", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "string", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "string", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "string", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "string", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "string", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "string", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "string", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "string", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "string", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "string", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "string", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "string", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "string", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "string", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "string", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "string", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "string", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "string", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "string", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "string", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "string", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "string", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "string", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "string", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "string", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "string", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "string", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "string", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "string", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "text", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "text", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "text", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "text", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "text", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "text", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "text", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "text", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "text", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "text", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "text", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "text", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "text", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "text", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "text", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "text", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "text", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "text", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "text", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "text", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "text", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "text", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "text", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "text", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "text", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "text", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "text", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "text", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "text", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "text", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "text", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "text", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "text", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "text", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "text", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "text", "sqlite", "2.4.9", "6.0"], + ["not_eq_all", "time", "postgresql", "2.7.0", "4.2"], + ["not_eq_all", "time", "postgresql", "2.7.0", "5.2"], + ["not_eq_all", "time", "postgresql", "2.7.0", "6.0"], + ["not_eq_all", "time", "postgresql", "2.6.5", "4.2"], + ["not_eq_all", "time", "postgresql", "2.6.5", "5.2"], + ["not_eq_all", "time", "postgresql", "2.6.5", "6.0"], + ["not_eq_all", "time", "postgresql", "2.5.7", "4.2"], + ["not_eq_all", "time", "postgresql", "2.5.7", "5.2"], + ["not_eq_all", "time", "postgresql", "2.5.7", "6.0"], + ["not_eq_all", "time", "postgresql", "2.4.9", "4.2"], + ["not_eq_all", "time", "postgresql", "2.4.9", "5.2"], + ["not_eq_all", "time", "postgresql", "2.4.9", "6.0"], + ["not_eq_all", "time", "mysql", "2.7.0", "4.2"], + ["not_eq_all", "time", "mysql", "2.7.0", "5.2"], + ["not_eq_all", "time", "mysql", "2.7.0", "6.0"], + ["not_eq_all", "time", "mysql", "2.6.5", "4.2"], + ["not_eq_all", "time", "mysql", "2.6.5", "5.2"], + ["not_eq_all", "time", "mysql", "2.6.5", "6.0"], + ["not_eq_all", "time", "mysql", "2.5.7", "4.2"], + ["not_eq_all", "time", "mysql", "2.5.7", "5.2"], + ["not_eq_all", "time", "mysql", "2.5.7", "6.0"], + ["not_eq_all", "time", "mysql", "2.4.9", "4.2"], + ["not_eq_all", "time", "mysql", "2.4.9", "5.2"], + ["not_eq_all", "time", "mysql", "2.4.9", "6.0"], + ["not_eq_all", "time", "sqlite", "2.7.0", "4.2"], + ["not_eq_all", "time", "sqlite", "2.7.0", "5.2"], + ["not_eq_all", "time", "sqlite", "2.7.0", "6.0"], + ["not_eq_all", "time", "sqlite", "2.6.5", "4.2"], + ["not_eq_all", "time", "sqlite", "2.6.5", "5.2"], + ["not_eq_all", "time", "sqlite", "2.6.5", "6.0"], + ["not_eq_all", "time", "sqlite", "2.5.7", "4.2"], + ["not_eq_all", "time", "sqlite", "2.5.7", "5.2"], + ["not_eq_all", "time", "sqlite", "2.5.7", "6.0"], + ["not_eq_all", "time", "sqlite", "2.4.9", "4.2"], + ["not_eq_all", "time", "sqlite", "2.4.9", "5.2"], + ["not_eq_all", "time", "sqlite", "2.4.9", "6.0"], + ["in", "binary", "postgresql", "2.7.0", "4.2"], + ["in", "binary", "postgresql", "2.7.0", "5.2"], + ["in", "binary", "postgresql", "2.7.0", "6.0"], + ["in", "binary", "postgresql", "2.6.5", "4.2"], + ["in", "binary", "postgresql", "2.6.5", "5.2"], + ["in", "binary", "postgresql", "2.6.5", "6.0"], + ["in", "binary", "postgresql", "2.5.7", "4.2"], + ["in", "binary", "postgresql", "2.5.7", "5.2"], + ["in", "binary", "postgresql", "2.5.7", "6.0"], + ["in", "binary", "postgresql", "2.4.9", "4.2"], + ["in", "binary", "postgresql", "2.4.9", "5.2"], + ["in", "binary", "postgresql", "2.4.9", "6.0"], + ["in", "binary", "mysql", "2.7.0", "4.2"], + ["in", "binary", "mysql", "2.7.0", "5.2"], + ["in", "binary", "mysql", "2.7.0", "6.0"], + ["in", "binary", "mysql", "2.6.5", "4.2"], + ["in", "binary", "mysql", "2.6.5", "5.2"], + ["in", "binary", "mysql", "2.6.5", "6.0"], + ["in", "binary", "mysql", "2.5.7", "4.2"], + ["in", "binary", "mysql", "2.5.7", "5.2"], + ["in", "binary", "mysql", "2.5.7", "6.0"], + ["in", "binary", "mysql", "2.4.9", "4.2"], + ["in", "binary", "mysql", "2.4.9", "5.2"], + ["in", "binary", "mysql", "2.4.9", "6.0"], + ["in", "binary", "sqlite", "2.7.0", "4.2"], + ["in", "binary", "sqlite", "2.7.0", "5.2"], + ["in", "binary", "sqlite", "2.7.0", "6.0"], + ["in", "binary", "sqlite", "2.6.5", "4.2"], + ["in", "binary", "sqlite", "2.6.5", "5.2"], + ["in", "binary", "sqlite", "2.6.5", "6.0"], + ["in", "binary", "sqlite", "2.5.7", "4.2"], + ["in", "binary", "sqlite", "2.5.7", "5.2"], + ["in", "binary", "sqlite", "2.5.7", "6.0"], + ["in", "binary", "sqlite", "2.4.9", "4.2"], + ["in", "binary", "sqlite", "2.4.9", "5.2"], + ["in", "binary", "sqlite", "2.4.9", "6.0"], + ["in", "boolean", "postgresql", "2.7.0", "4.2"], + ["in", "boolean", "postgresql", "2.7.0", "5.2"], + ["in", "boolean", "postgresql", "2.7.0", "6.0"], + ["in", "boolean", "postgresql", "2.6.5", "4.2"], + ["in", "boolean", "postgresql", "2.6.5", "5.2"], + ["in", "boolean", "postgresql", "2.6.5", "6.0"], + ["in", "boolean", "postgresql", "2.5.7", "4.2"], + ["in", "boolean", "postgresql", "2.5.7", "5.2"], + ["in", "boolean", "postgresql", "2.5.7", "6.0"], + ["in", "boolean", "postgresql", "2.4.9", "4.2"], + ["in", "boolean", "postgresql", "2.4.9", "5.2"], + ["in", "boolean", "postgresql", "2.4.9", "6.0"], + ["in", "boolean", "mysql", "2.7.0", "4.2"], + ["in", "boolean", "mysql", "2.7.0", "5.2"], + ["in", "boolean", "mysql", "2.7.0", "6.0"], + ["in", "boolean", "mysql", "2.6.5", "4.2"], + ["in", "boolean", "mysql", "2.6.5", "5.2"], + ["in", "boolean", "mysql", "2.6.5", "6.0"], + ["in", "boolean", "mysql", "2.5.7", "4.2"], + ["in", "boolean", "mysql", "2.5.7", "5.2"], + ["in", "boolean", "mysql", "2.5.7", "6.0"], + ["in", "boolean", "mysql", "2.4.9", "4.2"], + ["in", "boolean", "mysql", "2.4.9", "5.2"], + ["in", "boolean", "mysql", "2.4.9", "6.0"], + ["in", "boolean", "sqlite", "2.7.0", "4.2"], + ["in", "boolean", "sqlite", "2.7.0", "5.2"], + ["in", "boolean", "sqlite", "2.7.0", "6.0"], + ["in", "boolean", "sqlite", "2.6.5", "4.2"], + ["in", "boolean", "sqlite", "2.6.5", "5.2"], + ["in", "boolean", "sqlite", "2.6.5", "6.0"], + ["in", "boolean", "sqlite", "2.5.7", "4.2"], + ["in", "boolean", "sqlite", "2.5.7", "5.2"], + ["in", "boolean", "sqlite", "2.5.7", "6.0"], + ["in", "boolean", "sqlite", "2.4.9", "4.2"], + ["in", "boolean", "sqlite", "2.4.9", "5.2"], + ["in", "boolean", "sqlite", "2.4.9", "6.0"], + ["in", "date", "postgresql", "2.7.0", "4.2"], + ["in", "date", "postgresql", "2.7.0", "5.2"], + ["in", "date", "postgresql", "2.7.0", "6.0"], + ["in", "date", "postgresql", "2.6.5", "4.2"], + ["in", "date", "postgresql", "2.6.5", "5.2"], + ["in", "date", "postgresql", "2.6.5", "6.0"], + ["in", "date", "postgresql", "2.5.7", "4.2"], + ["in", "date", "postgresql", "2.5.7", "5.2"], + ["in", "date", "postgresql", "2.5.7", "6.0"], + ["in", "date", "postgresql", "2.4.9", "4.2"], + ["in", "date", "postgresql", "2.4.9", "5.2"], + ["in", "date", "postgresql", "2.4.9", "6.0"], + ["in", "date", "mysql", "2.7.0", "4.2"], + ["in", "date", "mysql", "2.7.0", "5.2"], + ["in", "date", "mysql", "2.7.0", "6.0"], + ["in", "date", "mysql", "2.6.5", "4.2"], + ["in", "date", "mysql", "2.6.5", "5.2"], + ["in", "date", "mysql", "2.6.5", "6.0"], + ["in", "date", "mysql", "2.5.7", "4.2"], + ["in", "date", "mysql", "2.5.7", "5.2"], + ["in", "date", "mysql", "2.5.7", "6.0"], + ["in", "date", "mysql", "2.4.9", "4.2"], + ["in", "date", "mysql", "2.4.9", "5.2"], + ["in", "date", "mysql", "2.4.9", "6.0"], + ["in", "date", "sqlite", "2.7.0", "4.2"], + ["in", "date", "sqlite", "2.7.0", "5.2"], + ["in", "date", "sqlite", "2.7.0", "6.0"], + ["in", "date", "sqlite", "2.6.5", "4.2"], + ["in", "date", "sqlite", "2.6.5", "5.2"], + ["in", "date", "sqlite", "2.6.5", "6.0"], + ["in", "date", "sqlite", "2.5.7", "4.2"], + ["in", "date", "sqlite", "2.5.7", "5.2"], + ["in", "date", "sqlite", "2.5.7", "6.0"], + ["in", "date", "sqlite", "2.4.9", "4.2"], + ["in", "date", "sqlite", "2.4.9", "5.2"], + ["in", "date", "sqlite", "2.4.9", "6.0"], + ["in", "datetime", "postgresql", "2.7.0", "4.2"], + ["in", "datetime", "postgresql", "2.7.0", "5.2"], + ["in", "datetime", "postgresql", "2.7.0", "6.0"], + ["in", "datetime", "postgresql", "2.6.5", "4.2"], + ["in", "datetime", "postgresql", "2.6.5", "5.2"], + ["in", "datetime", "postgresql", "2.6.5", "6.0"], + ["in", "datetime", "postgresql", "2.5.7", "4.2"], + ["in", "datetime", "postgresql", "2.5.7", "5.2"], + ["in", "datetime", "postgresql", "2.5.7", "6.0"], + ["in", "datetime", "postgresql", "2.4.9", "4.2"], + ["in", "datetime", "postgresql", "2.4.9", "5.2"], + ["in", "datetime", "postgresql", "2.4.9", "6.0"], + ["in", "datetime", "mysql", "2.7.0", "4.2"], + ["in", "datetime", "mysql", "2.7.0", "5.2"], + ["in", "datetime", "mysql", "2.7.0", "6.0"], + ["in", "datetime", "mysql", "2.6.5", "4.2"], + ["in", "datetime", "mysql", "2.6.5", "5.2"], + ["in", "datetime", "mysql", "2.6.5", "6.0"], + ["in", "datetime", "mysql", "2.5.7", "4.2"], + ["in", "datetime", "mysql", "2.5.7", "5.2"], + ["in", "datetime", "mysql", "2.5.7", "6.0"], + ["in", "datetime", "mysql", "2.4.9", "4.2"], + ["in", "datetime", "mysql", "2.4.9", "5.2"], + ["in", "datetime", "mysql", "2.4.9", "6.0"], + ["in", "datetime", "sqlite", "2.7.0", "4.2"], + ["in", "datetime", "sqlite", "2.7.0", "5.2"], + ["in", "datetime", "sqlite", "2.7.0", "6.0"], + ["in", "datetime", "sqlite", "2.6.5", "4.2"], + ["in", "datetime", "sqlite", "2.6.5", "5.2"], + ["in", "datetime", "sqlite", "2.6.5", "6.0"], + ["in", "datetime", "sqlite", "2.5.7", "4.2"], + ["in", "datetime", "sqlite", "2.5.7", "5.2"], + ["in", "datetime", "sqlite", "2.5.7", "6.0"], + ["in", "datetime", "sqlite", "2.4.9", "4.2"], + ["in", "datetime", "sqlite", "2.4.9", "5.2"], + ["in", "datetime", "sqlite", "2.4.9", "6.0"], + ["in", "decimal", "postgresql", "2.7.0", "4.2"], + ["in", "decimal", "postgresql", "2.7.0", "5.2"], + ["in", "decimal", "postgresql", "2.7.0", "6.0"], + ["in", "decimal", "postgresql", "2.6.5", "4.2"], + ["in", "decimal", "postgresql", "2.6.5", "5.2"], + ["in", "decimal", "postgresql", "2.6.5", "6.0"], + ["in", "decimal", "postgresql", "2.5.7", "4.2"], + ["in", "decimal", "postgresql", "2.5.7", "5.2"], + ["in", "decimal", "postgresql", "2.5.7", "6.0"], + ["in", "decimal", "postgresql", "2.4.9", "4.2"], + ["in", "decimal", "postgresql", "2.4.9", "5.2"], + ["in", "decimal", "postgresql", "2.4.9", "6.0"], + ["in", "decimal", "mysql", "2.7.0", "4.2"], + ["in", "decimal", "mysql", "2.7.0", "5.2"], + ["in", "decimal", "mysql", "2.7.0", "6.0"], + ["in", "decimal", "mysql", "2.6.5", "4.2"], + ["in", "decimal", "mysql", "2.6.5", "5.2"], + ["in", "decimal", "mysql", "2.6.5", "6.0"], + ["in", "decimal", "mysql", "2.5.7", "4.2"], + ["in", "decimal", "mysql", "2.5.7", "5.2"], + ["in", "decimal", "mysql", "2.5.7", "6.0"], + ["in", "decimal", "mysql", "2.4.9", "4.2"], + ["in", "decimal", "mysql", "2.4.9", "5.2"], + ["in", "decimal", "mysql", "2.4.9", "6.0"], + ["in", "decimal", "sqlite", "2.7.0", "4.2"], + ["in", "decimal", "sqlite", "2.7.0", "5.2"], + ["in", "decimal", "sqlite", "2.7.0", "6.0"], + ["in", "decimal", "sqlite", "2.6.5", "4.2"], + ["in", "decimal", "sqlite", "2.6.5", "5.2"], + ["in", "decimal", "sqlite", "2.6.5", "6.0"], + ["in", "decimal", "sqlite", "2.5.7", "4.2"], + ["in", "decimal", "sqlite", "2.5.7", "5.2"], + ["in", "decimal", "sqlite", "2.5.7", "6.0"], + ["in", "decimal", "sqlite", "2.4.9", "4.2"], + ["in", "decimal", "sqlite", "2.4.9", "5.2"], + ["in", "decimal", "sqlite", "2.4.9", "6.0"], + ["in", "float", "postgresql", "2.7.0", "4.2"], + ["in", "float", "postgresql", "2.7.0", "5.2"], + ["in", "float", "postgresql", "2.7.0", "6.0"], + ["in", "float", "postgresql", "2.6.5", "4.2"], + ["in", "float", "postgresql", "2.6.5", "5.2"], + ["in", "float", "postgresql", "2.6.5", "6.0"], + ["in", "float", "postgresql", "2.5.7", "4.2"], + ["in", "float", "postgresql", "2.5.7", "5.2"], + ["in", "float", "postgresql", "2.5.7", "6.0"], + ["in", "float", "postgresql", "2.4.9", "4.2"], + ["in", "float", "postgresql", "2.4.9", "5.2"], + ["in", "float", "postgresql", "2.4.9", "6.0"], + ["in", "float", "mysql", "2.7.0", "4.2"], + ["in", "float", "mysql", "2.7.0", "5.2"], + ["in", "float", "mysql", "2.7.0", "6.0"], + ["in", "float", "mysql", "2.6.5", "4.2"], + ["in", "float", "mysql", "2.6.5", "5.2"], + ["in", "float", "mysql", "2.6.5", "6.0"], + ["in", "float", "mysql", "2.5.7", "4.2"], + ["in", "float", "mysql", "2.5.7", "5.2"], + ["in", "float", "mysql", "2.5.7", "6.0"], + ["in", "float", "mysql", "2.4.9", "4.2"], + ["in", "float", "mysql", "2.4.9", "5.2"], + ["in", "float", "mysql", "2.4.9", "6.0"], + ["in", "float", "sqlite", "2.7.0", "4.2"], + ["in", "float", "sqlite", "2.7.0", "5.2"], + ["in", "float", "sqlite", "2.7.0", "6.0"], + ["in", "float", "sqlite", "2.6.5", "4.2"], + ["in", "float", "sqlite", "2.6.5", "5.2"], + ["in", "float", "sqlite", "2.6.5", "6.0"], + ["in", "float", "sqlite", "2.5.7", "4.2"], + ["in", "float", "sqlite", "2.5.7", "5.2"], + ["in", "float", "sqlite", "2.5.7", "6.0"], + ["in", "float", "sqlite", "2.4.9", "4.2"], + ["in", "float", "sqlite", "2.4.9", "5.2"], + ["in", "float", "sqlite", "2.4.9", "6.0"], + ["in", "integer", "postgresql", "2.7.0", "4.2"], + ["in", "integer", "postgresql", "2.7.0", "5.2"], + ["in", "integer", "postgresql", "2.7.0", "6.0"], + ["in", "integer", "postgresql", "2.6.5", "4.2"], + ["in", "integer", "postgresql", "2.6.5", "5.2"], + ["in", "integer", "postgresql", "2.6.5", "6.0"], + ["in", "integer", "postgresql", "2.5.7", "4.2"], + ["in", "integer", "postgresql", "2.5.7", "5.2"], + ["in", "integer", "postgresql", "2.5.7", "6.0"], + ["in", "integer", "postgresql", "2.4.9", "4.2"], + ["in", "integer", "postgresql", "2.4.9", "5.2"], + ["in", "integer", "postgresql", "2.4.9", "6.0"], + ["in", "integer", "mysql", "2.7.0", "4.2"], + ["in", "integer", "mysql", "2.7.0", "5.2"], + ["in", "integer", "mysql", "2.7.0", "6.0"], + ["in", "integer", "mysql", "2.6.5", "4.2"], + ["in", "integer", "mysql", "2.6.5", "5.2"], + ["in", "integer", "mysql", "2.6.5", "6.0"], + ["in", "integer", "mysql", "2.5.7", "4.2"], + ["in", "integer", "mysql", "2.5.7", "5.2"], + ["in", "integer", "mysql", "2.5.7", "6.0"], + ["in", "integer", "mysql", "2.4.9", "4.2"], + ["in", "integer", "mysql", "2.4.9", "5.2"], + ["in", "integer", "mysql", "2.4.9", "6.0"], + ["in", "integer", "sqlite", "2.7.0", "4.2"], + ["in", "integer", "sqlite", "2.7.0", "5.2"], + ["in", "integer", "sqlite", "2.7.0", "6.0"], + ["in", "integer", "sqlite", "2.6.5", "4.2"], + ["in", "integer", "sqlite", "2.6.5", "5.2"], + ["in", "integer", "sqlite", "2.6.5", "6.0"], + ["in", "integer", "sqlite", "2.5.7", "4.2"], + ["in", "integer", "sqlite", "2.5.7", "5.2"], + ["in", "integer", "sqlite", "2.5.7", "6.0"], + ["in", "integer", "sqlite", "2.4.9", "4.2"], + ["in", "integer", "sqlite", "2.4.9", "5.2"], + ["in", "integer", "sqlite", "2.4.9", "6.0"], + ["in", "string", "postgresql", "2.7.0", "4.2"], + ["in", "string", "postgresql", "2.7.0", "5.2"], + ["in", "string", "postgresql", "2.7.0", "6.0"], + ["in", "string", "postgresql", "2.6.5", "4.2"], + ["in", "string", "postgresql", "2.6.5", "5.2"], + ["in", "string", "postgresql", "2.6.5", "6.0"], + ["in", "string", "postgresql", "2.5.7", "4.2"], + ["in", "string", "postgresql", "2.5.7", "5.2"], + ["in", "string", "postgresql", "2.5.7", "6.0"], + ["in", "string", "postgresql", "2.4.9", "4.2"], + ["in", "string", "postgresql", "2.4.9", "5.2"], + ["in", "string", "postgresql", "2.4.9", "6.0"], + ["in", "string", "mysql", "2.7.0", "4.2"], + ["in", "string", "mysql", "2.7.0", "5.2"], + ["in", "string", "mysql", "2.7.0", "6.0"], + ["in", "string", "mysql", "2.6.5", "4.2"], + ["in", "string", "mysql", "2.6.5", "5.2"], + ["in", "string", "mysql", "2.6.5", "6.0"], + ["in", "string", "mysql", "2.5.7", "4.2"], + ["in", "string", "mysql", "2.5.7", "5.2"], + ["in", "string", "mysql", "2.5.7", "6.0"], + ["in", "string", "mysql", "2.4.9", "4.2"], + ["in", "string", "mysql", "2.4.9", "5.2"], + ["in", "string", "mysql", "2.4.9", "6.0"], + ["in", "string", "sqlite", "2.7.0", "4.2"], + ["in", "string", "sqlite", "2.7.0", "5.2"], + ["in", "string", "sqlite", "2.7.0", "6.0"], + ["in", "string", "sqlite", "2.6.5", "4.2"], + ["in", "string", "sqlite", "2.6.5", "5.2"], + ["in", "string", "sqlite", "2.6.5", "6.0"], + ["in", "string", "sqlite", "2.5.7", "4.2"], + ["in", "string", "sqlite", "2.5.7", "5.2"], + ["in", "string", "sqlite", "2.5.7", "6.0"], + ["in", "string", "sqlite", "2.4.9", "4.2"], + ["in", "string", "sqlite", "2.4.9", "5.2"], + ["in", "string", "sqlite", "2.4.9", "6.0"], + ["in", "text", "postgresql", "2.7.0", "4.2"], + ["in", "text", "postgresql", "2.7.0", "5.2"], + ["in", "text", "postgresql", "2.7.0", "6.0"], + ["in", "text", "postgresql", "2.6.5", "4.2"], + ["in", "text", "postgresql", "2.6.5", "5.2"], + ["in", "text", "postgresql", "2.6.5", "6.0"], + ["in", "text", "postgresql", "2.5.7", "4.2"], + ["in", "text", "postgresql", "2.5.7", "5.2"], + ["in", "text", "postgresql", "2.5.7", "6.0"], + ["in", "text", "postgresql", "2.4.9", "4.2"], + ["in", "text", "postgresql", "2.4.9", "5.2"], + ["in", "text", "postgresql", "2.4.9", "6.0"], + ["in", "text", "mysql", "2.7.0", "4.2"], + ["in", "text", "mysql", "2.7.0", "5.2"], + ["in", "text", "mysql", "2.7.0", "6.0"], + ["in", "text", "mysql", "2.6.5", "4.2"], + ["in", "text", "mysql", "2.6.5", "5.2"], + ["in", "text", "mysql", "2.6.5", "6.0"], + ["in", "text", "mysql", "2.5.7", "4.2"], + ["in", "text", "mysql", "2.5.7", "5.2"], + ["in", "text", "mysql", "2.5.7", "6.0"], + ["in", "text", "mysql", "2.4.9", "4.2"], + ["in", "text", "mysql", "2.4.9", "5.2"], + ["in", "text", "mysql", "2.4.9", "6.0"], + ["in", "text", "sqlite", "2.7.0", "4.2"], + ["in", "text", "sqlite", "2.7.0", "5.2"], + ["in", "text", "sqlite", "2.7.0", "6.0"], + ["in", "text", "sqlite", "2.6.5", "4.2"], + ["in", "text", "sqlite", "2.6.5", "5.2"], + ["in", "text", "sqlite", "2.6.5", "6.0"], + ["in", "text", "sqlite", "2.5.7", "4.2"], + ["in", "text", "sqlite", "2.5.7", "5.2"], + ["in", "text", "sqlite", "2.5.7", "6.0"], + ["in", "text", "sqlite", "2.4.9", "4.2"], + ["in", "text", "sqlite", "2.4.9", "5.2"], + ["in", "text", "sqlite", "2.4.9", "6.0"], + ["in", "time", "postgresql", "2.7.0", "4.2"], + ["in", "time", "postgresql", "2.7.0", "5.2"], + ["in", "time", "postgresql", "2.7.0", "6.0"], + ["in", "time", "postgresql", "2.6.5", "4.2"], + ["in", "time", "postgresql", "2.6.5", "5.2"], + ["in", "time", "postgresql", "2.6.5", "6.0"], + ["in", "time", "postgresql", "2.5.7", "4.2"], + ["in", "time", "postgresql", "2.5.7", "5.2"], + ["in", "time", "postgresql", "2.5.7", "6.0"], + ["in", "time", "postgresql", "2.4.9", "4.2"], + ["in", "time", "postgresql", "2.4.9", "5.2"], + ["in", "time", "postgresql", "2.4.9", "6.0"], + ["in", "time", "mysql", "2.7.0", "4.2"], + ["in", "time", "mysql", "2.7.0", "5.2"], + ["in", "time", "mysql", "2.7.0", "6.0"], + ["in", "time", "mysql", "2.6.5", "4.2"], + ["in", "time", "mysql", "2.6.5", "5.2"], + ["in", "time", "mysql", "2.6.5", "6.0"], + ["in", "time", "mysql", "2.5.7", "4.2"], + ["in", "time", "mysql", "2.5.7", "5.2"], + ["in", "time", "mysql", "2.5.7", "6.0"], + ["in", "time", "mysql", "2.4.9", "4.2"], + ["in", "time", "mysql", "2.4.9", "5.2"], + ["in", "time", "mysql", "2.4.9", "6.0"], + ["in", "time", "sqlite", "2.7.0", "4.2"], + ["in", "time", "sqlite", "2.7.0", "5.2"], + ["in", "time", "sqlite", "2.7.0", "6.0"], + ["in", "time", "sqlite", "2.6.5", "4.2"], + ["in", "time", "sqlite", "2.6.5", "5.2"], + ["in", "time", "sqlite", "2.6.5", "6.0"], + ["in", "time", "sqlite", "2.5.7", "4.2"], + ["in", "time", "sqlite", "2.5.7", "5.2"], + ["in", "time", "sqlite", "2.5.7", "6.0"], + ["in", "time", "sqlite", "2.4.9", "4.2"], + ["in", "time", "sqlite", "2.4.9", "5.2"], + ["in", "time", "sqlite", "2.4.9", "6.0"], + ["not_in", "binary", "postgresql", "2.7.0", "4.2"], + ["not_in", "binary", "postgresql", "2.7.0", "5.2"], + ["not_in", "binary", "postgresql", "2.7.0", "6.0"], + ["not_in", "binary", "postgresql", "2.6.5", "4.2"], + ["not_in", "binary", "postgresql", "2.6.5", "5.2"], + ["not_in", "binary", "postgresql", "2.6.5", "6.0"], + ["not_in", "binary", "postgresql", "2.5.7", "4.2"], + ["not_in", "binary", "postgresql", "2.5.7", "5.2"], + ["not_in", "binary", "postgresql", "2.5.7", "6.0"], + ["not_in", "binary", "postgresql", "2.4.9", "4.2"], + ["not_in", "binary", "postgresql", "2.4.9", "5.2"], + ["not_in", "binary", "postgresql", "2.4.9", "6.0"], + ["not_in", "binary", "mysql", "2.7.0", "4.2"], + ["not_in", "binary", "mysql", "2.7.0", "5.2"], + ["not_in", "binary", "mysql", "2.7.0", "6.0"], + ["not_in", "binary", "mysql", "2.6.5", "4.2"], + ["not_in", "binary", "mysql", "2.6.5", "5.2"], + ["not_in", "binary", "mysql", "2.6.5", "6.0"], + ["not_in", "binary", "mysql", "2.5.7", "4.2"], + ["not_in", "binary", "mysql", "2.5.7", "5.2"], + ["not_in", "binary", "mysql", "2.5.7", "6.0"], + ["not_in", "binary", "mysql", "2.4.9", "4.2"], + ["not_in", "binary", "mysql", "2.4.9", "5.2"], + ["not_in", "binary", "mysql", "2.4.9", "6.0"], + ["not_in", "binary", "sqlite", "2.7.0", "4.2"], + ["not_in", "binary", "sqlite", "2.7.0", "5.2"], + ["not_in", "binary", "sqlite", "2.7.0", "6.0"], + ["not_in", "binary", "sqlite", "2.6.5", "4.2"], + ["not_in", "binary", "sqlite", "2.6.5", "5.2"], + ["not_in", "binary", "sqlite", "2.6.5", "6.0"], + ["not_in", "binary", "sqlite", "2.5.7", "4.2"], + ["not_in", "binary", "sqlite", "2.5.7", "5.2"], + ["not_in", "binary", "sqlite", "2.5.7", "6.0"], + ["not_in", "binary", "sqlite", "2.4.9", "4.2"], + ["not_in", "binary", "sqlite", "2.4.9", "5.2"], + ["not_in", "binary", "sqlite", "2.4.9", "6.0"], + ["not_in", "boolean", "postgresql", "2.7.0", "4.2"], + ["not_in", "boolean", "postgresql", "2.7.0", "5.2"], + ["not_in", "boolean", "postgresql", "2.7.0", "6.0"], + ["not_in", "boolean", "postgresql", "2.6.5", "4.2"], + ["not_in", "boolean", "postgresql", "2.6.5", "5.2"], + ["not_in", "boolean", "postgresql", "2.6.5", "6.0"], + ["not_in", "boolean", "postgresql", "2.5.7", "4.2"], + ["not_in", "boolean", "postgresql", "2.5.7", "5.2"], + ["not_in", "boolean", "postgresql", "2.5.7", "6.0"], + ["not_in", "boolean", "postgresql", "2.4.9", "4.2"], + ["not_in", "boolean", "postgresql", "2.4.9", "5.2"], + ["not_in", "boolean", "postgresql", "2.4.9", "6.0"], + ["not_in", "boolean", "mysql", "2.7.0", "4.2"], + ["not_in", "boolean", "mysql", "2.7.0", "5.2"], + ["not_in", "boolean", "mysql", "2.7.0", "6.0"], + ["not_in", "boolean", "mysql", "2.6.5", "4.2"], + ["not_in", "boolean", "mysql", "2.6.5", "5.2"], + ["not_in", "boolean", "mysql", "2.6.5", "6.0"], + ["not_in", "boolean", "mysql", "2.5.7", "4.2"], + ["not_in", "boolean", "mysql", "2.5.7", "5.2"], + ["not_in", "boolean", "mysql", "2.5.7", "6.0"], + ["not_in", "boolean", "mysql", "2.4.9", "4.2"], + ["not_in", "boolean", "mysql", "2.4.9", "5.2"], + ["not_in", "boolean", "mysql", "2.4.9", "6.0"], + ["not_in", "boolean", "sqlite", "2.7.0", "4.2"], + ["not_in", "boolean", "sqlite", "2.7.0", "5.2"], + ["not_in", "boolean", "sqlite", "2.7.0", "6.0"], + ["not_in", "boolean", "sqlite", "2.6.5", "4.2"], + ["not_in", "boolean", "sqlite", "2.6.5", "5.2"], + ["not_in", "boolean", "sqlite", "2.6.5", "6.0"], + ["not_in", "boolean", "sqlite", "2.5.7", "4.2"], + ["not_in", "boolean", "sqlite", "2.5.7", "5.2"], + ["not_in", "boolean", "sqlite", "2.5.7", "6.0"], + ["not_in", "boolean", "sqlite", "2.4.9", "4.2"], + ["not_in", "boolean", "sqlite", "2.4.9", "5.2"], + ["not_in", "boolean", "sqlite", "2.4.9", "6.0"], + ["not_in", "date", "postgresql", "2.7.0", "4.2"], + ["not_in", "date", "postgresql", "2.7.0", "5.2"], + ["not_in", "date", "postgresql", "2.7.0", "6.0"], + ["not_in", "date", "postgresql", "2.6.5", "4.2"], + ["not_in", "date", "postgresql", "2.6.5", "5.2"], + ["not_in", "date", "postgresql", "2.6.5", "6.0"], + ["not_in", "date", "postgresql", "2.5.7", "4.2"], + ["not_in", "date", "postgresql", "2.5.7", "5.2"], + ["not_in", "date", "postgresql", "2.5.7", "6.0"], + ["not_in", "date", "postgresql", "2.4.9", "4.2"], + ["not_in", "date", "postgresql", "2.4.9", "5.2"], + ["not_in", "date", "postgresql", "2.4.9", "6.0"], + ["not_in", "date", "mysql", "2.7.0", "4.2"], + ["not_in", "date", "mysql", "2.7.0", "5.2"], + ["not_in", "date", "mysql", "2.7.0", "6.0"], + ["not_in", "date", "mysql", "2.6.5", "4.2"], + ["not_in", "date", "mysql", "2.6.5", "5.2"], + ["not_in", "date", "mysql", "2.6.5", "6.0"], + ["not_in", "date", "mysql", "2.5.7", "4.2"], + ["not_in", "date", "mysql", "2.5.7", "5.2"], + ["not_in", "date", "mysql", "2.5.7", "6.0"], + ["not_in", "date", "mysql", "2.4.9", "4.2"], + ["not_in", "date", "mysql", "2.4.9", "5.2"], + ["not_in", "date", "mysql", "2.4.9", "6.0"], + ["not_in", "date", "sqlite", "2.7.0", "4.2"], + ["not_in", "date", "sqlite", "2.7.0", "5.2"], + ["not_in", "date", "sqlite", "2.7.0", "6.0"], + ["not_in", "date", "sqlite", "2.6.5", "4.2"], + ["not_in", "date", "sqlite", "2.6.5", "5.2"], + ["not_in", "date", "sqlite", "2.6.5", "6.0"], + ["not_in", "date", "sqlite", "2.5.7", "4.2"], + ["not_in", "date", "sqlite", "2.5.7", "5.2"], + ["not_in", "date", "sqlite", "2.5.7", "6.0"], + ["not_in", "date", "sqlite", "2.4.9", "4.2"], + ["not_in", "date", "sqlite", "2.4.9", "5.2"], + ["not_in", "date", "sqlite", "2.4.9", "6.0"], + ["not_in", "datetime", "postgresql", "2.7.0", "4.2"], + ["not_in", "datetime", "postgresql", "2.7.0", "5.2"], + ["not_in", "datetime", "postgresql", "2.7.0", "6.0"], + ["not_in", "datetime", "postgresql", "2.6.5", "4.2"], + ["not_in", "datetime", "postgresql", "2.6.5", "5.2"], + ["not_in", "datetime", "postgresql", "2.6.5", "6.0"], + ["not_in", "datetime", "postgresql", "2.5.7", "4.2"], + ["not_in", "datetime", "postgresql", "2.5.7", "5.2"], + ["not_in", "datetime", "postgresql", "2.5.7", "6.0"], + ["not_in", "datetime", "postgresql", "2.4.9", "4.2"], + ["not_in", "datetime", "postgresql", "2.4.9", "5.2"], + ["not_in", "datetime", "postgresql", "2.4.9", "6.0"], + ["not_in", "datetime", "mysql", "2.7.0", "4.2"], + ["not_in", "datetime", "mysql", "2.7.0", "5.2"], + ["not_in", "datetime", "mysql", "2.7.0", "6.0"], + ["not_in", "datetime", "mysql", "2.6.5", "4.2"], + ["not_in", "datetime", "mysql", "2.6.5", "5.2"], + ["not_in", "datetime", "mysql", "2.6.5", "6.0"], + ["not_in", "datetime", "mysql", "2.5.7", "4.2"], + ["not_in", "datetime", "mysql", "2.5.7", "5.2"], + ["not_in", "datetime", "mysql", "2.5.7", "6.0"], + ["not_in", "datetime", "mysql", "2.4.9", "4.2"], + ["not_in", "datetime", "mysql", "2.4.9", "5.2"], + ["not_in", "datetime", "mysql", "2.4.9", "6.0"], + ["not_in", "datetime", "sqlite", "2.7.0", "4.2"], + ["not_in", "datetime", "sqlite", "2.7.0", "5.2"], + ["not_in", "datetime", "sqlite", "2.7.0", "6.0"], + ["not_in", "datetime", "sqlite", "2.6.5", "4.2"], + ["not_in", "datetime", "sqlite", "2.6.5", "5.2"], + ["not_in", "datetime", "sqlite", "2.6.5", "6.0"], + ["not_in", "datetime", "sqlite", "2.5.7", "4.2"], + ["not_in", "datetime", "sqlite", "2.5.7", "5.2"], + ["not_in", "datetime", "sqlite", "2.5.7", "6.0"], + ["not_in", "datetime", "sqlite", "2.4.9", "4.2"], + ["not_in", "datetime", "sqlite", "2.4.9", "5.2"], + ["not_in", "datetime", "sqlite", "2.4.9", "6.0"], + ["not_in", "decimal", "postgresql", "2.7.0", "4.2"], + ["not_in", "decimal", "postgresql", "2.7.0", "5.2"], + ["not_in", "decimal", "postgresql", "2.7.0", "6.0"], + ["not_in", "decimal", "postgresql", "2.6.5", "4.2"], + ["not_in", "decimal", "postgresql", "2.6.5", "5.2"], + ["not_in", "decimal", "postgresql", "2.6.5", "6.0"], + ["not_in", "decimal", "postgresql", "2.5.7", "4.2"], + ["not_in", "decimal", "postgresql", "2.5.7", "5.2"], + ["not_in", "decimal", "postgresql", "2.5.7", "6.0"], + ["not_in", "decimal", "postgresql", "2.4.9", "4.2"], + ["not_in", "decimal", "postgresql", "2.4.9", "5.2"], + ["not_in", "decimal", "postgresql", "2.4.9", "6.0"], + ["not_in", "decimal", "mysql", "2.7.0", "4.2"], + ["not_in", "decimal", "mysql", "2.7.0", "5.2"], + ["not_in", "decimal", "mysql", "2.7.0", "6.0"], + ["not_in", "decimal", "mysql", "2.6.5", "4.2"], + ["not_in", "decimal", "mysql", "2.6.5", "5.2"], + ["not_in", "decimal", "mysql", "2.6.5", "6.0"], + ["not_in", "decimal", "mysql", "2.5.7", "4.2"], + ["not_in", "decimal", "mysql", "2.5.7", "5.2"], + ["not_in", "decimal", "mysql", "2.5.7", "6.0"], + ["not_in", "decimal", "mysql", "2.4.9", "4.2"], + ["not_in", "decimal", "mysql", "2.4.9", "5.2"], + ["not_in", "decimal", "mysql", "2.4.9", "6.0"], + ["not_in", "decimal", "sqlite", "2.7.0", "4.2"], + ["not_in", "decimal", "sqlite", "2.7.0", "5.2"], + ["not_in", "decimal", "sqlite", "2.7.0", "6.0"], + ["not_in", "decimal", "sqlite", "2.6.5", "4.2"], + ["not_in", "decimal", "sqlite", "2.6.5", "5.2"], + ["not_in", "decimal", "sqlite", "2.6.5", "6.0"], + ["not_in", "decimal", "sqlite", "2.5.7", "4.2"], + ["not_in", "decimal", "sqlite", "2.5.7", "5.2"], + ["not_in", "decimal", "sqlite", "2.5.7", "6.0"], + ["not_in", "decimal", "sqlite", "2.4.9", "4.2"], + ["not_in", "decimal", "sqlite", "2.4.9", "5.2"], + ["not_in", "decimal", "sqlite", "2.4.9", "6.0"], + ["not_in", "float", "postgresql", "2.7.0", "4.2"], + ["not_in", "float", "postgresql", "2.7.0", "5.2"], + ["not_in", "float", "postgresql", "2.7.0", "6.0"], + ["not_in", "float", "postgresql", "2.6.5", "4.2"], + ["not_in", "float", "postgresql", "2.6.5", "5.2"], + ["not_in", "float", "postgresql", "2.6.5", "6.0"], + ["not_in", "float", "postgresql", "2.5.7", "4.2"], + ["not_in", "float", "postgresql", "2.5.7", "5.2"], + ["not_in", "float", "postgresql", "2.5.7", "6.0"], + ["not_in", "float", "postgresql", "2.4.9", "4.2"], + ["not_in", "float", "postgresql", "2.4.9", "5.2"], + ["not_in", "float", "postgresql", "2.4.9", "6.0"], + ["not_in", "float", "mysql", "2.7.0", "4.2"], + ["not_in", "float", "mysql", "2.7.0", "5.2"], + ["not_in", "float", "mysql", "2.7.0", "6.0"], + ["not_in", "float", "mysql", "2.6.5", "4.2"], + ["not_in", "float", "mysql", "2.6.5", "5.2"], + ["not_in", "float", "mysql", "2.6.5", "6.0"], + ["not_in", "float", "mysql", "2.5.7", "4.2"], + ["not_in", "float", "mysql", "2.5.7", "5.2"], + ["not_in", "float", "mysql", "2.5.7", "6.0"], + ["not_in", "float", "mysql", "2.4.9", "4.2"], + ["not_in", "float", "mysql", "2.4.9", "5.2"], + ["not_in", "float", "mysql", "2.4.9", "6.0"], + ["not_in", "float", "sqlite", "2.7.0", "4.2"], + ["not_in", "float", "sqlite", "2.7.0", "5.2"], + ["not_in", "float", "sqlite", "2.7.0", "6.0"], + ["not_in", "float", "sqlite", "2.6.5", "4.2"], + ["not_in", "float", "sqlite", "2.6.5", "5.2"], + ["not_in", "float", "sqlite", "2.6.5", "6.0"], + ["not_in", "float", "sqlite", "2.5.7", "4.2"], + ["not_in", "float", "sqlite", "2.5.7", "5.2"], + ["not_in", "float", "sqlite", "2.5.7", "6.0"], + ["not_in", "float", "sqlite", "2.4.9", "4.2"], + ["not_in", "float", "sqlite", "2.4.9", "5.2"], + ["not_in", "float", "sqlite", "2.4.9", "6.0"], + ["not_in", "integer", "postgresql", "2.7.0", "4.2"], + ["not_in", "integer", "postgresql", "2.7.0", "5.2"], + ["not_in", "integer", "postgresql", "2.7.0", "6.0"], + ["not_in", "integer", "postgresql", "2.6.5", "4.2"], + ["not_in", "integer", "postgresql", "2.6.5", "5.2"], + ["not_in", "integer", "postgresql", "2.6.5", "6.0"], + ["not_in", "integer", "postgresql", "2.5.7", "4.2"], + ["not_in", "integer", "postgresql", "2.5.7", "5.2"], + ["not_in", "integer", "postgresql", "2.5.7", "6.0"], + ["not_in", "integer", "postgresql", "2.4.9", "4.2"], + ["not_in", "integer", "postgresql", "2.4.9", "5.2"], + ["not_in", "integer", "postgresql", "2.4.9", "6.0"], + ["not_in", "integer", "mysql", "2.7.0", "4.2"], + ["not_in", "integer", "mysql", "2.7.0", "5.2"], + ["not_in", "integer", "mysql", "2.7.0", "6.0"], + ["not_in", "integer", "mysql", "2.6.5", "4.2"], + ["not_in", "integer", "mysql", "2.6.5", "5.2"], + ["not_in", "integer", "mysql", "2.6.5", "6.0"], + ["not_in", "integer", "mysql", "2.5.7", "4.2"], + ["not_in", "integer", "mysql", "2.5.7", "5.2"], + ["not_in", "integer", "mysql", "2.5.7", "6.0"], + ["not_in", "integer", "mysql", "2.4.9", "4.2"], + ["not_in", "integer", "mysql", "2.4.9", "5.2"], + ["not_in", "integer", "mysql", "2.4.9", "6.0"], + ["not_in", "integer", "sqlite", "2.7.0", "4.2"], + ["not_in", "integer", "sqlite", "2.7.0", "5.2"], + ["not_in", "integer", "sqlite", "2.7.0", "6.0"], + ["not_in", "integer", "sqlite", "2.6.5", "4.2"], + ["not_in", "integer", "sqlite", "2.6.5", "5.2"], + ["not_in", "integer", "sqlite", "2.6.5", "6.0"], + ["not_in", "integer", "sqlite", "2.5.7", "4.2"], + ["not_in", "integer", "sqlite", "2.5.7", "5.2"], + ["not_in", "integer", "sqlite", "2.5.7", "6.0"], + ["not_in", "integer", "sqlite", "2.4.9", "4.2"], + ["not_in", "integer", "sqlite", "2.4.9", "5.2"], + ["not_in", "integer", "sqlite", "2.4.9", "6.0"], + ["not_in", "string", "postgresql", "2.7.0", "4.2"], + ["not_in", "string", "postgresql", "2.7.0", "5.2"], + ["not_in", "string", "postgresql", "2.7.0", "6.0"], + ["not_in", "string", "postgresql", "2.6.5", "4.2"], + ["not_in", "string", "postgresql", "2.6.5", "5.2"], + ["not_in", "string", "postgresql", "2.6.5", "6.0"], + ["not_in", "string", "postgresql", "2.5.7", "4.2"], + ["not_in", "string", "postgresql", "2.5.7", "5.2"], + ["not_in", "string", "postgresql", "2.5.7", "6.0"], + ["not_in", "string", "postgresql", "2.4.9", "4.2"], + ["not_in", "string", "postgresql", "2.4.9", "5.2"], + ["not_in", "string", "postgresql", "2.4.9", "6.0"], + ["not_in", "string", "mysql", "2.7.0", "4.2"], + ["not_in", "string", "mysql", "2.7.0", "5.2"], + ["not_in", "string", "mysql", "2.7.0", "6.0"], + ["not_in", "string", "mysql", "2.6.5", "4.2"], + ["not_in", "string", "mysql", "2.6.5", "5.2"], + ["not_in", "string", "mysql", "2.6.5", "6.0"], + ["not_in", "string", "mysql", "2.5.7", "4.2"], + ["not_in", "string", "mysql", "2.5.7", "5.2"], + ["not_in", "string", "mysql", "2.5.7", "6.0"], + ["not_in", "string", "mysql", "2.4.9", "4.2"], + ["not_in", "string", "mysql", "2.4.9", "5.2"], + ["not_in", "string", "mysql", "2.4.9", "6.0"], + ["not_in", "string", "sqlite", "2.7.0", "4.2"], + ["not_in", "string", "sqlite", "2.7.0", "5.2"], + ["not_in", "string", "sqlite", "2.7.0", "6.0"], + ["not_in", "string", "sqlite", "2.6.5", "4.2"], + ["not_in", "string", "sqlite", "2.6.5", "5.2"], + ["not_in", "string", "sqlite", "2.6.5", "6.0"], + ["not_in", "string", "sqlite", "2.5.7", "4.2"], + ["not_in", "string", "sqlite", "2.5.7", "5.2"], + ["not_in", "string", "sqlite", "2.5.7", "6.0"], + ["not_in", "string", "sqlite", "2.4.9", "4.2"], + ["not_in", "string", "sqlite", "2.4.9", "5.2"], + ["not_in", "string", "sqlite", "2.4.9", "6.0"], + ["not_in", "text", "postgresql", "2.7.0", "4.2"], + ["not_in", "text", "postgresql", "2.7.0", "5.2"], + ["not_in", "text", "postgresql", "2.7.0", "6.0"], + ["not_in", "text", "postgresql", "2.6.5", "4.2"], + ["not_in", "text", "postgresql", "2.6.5", "5.2"], + ["not_in", "text", "postgresql", "2.6.5", "6.0"], + ["not_in", "text", "postgresql", "2.5.7", "4.2"], + ["not_in", "text", "postgresql", "2.5.7", "5.2"], + ["not_in", "text", "postgresql", "2.5.7", "6.0"], + ["not_in", "text", "postgresql", "2.4.9", "4.2"], + ["not_in", "text", "postgresql", "2.4.9", "5.2"], + ["not_in", "text", "postgresql", "2.4.9", "6.0"], + ["not_in", "text", "mysql", "2.7.0", "4.2"], + ["not_in", "text", "mysql", "2.7.0", "5.2"], + ["not_in", "text", "mysql", "2.7.0", "6.0"], + ["not_in", "text", "mysql", "2.6.5", "4.2"], + ["not_in", "text", "mysql", "2.6.5", "5.2"], + ["not_in", "text", "mysql", "2.6.5", "6.0"], + ["not_in", "text", "mysql", "2.5.7", "4.2"], + ["not_in", "text", "mysql", "2.5.7", "5.2"], + ["not_in", "text", "mysql", "2.5.7", "6.0"], + ["not_in", "text", "mysql", "2.4.9", "4.2"], + ["not_in", "text", "mysql", "2.4.9", "5.2"], + ["not_in", "text", "mysql", "2.4.9", "6.0"], + ["not_in", "text", "sqlite", "2.7.0", "4.2"], + ["not_in", "text", "sqlite", "2.7.0", "5.2"], + ["not_in", "text", "sqlite", "2.7.0", "6.0"], + ["not_in", "text", "sqlite", "2.6.5", "4.2"], + ["not_in", "text", "sqlite", "2.6.5", "5.2"], + ["not_in", "text", "sqlite", "2.6.5", "6.0"], + ["not_in", "text", "sqlite", "2.5.7", "4.2"], + ["not_in", "text", "sqlite", "2.5.7", "5.2"], + ["not_in", "text", "sqlite", "2.5.7", "6.0"], + ["not_in", "text", "sqlite", "2.4.9", "4.2"], + ["not_in", "text", "sqlite", "2.4.9", "5.2"], + ["not_in", "text", "sqlite", "2.4.9", "6.0"], + ["not_in", "time", "postgresql", "2.7.0", "4.2"], + ["not_in", "time", "postgresql", "2.7.0", "5.2"], + ["not_in", "time", "postgresql", "2.7.0", "6.0"], + ["not_in", "time", "postgresql", "2.6.5", "4.2"], + ["not_in", "time", "postgresql", "2.6.5", "5.2"], + ["not_in", "time", "postgresql", "2.6.5", "6.0"], + ["not_in", "time", "postgresql", "2.5.7", "4.2"], + ["not_in", "time", "postgresql", "2.5.7", "5.2"], + ["not_in", "time", "postgresql", "2.5.7", "6.0"], + ["not_in", "time", "postgresql", "2.4.9", "4.2"], + ["not_in", "time", "postgresql", "2.4.9", "5.2"], + ["not_in", "time", "postgresql", "2.4.9", "6.0"], + ["not_in", "time", "mysql", "2.7.0", "4.2"], + ["not_in", "time", "mysql", "2.7.0", "5.2"], + ["not_in", "time", "mysql", "2.7.0", "6.0"], + ["not_in", "time", "mysql", "2.6.5", "4.2"], + ["not_in", "time", "mysql", "2.6.5", "5.2"], + ["not_in", "time", "mysql", "2.6.5", "6.0"], + ["not_in", "time", "mysql", "2.5.7", "4.2"], + ["not_in", "time", "mysql", "2.5.7", "5.2"], + ["not_in", "time", "mysql", "2.5.7", "6.0"], + ["not_in", "time", "mysql", "2.4.9", "4.2"], + ["not_in", "time", "mysql", "2.4.9", "5.2"], + ["not_in", "time", "mysql", "2.4.9", "6.0"], + ["not_in", "time", "sqlite", "2.7.0", "4.2"], + ["not_in", "time", "sqlite", "2.7.0", "5.2"], + ["not_in", "time", "sqlite", "2.7.0", "6.0"], + ["not_in", "time", "sqlite", "2.6.5", "4.2"], + ["not_in", "time", "sqlite", "2.6.5", "5.2"], + ["not_in", "time", "sqlite", "2.6.5", "6.0"], + ["not_in", "time", "sqlite", "2.5.7", "4.2"], + ["not_in", "time", "sqlite", "2.5.7", "5.2"], + ["not_in", "time", "sqlite", "2.5.7", "6.0"], + ["not_in", "time", "sqlite", "2.4.9", "4.2"], + ["not_in", "time", "sqlite", "2.4.9", "5.2"], + ["not_in", "time", "sqlite", "2.4.9", "6.0"], + ["in_any", "binary", "postgresql", "2.7.0", "4.2"], + ["in_any", "binary", "postgresql", "2.7.0", "5.2"], + ["in_any", "binary", "postgresql", "2.7.0", "6.0"], + ["in_any", "binary", "postgresql", "2.6.5", "4.2"], + ["in_any", "binary", "postgresql", "2.6.5", "5.2"], + ["in_any", "binary", "postgresql", "2.6.5", "6.0"], + ["in_any", "binary", "postgresql", "2.5.7", "4.2"], + ["in_any", "binary", "postgresql", "2.5.7", "5.2"], + ["in_any", "binary", "postgresql", "2.5.7", "6.0"], + ["in_any", "binary", "postgresql", "2.4.9", "4.2"], + ["in_any", "binary", "postgresql", "2.4.9", "5.2"], + ["in_any", "binary", "postgresql", "2.4.9", "6.0"], + ["in_any", "binary", "mysql", "2.7.0", "4.2"], + ["in_any", "binary", "mysql", "2.7.0", "5.2"], + ["in_any", "binary", "mysql", "2.7.0", "6.0"], + ["in_any", "binary", "mysql", "2.6.5", "4.2"], + ["in_any", "binary", "mysql", "2.6.5", "5.2"], + ["in_any", "binary", "mysql", "2.6.5", "6.0"], + ["in_any", "binary", "mysql", "2.5.7", "4.2"], + ["in_any", "binary", "mysql", "2.5.7", "5.2"], + ["in_any", "binary", "mysql", "2.5.7", "6.0"], + ["in_any", "binary", "mysql", "2.4.9", "4.2"], + ["in_any", "binary", "mysql", "2.4.9", "5.2"], + ["in_any", "binary", "mysql", "2.4.9", "6.0"], + ["in_any", "binary", "sqlite", "2.7.0", "4.2"], + ["in_any", "binary", "sqlite", "2.7.0", "5.2"], + ["in_any", "binary", "sqlite", "2.7.0", "6.0"], + ["in_any", "binary", "sqlite", "2.6.5", "4.2"], + ["in_any", "binary", "sqlite", "2.6.5", "5.2"], + ["in_any", "binary", "sqlite", "2.6.5", "6.0"], + ["in_any", "binary", "sqlite", "2.5.7", "4.2"], + ["in_any", "binary", "sqlite", "2.5.7", "5.2"], + ["in_any", "binary", "sqlite", "2.5.7", "6.0"], + ["in_any", "binary", "sqlite", "2.4.9", "4.2"], + ["in_any", "binary", "sqlite", "2.4.9", "5.2"], + ["in_any", "binary", "sqlite", "2.4.9", "6.0"], + ["in_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["in_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["in_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["in_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["in_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["in_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["in_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["in_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["in_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["in_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["in_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["in_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["in_any", "boolean", "mysql", "2.7.0", "4.2"], + ["in_any", "boolean", "mysql", "2.7.0", "5.2"], + ["in_any", "boolean", "mysql", "2.7.0", "6.0"], + ["in_any", "boolean", "mysql", "2.6.5", "4.2"], + ["in_any", "boolean", "mysql", "2.6.5", "5.2"], + ["in_any", "boolean", "mysql", "2.6.5", "6.0"], + ["in_any", "boolean", "mysql", "2.5.7", "4.2"], + ["in_any", "boolean", "mysql", "2.5.7", "5.2"], + ["in_any", "boolean", "mysql", "2.5.7", "6.0"], + ["in_any", "boolean", "mysql", "2.4.9", "4.2"], + ["in_any", "boolean", "mysql", "2.4.9", "5.2"], + ["in_any", "boolean", "mysql", "2.4.9", "6.0"], + ["in_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["in_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["in_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["in_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["in_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["in_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["in_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["in_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["in_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["in_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["in_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["in_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["in_any", "date", "postgresql", "2.7.0", "4.2"], + ["in_any", "date", "postgresql", "2.7.0", "5.2"], + ["in_any", "date", "postgresql", "2.7.0", "6.0"], + ["in_any", "date", "postgresql", "2.6.5", "4.2"], + ["in_any", "date", "postgresql", "2.6.5", "5.2"], + ["in_any", "date", "postgresql", "2.6.5", "6.0"], + ["in_any", "date", "postgresql", "2.5.7", "4.2"], + ["in_any", "date", "postgresql", "2.5.7", "5.2"], + ["in_any", "date", "postgresql", "2.5.7", "6.0"], + ["in_any", "date", "postgresql", "2.4.9", "4.2"], + ["in_any", "date", "postgresql", "2.4.9", "5.2"], + ["in_any", "date", "postgresql", "2.4.9", "6.0"], + ["in_any", "date", "mysql", "2.7.0", "4.2"], + ["in_any", "date", "mysql", "2.7.0", "5.2"], + ["in_any", "date", "mysql", "2.7.0", "6.0"], + ["in_any", "date", "mysql", "2.6.5", "4.2"], + ["in_any", "date", "mysql", "2.6.5", "5.2"], + ["in_any", "date", "mysql", "2.6.5", "6.0"], + ["in_any", "date", "mysql", "2.5.7", "4.2"], + ["in_any", "date", "mysql", "2.5.7", "5.2"], + ["in_any", "date", "mysql", "2.5.7", "6.0"], + ["in_any", "date", "mysql", "2.4.9", "4.2"], + ["in_any", "date", "mysql", "2.4.9", "5.2"], + ["in_any", "date", "mysql", "2.4.9", "6.0"], + ["in_any", "date", "sqlite", "2.7.0", "4.2"], + ["in_any", "date", "sqlite", "2.7.0", "5.2"], + ["in_any", "date", "sqlite", "2.7.0", "6.0"], + ["in_any", "date", "sqlite", "2.6.5", "4.2"], + ["in_any", "date", "sqlite", "2.6.5", "5.2"], + ["in_any", "date", "sqlite", "2.6.5", "6.0"], + ["in_any", "date", "sqlite", "2.5.7", "4.2"], + ["in_any", "date", "sqlite", "2.5.7", "5.2"], + ["in_any", "date", "sqlite", "2.5.7", "6.0"], + ["in_any", "date", "sqlite", "2.4.9", "4.2"], + ["in_any", "date", "sqlite", "2.4.9", "5.2"], + ["in_any", "date", "sqlite", "2.4.9", "6.0"], + ["in_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["in_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["in_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["in_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["in_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["in_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["in_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["in_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["in_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["in_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["in_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["in_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["in_any", "datetime", "mysql", "2.7.0", "4.2"], + ["in_any", "datetime", "mysql", "2.7.0", "5.2"], + ["in_any", "datetime", "mysql", "2.7.0", "6.0"], + ["in_any", "datetime", "mysql", "2.6.5", "4.2"], + ["in_any", "datetime", "mysql", "2.6.5", "5.2"], + ["in_any", "datetime", "mysql", "2.6.5", "6.0"], + ["in_any", "datetime", "mysql", "2.5.7", "4.2"], + ["in_any", "datetime", "mysql", "2.5.7", "5.2"], + ["in_any", "datetime", "mysql", "2.5.7", "6.0"], + ["in_any", "datetime", "mysql", "2.4.9", "4.2"], + ["in_any", "datetime", "mysql", "2.4.9", "5.2"], + ["in_any", "datetime", "mysql", "2.4.9", "6.0"], + ["in_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["in_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["in_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["in_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["in_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["in_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["in_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["in_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["in_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["in_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["in_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["in_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["in_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["in_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["in_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["in_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["in_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["in_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["in_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["in_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["in_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["in_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["in_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["in_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["in_any", "decimal", "mysql", "2.7.0", "4.2"], + ["in_any", "decimal", "mysql", "2.7.0", "5.2"], + ["in_any", "decimal", "mysql", "2.7.0", "6.0"], + ["in_any", "decimal", "mysql", "2.6.5", "4.2"], + ["in_any", "decimal", "mysql", "2.6.5", "5.2"], + ["in_any", "decimal", "mysql", "2.6.5", "6.0"], + ["in_any", "decimal", "mysql", "2.5.7", "4.2"], + ["in_any", "decimal", "mysql", "2.5.7", "5.2"], + ["in_any", "decimal", "mysql", "2.5.7", "6.0"], + ["in_any", "decimal", "mysql", "2.4.9", "4.2"], + ["in_any", "decimal", "mysql", "2.4.9", "5.2"], + ["in_any", "decimal", "mysql", "2.4.9", "6.0"], + ["in_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["in_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["in_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["in_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["in_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["in_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["in_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["in_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["in_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["in_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["in_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["in_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["in_any", "float", "postgresql", "2.7.0", "4.2"], + ["in_any", "float", "postgresql", "2.7.0", "5.2"], + ["in_any", "float", "postgresql", "2.7.0", "6.0"], + ["in_any", "float", "postgresql", "2.6.5", "4.2"], + ["in_any", "float", "postgresql", "2.6.5", "5.2"], + ["in_any", "float", "postgresql", "2.6.5", "6.0"], + ["in_any", "float", "postgresql", "2.5.7", "4.2"], + ["in_any", "float", "postgresql", "2.5.7", "5.2"], + ["in_any", "float", "postgresql", "2.5.7", "6.0"], + ["in_any", "float", "postgresql", "2.4.9", "4.2"], + ["in_any", "float", "postgresql", "2.4.9", "5.2"], + ["in_any", "float", "postgresql", "2.4.9", "6.0"], + ["in_any", "float", "mysql", "2.7.0", "4.2"], + ["in_any", "float", "mysql", "2.7.0", "5.2"], + ["in_any", "float", "mysql", "2.7.0", "6.0"], + ["in_any", "float", "mysql", "2.6.5", "4.2"], + ["in_any", "float", "mysql", "2.6.5", "5.2"], + ["in_any", "float", "mysql", "2.6.5", "6.0"], + ["in_any", "float", "mysql", "2.5.7", "4.2"], + ["in_any", "float", "mysql", "2.5.7", "5.2"], + ["in_any", "float", "mysql", "2.5.7", "6.0"], + ["in_any", "float", "mysql", "2.4.9", "4.2"], + ["in_any", "float", "mysql", "2.4.9", "5.2"], + ["in_any", "float", "mysql", "2.4.9", "6.0"], + ["in_any", "float", "sqlite", "2.7.0", "4.2"], + ["in_any", "float", "sqlite", "2.7.0", "5.2"], + ["in_any", "float", "sqlite", "2.7.0", "6.0"], + ["in_any", "float", "sqlite", "2.6.5", "4.2"], + ["in_any", "float", "sqlite", "2.6.5", "5.2"], + ["in_any", "float", "sqlite", "2.6.5", "6.0"], + ["in_any", "float", "sqlite", "2.5.7", "4.2"], + ["in_any", "float", "sqlite", "2.5.7", "5.2"], + ["in_any", "float", "sqlite", "2.5.7", "6.0"], + ["in_any", "float", "sqlite", "2.4.9", "4.2"], + ["in_any", "float", "sqlite", "2.4.9", "5.2"], + ["in_any", "float", "sqlite", "2.4.9", "6.0"], + ["in_any", "integer", "postgresql", "2.7.0", "4.2"], + ["in_any", "integer", "postgresql", "2.7.0", "5.2"], + ["in_any", "integer", "postgresql", "2.7.0", "6.0"], + ["in_any", "integer", "postgresql", "2.6.5", "4.2"], + ["in_any", "integer", "postgresql", "2.6.5", "5.2"], + ["in_any", "integer", "postgresql", "2.6.5", "6.0"], + ["in_any", "integer", "postgresql", "2.5.7", "4.2"], + ["in_any", "integer", "postgresql", "2.5.7", "5.2"], + ["in_any", "integer", "postgresql", "2.5.7", "6.0"], + ["in_any", "integer", "postgresql", "2.4.9", "4.2"], + ["in_any", "integer", "postgresql", "2.4.9", "5.2"], + ["in_any", "integer", "postgresql", "2.4.9", "6.0"], + ["in_any", "integer", "mysql", "2.7.0", "4.2"], + ["in_any", "integer", "mysql", "2.7.0", "5.2"], + ["in_any", "integer", "mysql", "2.7.0", "6.0"], + ["in_any", "integer", "mysql", "2.6.5", "4.2"], + ["in_any", "integer", "mysql", "2.6.5", "5.2"], + ["in_any", "integer", "mysql", "2.6.5", "6.0"], + ["in_any", "integer", "mysql", "2.5.7", "4.2"], + ["in_any", "integer", "mysql", "2.5.7", "5.2"], + ["in_any", "integer", "mysql", "2.5.7", "6.0"], + ["in_any", "integer", "mysql", "2.4.9", "4.2"], + ["in_any", "integer", "mysql", "2.4.9", "5.2"], + ["in_any", "integer", "mysql", "2.4.9", "6.0"], + ["in_any", "integer", "sqlite", "2.7.0", "4.2"], + ["in_any", "integer", "sqlite", "2.7.0", "5.2"], + ["in_any", "integer", "sqlite", "2.7.0", "6.0"], + ["in_any", "integer", "sqlite", "2.6.5", "4.2"], + ["in_any", "integer", "sqlite", "2.6.5", "5.2"], + ["in_any", "integer", "sqlite", "2.6.5", "6.0"], + ["in_any", "integer", "sqlite", "2.5.7", "4.2"], + ["in_any", "integer", "sqlite", "2.5.7", "5.2"], + ["in_any", "integer", "sqlite", "2.5.7", "6.0"], + ["in_any", "integer", "sqlite", "2.4.9", "4.2"], + ["in_any", "integer", "sqlite", "2.4.9", "5.2"], + ["in_any", "integer", "sqlite", "2.4.9", "6.0"], + ["in_any", "string", "postgresql", "2.7.0", "4.2"], + ["in_any", "string", "postgresql", "2.7.0", "5.2"], + ["in_any", "string", "postgresql", "2.7.0", "6.0"], + ["in_any", "string", "postgresql", "2.6.5", "4.2"], + ["in_any", "string", "postgresql", "2.6.5", "5.2"], + ["in_any", "string", "postgresql", "2.6.5", "6.0"], + ["in_any", "string", "postgresql", "2.5.7", "4.2"], + ["in_any", "string", "postgresql", "2.5.7", "5.2"], + ["in_any", "string", "postgresql", "2.5.7", "6.0"], + ["in_any", "string", "postgresql", "2.4.9", "4.2"], + ["in_any", "string", "postgresql", "2.4.9", "5.2"], + ["in_any", "string", "postgresql", "2.4.9", "6.0"], + ["in_any", "string", "mysql", "2.7.0", "4.2"], + ["in_any", "string", "mysql", "2.7.0", "5.2"], + ["in_any", "string", "mysql", "2.7.0", "6.0"], + ["in_any", "string", "mysql", "2.6.5", "4.2"], + ["in_any", "string", "mysql", "2.6.5", "5.2"], + ["in_any", "string", "mysql", "2.6.5", "6.0"], + ["in_any", "string", "mysql", "2.5.7", "4.2"], + ["in_any", "string", "mysql", "2.5.7", "5.2"], + ["in_any", "string", "mysql", "2.5.7", "6.0"], + ["in_any", "string", "mysql", "2.4.9", "4.2"], + ["in_any", "string", "mysql", "2.4.9", "5.2"], + ["in_any", "string", "mysql", "2.4.9", "6.0"], + ["in_any", "string", "sqlite", "2.7.0", "4.2"], + ["in_any", "string", "sqlite", "2.7.0", "5.2"], + ["in_any", "string", "sqlite", "2.7.0", "6.0"], + ["in_any", "string", "sqlite", "2.6.5", "4.2"], + ["in_any", "string", "sqlite", "2.6.5", "5.2"], + ["in_any", "string", "sqlite", "2.6.5", "6.0"], + ["in_any", "string", "sqlite", "2.5.7", "4.2"], + ["in_any", "string", "sqlite", "2.5.7", "5.2"], + ["in_any", "string", "sqlite", "2.5.7", "6.0"], + ["in_any", "string", "sqlite", "2.4.9", "4.2"], + ["in_any", "string", "sqlite", "2.4.9", "5.2"], + ["in_any", "string", "sqlite", "2.4.9", "6.0"], + ["in_any", "text", "postgresql", "2.7.0", "4.2"], + ["in_any", "text", "postgresql", "2.7.0", "5.2"], + ["in_any", "text", "postgresql", "2.7.0", "6.0"], + ["in_any", "text", "postgresql", "2.6.5", "4.2"], + ["in_any", "text", "postgresql", "2.6.5", "5.2"], + ["in_any", "text", "postgresql", "2.6.5", "6.0"], + ["in_any", "text", "postgresql", "2.5.7", "4.2"], + ["in_any", "text", "postgresql", "2.5.7", "5.2"], + ["in_any", "text", "postgresql", "2.5.7", "6.0"], + ["in_any", "text", "postgresql", "2.4.9", "4.2"], + ["in_any", "text", "postgresql", "2.4.9", "5.2"], + ["in_any", "text", "postgresql", "2.4.9", "6.0"], + ["in_any", "text", "mysql", "2.7.0", "4.2"], + ["in_any", "text", "mysql", "2.7.0", "5.2"], + ["in_any", "text", "mysql", "2.7.0", "6.0"], + ["in_any", "text", "mysql", "2.6.5", "4.2"], + ["in_any", "text", "mysql", "2.6.5", "5.2"], + ["in_any", "text", "mysql", "2.6.5", "6.0"], + ["in_any", "text", "mysql", "2.5.7", "4.2"], + ["in_any", "text", "mysql", "2.5.7", "5.2"], + ["in_any", "text", "mysql", "2.5.7", "6.0"], + ["in_any", "text", "mysql", "2.4.9", "4.2"], + ["in_any", "text", "mysql", "2.4.9", "5.2"], + ["in_any", "text", "mysql", "2.4.9", "6.0"], + ["in_any", "text", "sqlite", "2.7.0", "4.2"], + ["in_any", "text", "sqlite", "2.7.0", "5.2"], + ["in_any", "text", "sqlite", "2.7.0", "6.0"], + ["in_any", "text", "sqlite", "2.6.5", "4.2"], + ["in_any", "text", "sqlite", "2.6.5", "5.2"], + ["in_any", "text", "sqlite", "2.6.5", "6.0"], + ["in_any", "text", "sqlite", "2.5.7", "4.2"], + ["in_any", "text", "sqlite", "2.5.7", "5.2"], + ["in_any", "text", "sqlite", "2.5.7", "6.0"], + ["in_any", "text", "sqlite", "2.4.9", "4.2"], + ["in_any", "text", "sqlite", "2.4.9", "5.2"], + ["in_any", "text", "sqlite", "2.4.9", "6.0"], + ["in_any", "time", "postgresql", "2.7.0", "4.2"], + ["in_any", "time", "postgresql", "2.7.0", "5.2"], + ["in_any", "time", "postgresql", "2.7.0", "6.0"], + ["in_any", "time", "postgresql", "2.6.5", "4.2"], + ["in_any", "time", "postgresql", "2.6.5", "5.2"], + ["in_any", "time", "postgresql", "2.6.5", "6.0"], + ["in_any", "time", "postgresql", "2.5.7", "4.2"], + ["in_any", "time", "postgresql", "2.5.7", "5.2"], + ["in_any", "time", "postgresql", "2.5.7", "6.0"], + ["in_any", "time", "postgresql", "2.4.9", "4.2"], + ["in_any", "time", "postgresql", "2.4.9", "5.2"], + ["in_any", "time", "postgresql", "2.4.9", "6.0"], + ["in_any", "time", "mysql", "2.7.0", "4.2"], + ["in_any", "time", "mysql", "2.7.0", "5.2"], + ["in_any", "time", "mysql", "2.7.0", "6.0"], + ["in_any", "time", "mysql", "2.6.5", "4.2"], + ["in_any", "time", "mysql", "2.6.5", "5.2"], + ["in_any", "time", "mysql", "2.6.5", "6.0"], + ["in_any", "time", "mysql", "2.5.7", "4.2"], + ["in_any", "time", "mysql", "2.5.7", "5.2"], + ["in_any", "time", "mysql", "2.5.7", "6.0"], + ["in_any", "time", "mysql", "2.4.9", "4.2"], + ["in_any", "time", "mysql", "2.4.9", "5.2"], + ["in_any", "time", "mysql", "2.4.9", "6.0"], + ["in_any", "time", "sqlite", "2.7.0", "4.2"], + ["in_any", "time", "sqlite", "2.7.0", "5.2"], + ["in_any", "time", "sqlite", "2.7.0", "6.0"], + ["in_any", "time", "sqlite", "2.6.5", "4.2"], + ["in_any", "time", "sqlite", "2.6.5", "5.2"], + ["in_any", "time", "sqlite", "2.6.5", "6.0"], + ["in_any", "time", "sqlite", "2.5.7", "4.2"], + ["in_any", "time", "sqlite", "2.5.7", "5.2"], + ["in_any", "time", "sqlite", "2.5.7", "6.0"], + ["in_any", "time", "sqlite", "2.4.9", "4.2"], + ["in_any", "time", "sqlite", "2.4.9", "5.2"], + ["in_any", "time", "sqlite", "2.4.9", "6.0"], + ["in_all", "binary", "postgresql", "2.7.0", "4.2"], + ["in_all", "binary", "postgresql", "2.7.0", "5.2"], + ["in_all", "binary", "postgresql", "2.7.0", "6.0"], + ["in_all", "binary", "postgresql", "2.6.5", "4.2"], + ["in_all", "binary", "postgresql", "2.6.5", "5.2"], + ["in_all", "binary", "postgresql", "2.6.5", "6.0"], + ["in_all", "binary", "postgresql", "2.5.7", "4.2"], + ["in_all", "binary", "postgresql", "2.5.7", "5.2"], + ["in_all", "binary", "postgresql", "2.5.7", "6.0"], + ["in_all", "binary", "postgresql", "2.4.9", "4.2"], + ["in_all", "binary", "postgresql", "2.4.9", "5.2"], + ["in_all", "binary", "postgresql", "2.4.9", "6.0"], + ["in_all", "binary", "mysql", "2.7.0", "4.2"], + ["in_all", "binary", "mysql", "2.7.0", "5.2"], + ["in_all", "binary", "mysql", "2.7.0", "6.0"], + ["in_all", "binary", "mysql", "2.6.5", "4.2"], + ["in_all", "binary", "mysql", "2.6.5", "5.2"], + ["in_all", "binary", "mysql", "2.6.5", "6.0"], + ["in_all", "binary", "mysql", "2.5.7", "4.2"], + ["in_all", "binary", "mysql", "2.5.7", "5.2"], + ["in_all", "binary", "mysql", "2.5.7", "6.0"], + ["in_all", "binary", "mysql", "2.4.9", "4.2"], + ["in_all", "binary", "mysql", "2.4.9", "5.2"], + ["in_all", "binary", "mysql", "2.4.9", "6.0"], + ["in_all", "binary", "sqlite", "2.7.0", "4.2"], + ["in_all", "binary", "sqlite", "2.7.0", "5.2"], + ["in_all", "binary", "sqlite", "2.7.0", "6.0"], + ["in_all", "binary", "sqlite", "2.6.5", "4.2"], + ["in_all", "binary", "sqlite", "2.6.5", "5.2"], + ["in_all", "binary", "sqlite", "2.6.5", "6.0"], + ["in_all", "binary", "sqlite", "2.5.7", "4.2"], + ["in_all", "binary", "sqlite", "2.5.7", "5.2"], + ["in_all", "binary", "sqlite", "2.5.7", "6.0"], + ["in_all", "binary", "sqlite", "2.4.9", "4.2"], + ["in_all", "binary", "sqlite", "2.4.9", "5.2"], + ["in_all", "binary", "sqlite", "2.4.9", "6.0"], + ["in_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["in_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["in_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["in_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["in_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["in_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["in_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["in_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["in_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["in_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["in_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["in_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["in_all", "boolean", "mysql", "2.7.0", "4.2"], + ["in_all", "boolean", "mysql", "2.7.0", "5.2"], + ["in_all", "boolean", "mysql", "2.7.0", "6.0"], + ["in_all", "boolean", "mysql", "2.6.5", "4.2"], + ["in_all", "boolean", "mysql", "2.6.5", "5.2"], + ["in_all", "boolean", "mysql", "2.6.5", "6.0"], + ["in_all", "boolean", "mysql", "2.5.7", "4.2"], + ["in_all", "boolean", "mysql", "2.5.7", "5.2"], + ["in_all", "boolean", "mysql", "2.5.7", "6.0"], + ["in_all", "boolean", "mysql", "2.4.9", "4.2"], + ["in_all", "boolean", "mysql", "2.4.9", "5.2"], + ["in_all", "boolean", "mysql", "2.4.9", "6.0"], + ["in_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["in_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["in_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["in_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["in_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["in_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["in_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["in_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["in_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["in_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["in_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["in_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["in_all", "date", "postgresql", "2.7.0", "4.2"], + ["in_all", "date", "postgresql", "2.7.0", "5.2"], + ["in_all", "date", "postgresql", "2.7.0", "6.0"], + ["in_all", "date", "postgresql", "2.6.5", "4.2"], + ["in_all", "date", "postgresql", "2.6.5", "5.2"], + ["in_all", "date", "postgresql", "2.6.5", "6.0"], + ["in_all", "date", "postgresql", "2.5.7", "4.2"], + ["in_all", "date", "postgresql", "2.5.7", "5.2"], + ["in_all", "date", "postgresql", "2.5.7", "6.0"], + ["in_all", "date", "postgresql", "2.4.9", "4.2"], + ["in_all", "date", "postgresql", "2.4.9", "5.2"], + ["in_all", "date", "postgresql", "2.4.9", "6.0"], + ["in_all", "date", "mysql", "2.7.0", "4.2"], + ["in_all", "date", "mysql", "2.7.0", "5.2"], + ["in_all", "date", "mysql", "2.7.0", "6.0"], + ["in_all", "date", "mysql", "2.6.5", "4.2"], + ["in_all", "date", "mysql", "2.6.5", "5.2"], + ["in_all", "date", "mysql", "2.6.5", "6.0"], + ["in_all", "date", "mysql", "2.5.7", "4.2"], + ["in_all", "date", "mysql", "2.5.7", "5.2"], + ["in_all", "date", "mysql", "2.5.7", "6.0"], + ["in_all", "date", "mysql", "2.4.9", "4.2"], + ["in_all", "date", "mysql", "2.4.9", "5.2"], + ["in_all", "date", "mysql", "2.4.9", "6.0"], + ["in_all", "date", "sqlite", "2.7.0", "4.2"], + ["in_all", "date", "sqlite", "2.7.0", "5.2"], + ["in_all", "date", "sqlite", "2.7.0", "6.0"], + ["in_all", "date", "sqlite", "2.6.5", "4.2"], + ["in_all", "date", "sqlite", "2.6.5", "5.2"], + ["in_all", "date", "sqlite", "2.6.5", "6.0"], + ["in_all", "date", "sqlite", "2.5.7", "4.2"], + ["in_all", "date", "sqlite", "2.5.7", "5.2"], + ["in_all", "date", "sqlite", "2.5.7", "6.0"], + ["in_all", "date", "sqlite", "2.4.9", "4.2"], + ["in_all", "date", "sqlite", "2.4.9", "5.2"], + ["in_all", "date", "sqlite", "2.4.9", "6.0"], + ["in_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["in_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["in_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["in_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["in_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["in_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["in_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["in_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["in_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["in_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["in_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["in_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["in_all", "datetime", "mysql", "2.7.0", "4.2"], + ["in_all", "datetime", "mysql", "2.7.0", "5.2"], + ["in_all", "datetime", "mysql", "2.7.0", "6.0"], + ["in_all", "datetime", "mysql", "2.6.5", "4.2"], + ["in_all", "datetime", "mysql", "2.6.5", "5.2"], + ["in_all", "datetime", "mysql", "2.6.5", "6.0"], + ["in_all", "datetime", "mysql", "2.5.7", "4.2"], + ["in_all", "datetime", "mysql", "2.5.7", "5.2"], + ["in_all", "datetime", "mysql", "2.5.7", "6.0"], + ["in_all", "datetime", "mysql", "2.4.9", "4.2"], + ["in_all", "datetime", "mysql", "2.4.9", "5.2"], + ["in_all", "datetime", "mysql", "2.4.9", "6.0"], + ["in_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["in_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["in_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["in_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["in_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["in_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["in_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["in_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["in_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["in_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["in_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["in_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["in_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["in_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["in_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["in_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["in_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["in_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["in_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["in_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["in_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["in_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["in_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["in_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["in_all", "decimal", "mysql", "2.7.0", "4.2"], + ["in_all", "decimal", "mysql", "2.7.0", "5.2"], + ["in_all", "decimal", "mysql", "2.7.0", "6.0"], + ["in_all", "decimal", "mysql", "2.6.5", "4.2"], + ["in_all", "decimal", "mysql", "2.6.5", "5.2"], + ["in_all", "decimal", "mysql", "2.6.5", "6.0"], + ["in_all", "decimal", "mysql", "2.5.7", "4.2"], + ["in_all", "decimal", "mysql", "2.5.7", "5.2"], + ["in_all", "decimal", "mysql", "2.5.7", "6.0"], + ["in_all", "decimal", "mysql", "2.4.9", "4.2"], + ["in_all", "decimal", "mysql", "2.4.9", "5.2"], + ["in_all", "decimal", "mysql", "2.4.9", "6.0"], + ["in_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["in_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["in_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["in_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["in_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["in_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["in_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["in_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["in_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["in_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["in_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["in_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["in_all", "float", "postgresql", "2.7.0", "4.2"], + ["in_all", "float", "postgresql", "2.7.0", "5.2"], + ["in_all", "float", "postgresql", "2.7.0", "6.0"], + ["in_all", "float", "postgresql", "2.6.5", "4.2"], + ["in_all", "float", "postgresql", "2.6.5", "5.2"], + ["in_all", "float", "postgresql", "2.6.5", "6.0"], + ["in_all", "float", "postgresql", "2.5.7", "4.2"], + ["in_all", "float", "postgresql", "2.5.7", "5.2"], + ["in_all", "float", "postgresql", "2.5.7", "6.0"], + ["in_all", "float", "postgresql", "2.4.9", "4.2"], + ["in_all", "float", "postgresql", "2.4.9", "5.2"], + ["in_all", "float", "postgresql", "2.4.9", "6.0"], + ["in_all", "float", "mysql", "2.7.0", "4.2"], + ["in_all", "float", "mysql", "2.7.0", "5.2"], + ["in_all", "float", "mysql", "2.7.0", "6.0"], + ["in_all", "float", "mysql", "2.6.5", "4.2"], + ["in_all", "float", "mysql", "2.6.5", "5.2"], + ["in_all", "float", "mysql", "2.6.5", "6.0"], + ["in_all", "float", "mysql", "2.5.7", "4.2"], + ["in_all", "float", "mysql", "2.5.7", "5.2"], + ["in_all", "float", "mysql", "2.5.7", "6.0"], + ["in_all", "float", "mysql", "2.4.9", "4.2"], + ["in_all", "float", "mysql", "2.4.9", "5.2"], + ["in_all", "float", "mysql", "2.4.9", "6.0"], + ["in_all", "float", "sqlite", "2.7.0", "4.2"], + ["in_all", "float", "sqlite", "2.7.0", "5.2"], + ["in_all", "float", "sqlite", "2.7.0", "6.0"], + ["in_all", "float", "sqlite", "2.6.5", "4.2"], + ["in_all", "float", "sqlite", "2.6.5", "5.2"], + ["in_all", "float", "sqlite", "2.6.5", "6.0"], + ["in_all", "float", "sqlite", "2.5.7", "4.2"], + ["in_all", "float", "sqlite", "2.5.7", "5.2"], + ["in_all", "float", "sqlite", "2.5.7", "6.0"], + ["in_all", "float", "sqlite", "2.4.9", "4.2"], + ["in_all", "float", "sqlite", "2.4.9", "5.2"], + ["in_all", "float", "sqlite", "2.4.9", "6.0"], + ["in_all", "integer", "postgresql", "2.7.0", "4.2"], + ["in_all", "integer", "postgresql", "2.7.0", "5.2"], + ["in_all", "integer", "postgresql", "2.7.0", "6.0"], + ["in_all", "integer", "postgresql", "2.6.5", "4.2"], + ["in_all", "integer", "postgresql", "2.6.5", "5.2"], + ["in_all", "integer", "postgresql", "2.6.5", "6.0"], + ["in_all", "integer", "postgresql", "2.5.7", "4.2"], + ["in_all", "integer", "postgresql", "2.5.7", "5.2"], + ["in_all", "integer", "postgresql", "2.5.7", "6.0"], + ["in_all", "integer", "postgresql", "2.4.9", "4.2"], + ["in_all", "integer", "postgresql", "2.4.9", "5.2"], + ["in_all", "integer", "postgresql", "2.4.9", "6.0"], + ["in_all", "integer", "mysql", "2.7.0", "4.2"], + ["in_all", "integer", "mysql", "2.7.0", "5.2"], + ["in_all", "integer", "mysql", "2.7.0", "6.0"], + ["in_all", "integer", "mysql", "2.6.5", "4.2"], + ["in_all", "integer", "mysql", "2.6.5", "5.2"], + ["in_all", "integer", "mysql", "2.6.5", "6.0"], + ["in_all", "integer", "mysql", "2.5.7", "4.2"], + ["in_all", "integer", "mysql", "2.5.7", "5.2"], + ["in_all", "integer", "mysql", "2.5.7", "6.0"], + ["in_all", "integer", "mysql", "2.4.9", "4.2"], + ["in_all", "integer", "mysql", "2.4.9", "5.2"], + ["in_all", "integer", "mysql", "2.4.9", "6.0"], + ["in_all", "integer", "sqlite", "2.7.0", "4.2"], + ["in_all", "integer", "sqlite", "2.7.0", "5.2"], + ["in_all", "integer", "sqlite", "2.7.0", "6.0"], + ["in_all", "integer", "sqlite", "2.6.5", "4.2"], + ["in_all", "integer", "sqlite", "2.6.5", "5.2"], + ["in_all", "integer", "sqlite", "2.6.5", "6.0"], + ["in_all", "integer", "sqlite", "2.5.7", "4.2"], + ["in_all", "integer", "sqlite", "2.5.7", "5.2"], + ["in_all", "integer", "sqlite", "2.5.7", "6.0"], + ["in_all", "integer", "sqlite", "2.4.9", "4.2"], + ["in_all", "integer", "sqlite", "2.4.9", "5.2"], + ["in_all", "integer", "sqlite", "2.4.9", "6.0"], + ["in_all", "string", "postgresql", "2.7.0", "4.2"], + ["in_all", "string", "postgresql", "2.7.0", "5.2"], + ["in_all", "string", "postgresql", "2.7.0", "6.0"], + ["in_all", "string", "postgresql", "2.6.5", "4.2"], + ["in_all", "string", "postgresql", "2.6.5", "5.2"], + ["in_all", "string", "postgresql", "2.6.5", "6.0"], + ["in_all", "string", "postgresql", "2.5.7", "4.2"], + ["in_all", "string", "postgresql", "2.5.7", "5.2"], + ["in_all", "string", "postgresql", "2.5.7", "6.0"], + ["in_all", "string", "postgresql", "2.4.9", "4.2"], + ["in_all", "string", "postgresql", "2.4.9", "5.2"], + ["in_all", "string", "postgresql", "2.4.9", "6.0"], + ["in_all", "string", "mysql", "2.7.0", "4.2"], + ["in_all", "string", "mysql", "2.7.0", "5.2"], + ["in_all", "string", "mysql", "2.7.0", "6.0"], + ["in_all", "string", "mysql", "2.6.5", "4.2"], + ["in_all", "string", "mysql", "2.6.5", "5.2"], + ["in_all", "string", "mysql", "2.6.5", "6.0"], + ["in_all", "string", "mysql", "2.5.7", "4.2"], + ["in_all", "string", "mysql", "2.5.7", "5.2"], + ["in_all", "string", "mysql", "2.5.7", "6.0"], + ["in_all", "string", "mysql", "2.4.9", "4.2"], + ["in_all", "string", "mysql", "2.4.9", "5.2"], + ["in_all", "string", "mysql", "2.4.9", "6.0"], + ["in_all", "string", "sqlite", "2.7.0", "4.2"], + ["in_all", "string", "sqlite", "2.7.0", "5.2"], + ["in_all", "string", "sqlite", "2.7.0", "6.0"], + ["in_all", "string", "sqlite", "2.6.5", "4.2"], + ["in_all", "string", "sqlite", "2.6.5", "5.2"], + ["in_all", "string", "sqlite", "2.6.5", "6.0"], + ["in_all", "string", "sqlite", "2.5.7", "4.2"], + ["in_all", "string", "sqlite", "2.5.7", "5.2"], + ["in_all", "string", "sqlite", "2.5.7", "6.0"], + ["in_all", "string", "sqlite", "2.4.9", "4.2"], + ["in_all", "string", "sqlite", "2.4.9", "5.2"], + ["in_all", "string", "sqlite", "2.4.9", "6.0"], + ["in_all", "text", "postgresql", "2.7.0", "4.2"], + ["in_all", "text", "postgresql", "2.7.0", "5.2"], + ["in_all", "text", "postgresql", "2.7.0", "6.0"], + ["in_all", "text", "postgresql", "2.6.5", "4.2"], + ["in_all", "text", "postgresql", "2.6.5", "5.2"], + ["in_all", "text", "postgresql", "2.6.5", "6.0"], + ["in_all", "text", "postgresql", "2.5.7", "4.2"], + ["in_all", "text", "postgresql", "2.5.7", "5.2"], + ["in_all", "text", "postgresql", "2.5.7", "6.0"], + ["in_all", "text", "postgresql", "2.4.9", "4.2"], + ["in_all", "text", "postgresql", "2.4.9", "5.2"], + ["in_all", "text", "postgresql", "2.4.9", "6.0"], + ["in_all", "text", "mysql", "2.7.0", "4.2"], + ["in_all", "text", "mysql", "2.7.0", "5.2"], + ["in_all", "text", "mysql", "2.7.0", "6.0"], + ["in_all", "text", "mysql", "2.6.5", "4.2"], + ["in_all", "text", "mysql", "2.6.5", "5.2"], + ["in_all", "text", "mysql", "2.6.5", "6.0"], + ["in_all", "text", "mysql", "2.5.7", "4.2"], + ["in_all", "text", "mysql", "2.5.7", "5.2"], + ["in_all", "text", "mysql", "2.5.7", "6.0"], + ["in_all", "text", "mysql", "2.4.9", "4.2"], + ["in_all", "text", "mysql", "2.4.9", "5.2"], + ["in_all", "text", "mysql", "2.4.9", "6.0"], + ["in_all", "text", "sqlite", "2.7.0", "4.2"], + ["in_all", "text", "sqlite", "2.7.0", "5.2"], + ["in_all", "text", "sqlite", "2.7.0", "6.0"], + ["in_all", "text", "sqlite", "2.6.5", "4.2"], + ["in_all", "text", "sqlite", "2.6.5", "5.2"], + ["in_all", "text", "sqlite", "2.6.5", "6.0"], + ["in_all", "text", "sqlite", "2.5.7", "4.2"], + ["in_all", "text", "sqlite", "2.5.7", "5.2"], + ["in_all", "text", "sqlite", "2.5.7", "6.0"], + ["in_all", "text", "sqlite", "2.4.9", "4.2"], + ["in_all", "text", "sqlite", "2.4.9", "5.2"], + ["in_all", "text", "sqlite", "2.4.9", "6.0"], + ["in_all", "time", "postgresql", "2.7.0", "4.2"], + ["in_all", "time", "postgresql", "2.7.0", "5.2"], + ["in_all", "time", "postgresql", "2.7.0", "6.0"], + ["in_all", "time", "postgresql", "2.6.5", "4.2"], + ["in_all", "time", "postgresql", "2.6.5", "5.2"], + ["in_all", "time", "postgresql", "2.6.5", "6.0"], + ["in_all", "time", "postgresql", "2.5.7", "4.2"], + ["in_all", "time", "postgresql", "2.5.7", "5.2"], + ["in_all", "time", "postgresql", "2.5.7", "6.0"], + ["in_all", "time", "postgresql", "2.4.9", "4.2"], + ["in_all", "time", "postgresql", "2.4.9", "5.2"], + ["in_all", "time", "postgresql", "2.4.9", "6.0"], + ["in_all", "time", "mysql", "2.7.0", "4.2"], + ["in_all", "time", "mysql", "2.7.0", "5.2"], + ["in_all", "time", "mysql", "2.7.0", "6.0"], + ["in_all", "time", "mysql", "2.6.5", "4.2"], + ["in_all", "time", "mysql", "2.6.5", "5.2"], + ["in_all", "time", "mysql", "2.6.5", "6.0"], + ["in_all", "time", "mysql", "2.5.7", "4.2"], + ["in_all", "time", "mysql", "2.5.7", "5.2"], + ["in_all", "time", "mysql", "2.5.7", "6.0"], + ["in_all", "time", "mysql", "2.4.9", "4.2"], + ["in_all", "time", "mysql", "2.4.9", "5.2"], + ["in_all", "time", "mysql", "2.4.9", "6.0"], + ["in_all", "time", "sqlite", "2.7.0", "4.2"], + ["in_all", "time", "sqlite", "2.7.0", "5.2"], + ["in_all", "time", "sqlite", "2.7.0", "6.0"], + ["in_all", "time", "sqlite", "2.6.5", "4.2"], + ["in_all", "time", "sqlite", "2.6.5", "5.2"], + ["in_all", "time", "sqlite", "2.6.5", "6.0"], + ["in_all", "time", "sqlite", "2.5.7", "4.2"], + ["in_all", "time", "sqlite", "2.5.7", "5.2"], + ["in_all", "time", "sqlite", "2.5.7", "6.0"], + ["in_all", "time", "sqlite", "2.4.9", "4.2"], + ["in_all", "time", "sqlite", "2.4.9", "5.2"], + ["in_all", "time", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "binary", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "binary", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "binary", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "binary", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "binary", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "binary", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "binary", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "binary", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "binary", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "binary", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "binary", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "binary", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "binary", "mysql", "2.7.0", "4.2"], + ["not_in_any", "binary", "mysql", "2.7.0", "5.2"], + ["not_in_any", "binary", "mysql", "2.7.0", "6.0"], + ["not_in_any", "binary", "mysql", "2.6.5", "4.2"], + ["not_in_any", "binary", "mysql", "2.6.5", "5.2"], + ["not_in_any", "binary", "mysql", "2.6.5", "6.0"], + ["not_in_any", "binary", "mysql", "2.5.7", "4.2"], + ["not_in_any", "binary", "mysql", "2.5.7", "5.2"], + ["not_in_any", "binary", "mysql", "2.5.7", "6.0"], + ["not_in_any", "binary", "mysql", "2.4.9", "4.2"], + ["not_in_any", "binary", "mysql", "2.4.9", "5.2"], + ["not_in_any", "binary", "mysql", "2.4.9", "6.0"], + ["not_in_any", "binary", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "binary", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "binary", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "binary", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "binary", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "binary", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "binary", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "binary", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "binary", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "binary", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "binary", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "binary", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "boolean", "mysql", "2.7.0", "4.2"], + ["not_in_any", "boolean", "mysql", "2.7.0", "5.2"], + ["not_in_any", "boolean", "mysql", "2.7.0", "6.0"], + ["not_in_any", "boolean", "mysql", "2.6.5", "4.2"], + ["not_in_any", "boolean", "mysql", "2.6.5", "5.2"], + ["not_in_any", "boolean", "mysql", "2.6.5", "6.0"], + ["not_in_any", "boolean", "mysql", "2.5.7", "4.2"], + ["not_in_any", "boolean", "mysql", "2.5.7", "5.2"], + ["not_in_any", "boolean", "mysql", "2.5.7", "6.0"], + ["not_in_any", "boolean", "mysql", "2.4.9", "4.2"], + ["not_in_any", "boolean", "mysql", "2.4.9", "5.2"], + ["not_in_any", "boolean", "mysql", "2.4.9", "6.0"], + ["not_in_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "date", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "date", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "date", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "date", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "date", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "date", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "date", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "date", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "date", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "date", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "date", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "date", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "date", "mysql", "2.7.0", "4.2"], + ["not_in_any", "date", "mysql", "2.7.0", "5.2"], + ["not_in_any", "date", "mysql", "2.7.0", "6.0"], + ["not_in_any", "date", "mysql", "2.6.5", "4.2"], + ["not_in_any", "date", "mysql", "2.6.5", "5.2"], + ["not_in_any", "date", "mysql", "2.6.5", "6.0"], + ["not_in_any", "date", "mysql", "2.5.7", "4.2"], + ["not_in_any", "date", "mysql", "2.5.7", "5.2"], + ["not_in_any", "date", "mysql", "2.5.7", "6.0"], + ["not_in_any", "date", "mysql", "2.4.9", "4.2"], + ["not_in_any", "date", "mysql", "2.4.9", "5.2"], + ["not_in_any", "date", "mysql", "2.4.9", "6.0"], + ["not_in_any", "date", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "date", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "date", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "date", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "date", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "date", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "date", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "date", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "date", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "date", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "date", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "date", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "datetime", "mysql", "2.7.0", "4.2"], + ["not_in_any", "datetime", "mysql", "2.7.0", "5.2"], + ["not_in_any", "datetime", "mysql", "2.7.0", "6.0"], + ["not_in_any", "datetime", "mysql", "2.6.5", "4.2"], + ["not_in_any", "datetime", "mysql", "2.6.5", "5.2"], + ["not_in_any", "datetime", "mysql", "2.6.5", "6.0"], + ["not_in_any", "datetime", "mysql", "2.5.7", "4.2"], + ["not_in_any", "datetime", "mysql", "2.5.7", "5.2"], + ["not_in_any", "datetime", "mysql", "2.5.7", "6.0"], + ["not_in_any", "datetime", "mysql", "2.4.9", "4.2"], + ["not_in_any", "datetime", "mysql", "2.4.9", "5.2"], + ["not_in_any", "datetime", "mysql", "2.4.9", "6.0"], + ["not_in_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "decimal", "mysql", "2.7.0", "4.2"], + ["not_in_any", "decimal", "mysql", "2.7.0", "5.2"], + ["not_in_any", "decimal", "mysql", "2.7.0", "6.0"], + ["not_in_any", "decimal", "mysql", "2.6.5", "4.2"], + ["not_in_any", "decimal", "mysql", "2.6.5", "5.2"], + ["not_in_any", "decimal", "mysql", "2.6.5", "6.0"], + ["not_in_any", "decimal", "mysql", "2.5.7", "4.2"], + ["not_in_any", "decimal", "mysql", "2.5.7", "5.2"], + ["not_in_any", "decimal", "mysql", "2.5.7", "6.0"], + ["not_in_any", "decimal", "mysql", "2.4.9", "4.2"], + ["not_in_any", "decimal", "mysql", "2.4.9", "5.2"], + ["not_in_any", "decimal", "mysql", "2.4.9", "6.0"], + ["not_in_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "float", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "float", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "float", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "float", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "float", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "float", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "float", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "float", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "float", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "float", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "float", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "float", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "float", "mysql", "2.7.0", "4.2"], + ["not_in_any", "float", "mysql", "2.7.0", "5.2"], + ["not_in_any", "float", "mysql", "2.7.0", "6.0"], + ["not_in_any", "float", "mysql", "2.6.5", "4.2"], + ["not_in_any", "float", "mysql", "2.6.5", "5.2"], + ["not_in_any", "float", "mysql", "2.6.5", "6.0"], + ["not_in_any", "float", "mysql", "2.5.7", "4.2"], + ["not_in_any", "float", "mysql", "2.5.7", "5.2"], + ["not_in_any", "float", "mysql", "2.5.7", "6.0"], + ["not_in_any", "float", "mysql", "2.4.9", "4.2"], + ["not_in_any", "float", "mysql", "2.4.9", "5.2"], + ["not_in_any", "float", "mysql", "2.4.9", "6.0"], + ["not_in_any", "float", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "float", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "float", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "float", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "float", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "float", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "float", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "float", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "float", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "float", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "float", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "float", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "integer", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "integer", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "integer", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "integer", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "integer", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "integer", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "integer", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "integer", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "integer", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "integer", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "integer", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "integer", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "integer", "mysql", "2.7.0", "4.2"], + ["not_in_any", "integer", "mysql", "2.7.0", "5.2"], + ["not_in_any", "integer", "mysql", "2.7.0", "6.0"], + ["not_in_any", "integer", "mysql", "2.6.5", "4.2"], + ["not_in_any", "integer", "mysql", "2.6.5", "5.2"], + ["not_in_any", "integer", "mysql", "2.6.5", "6.0"], + ["not_in_any", "integer", "mysql", "2.5.7", "4.2"], + ["not_in_any", "integer", "mysql", "2.5.7", "5.2"], + ["not_in_any", "integer", "mysql", "2.5.7", "6.0"], + ["not_in_any", "integer", "mysql", "2.4.9", "4.2"], + ["not_in_any", "integer", "mysql", "2.4.9", "5.2"], + ["not_in_any", "integer", "mysql", "2.4.9", "6.0"], + ["not_in_any", "integer", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "integer", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "integer", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "integer", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "integer", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "integer", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "integer", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "integer", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "integer", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "integer", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "integer", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "integer", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "string", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "string", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "string", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "string", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "string", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "string", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "string", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "string", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "string", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "string", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "string", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "string", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "string", "mysql", "2.7.0", "4.2"], + ["not_in_any", "string", "mysql", "2.7.0", "5.2"], + ["not_in_any", "string", "mysql", "2.7.0", "6.0"], + ["not_in_any", "string", "mysql", "2.6.5", "4.2"], + ["not_in_any", "string", "mysql", "2.6.5", "5.2"], + ["not_in_any", "string", "mysql", "2.6.5", "6.0"], + ["not_in_any", "string", "mysql", "2.5.7", "4.2"], + ["not_in_any", "string", "mysql", "2.5.7", "5.2"], + ["not_in_any", "string", "mysql", "2.5.7", "6.0"], + ["not_in_any", "string", "mysql", "2.4.9", "4.2"], + ["not_in_any", "string", "mysql", "2.4.9", "5.2"], + ["not_in_any", "string", "mysql", "2.4.9", "6.0"], + ["not_in_any", "string", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "string", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "string", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "string", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "string", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "string", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "string", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "string", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "string", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "string", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "string", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "string", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "text", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "text", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "text", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "text", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "text", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "text", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "text", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "text", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "text", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "text", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "text", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "text", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "text", "mysql", "2.7.0", "4.2"], + ["not_in_any", "text", "mysql", "2.7.0", "5.2"], + ["not_in_any", "text", "mysql", "2.7.0", "6.0"], + ["not_in_any", "text", "mysql", "2.6.5", "4.2"], + ["not_in_any", "text", "mysql", "2.6.5", "5.2"], + ["not_in_any", "text", "mysql", "2.6.5", "6.0"], + ["not_in_any", "text", "mysql", "2.5.7", "4.2"], + ["not_in_any", "text", "mysql", "2.5.7", "5.2"], + ["not_in_any", "text", "mysql", "2.5.7", "6.0"], + ["not_in_any", "text", "mysql", "2.4.9", "4.2"], + ["not_in_any", "text", "mysql", "2.4.9", "5.2"], + ["not_in_any", "text", "mysql", "2.4.9", "6.0"], + ["not_in_any", "text", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "text", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "text", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "text", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "text", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "text", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "text", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "text", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "text", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "text", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "text", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "text", "sqlite", "2.4.9", "6.0"], + ["not_in_any", "time", "postgresql", "2.7.0", "4.2"], + ["not_in_any", "time", "postgresql", "2.7.0", "5.2"], + ["not_in_any", "time", "postgresql", "2.7.0", "6.0"], + ["not_in_any", "time", "postgresql", "2.6.5", "4.2"], + ["not_in_any", "time", "postgresql", "2.6.5", "5.2"], + ["not_in_any", "time", "postgresql", "2.6.5", "6.0"], + ["not_in_any", "time", "postgresql", "2.5.7", "4.2"], + ["not_in_any", "time", "postgresql", "2.5.7", "5.2"], + ["not_in_any", "time", "postgresql", "2.5.7", "6.0"], + ["not_in_any", "time", "postgresql", "2.4.9", "4.2"], + ["not_in_any", "time", "postgresql", "2.4.9", "5.2"], + ["not_in_any", "time", "postgresql", "2.4.9", "6.0"], + ["not_in_any", "time", "mysql", "2.7.0", "4.2"], + ["not_in_any", "time", "mysql", "2.7.0", "5.2"], + ["not_in_any", "time", "mysql", "2.7.0", "6.0"], + ["not_in_any", "time", "mysql", "2.6.5", "4.2"], + ["not_in_any", "time", "mysql", "2.6.5", "5.2"], + ["not_in_any", "time", "mysql", "2.6.5", "6.0"], + ["not_in_any", "time", "mysql", "2.5.7", "4.2"], + ["not_in_any", "time", "mysql", "2.5.7", "5.2"], + ["not_in_any", "time", "mysql", "2.5.7", "6.0"], + ["not_in_any", "time", "mysql", "2.4.9", "4.2"], + ["not_in_any", "time", "mysql", "2.4.9", "5.2"], + ["not_in_any", "time", "mysql", "2.4.9", "6.0"], + ["not_in_any", "time", "sqlite", "2.7.0", "4.2"], + ["not_in_any", "time", "sqlite", "2.7.0", "5.2"], + ["not_in_any", "time", "sqlite", "2.7.0", "6.0"], + ["not_in_any", "time", "sqlite", "2.6.5", "4.2"], + ["not_in_any", "time", "sqlite", "2.6.5", "5.2"], + ["not_in_any", "time", "sqlite", "2.6.5", "6.0"], + ["not_in_any", "time", "sqlite", "2.5.7", "4.2"], + ["not_in_any", "time", "sqlite", "2.5.7", "5.2"], + ["not_in_any", "time", "sqlite", "2.5.7", "6.0"], + ["not_in_any", "time", "sqlite", "2.4.9", "4.2"], + ["not_in_any", "time", "sqlite", "2.4.9", "5.2"], + ["not_in_any", "time", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "binary", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "binary", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "binary", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "binary", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "binary", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "binary", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "binary", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "binary", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "binary", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "binary", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "binary", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "binary", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "binary", "mysql", "2.7.0", "4.2"], + ["not_in_all", "binary", "mysql", "2.7.0", "5.2"], + ["not_in_all", "binary", "mysql", "2.7.0", "6.0"], + ["not_in_all", "binary", "mysql", "2.6.5", "4.2"], + ["not_in_all", "binary", "mysql", "2.6.5", "5.2"], + ["not_in_all", "binary", "mysql", "2.6.5", "6.0"], + ["not_in_all", "binary", "mysql", "2.5.7", "4.2"], + ["not_in_all", "binary", "mysql", "2.5.7", "5.2"], + ["not_in_all", "binary", "mysql", "2.5.7", "6.0"], + ["not_in_all", "binary", "mysql", "2.4.9", "4.2"], + ["not_in_all", "binary", "mysql", "2.4.9", "5.2"], + ["not_in_all", "binary", "mysql", "2.4.9", "6.0"], + ["not_in_all", "binary", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "binary", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "binary", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "binary", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "binary", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "binary", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "binary", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "binary", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "binary", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "binary", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "binary", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "binary", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "boolean", "mysql", "2.7.0", "4.2"], + ["not_in_all", "boolean", "mysql", "2.7.0", "5.2"], + ["not_in_all", "boolean", "mysql", "2.7.0", "6.0"], + ["not_in_all", "boolean", "mysql", "2.6.5", "4.2"], + ["not_in_all", "boolean", "mysql", "2.6.5", "5.2"], + ["not_in_all", "boolean", "mysql", "2.6.5", "6.0"], + ["not_in_all", "boolean", "mysql", "2.5.7", "4.2"], + ["not_in_all", "boolean", "mysql", "2.5.7", "5.2"], + ["not_in_all", "boolean", "mysql", "2.5.7", "6.0"], + ["not_in_all", "boolean", "mysql", "2.4.9", "4.2"], + ["not_in_all", "boolean", "mysql", "2.4.9", "5.2"], + ["not_in_all", "boolean", "mysql", "2.4.9", "6.0"], + ["not_in_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "date", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "date", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "date", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "date", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "date", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "date", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "date", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "date", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "date", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "date", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "date", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "date", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "date", "mysql", "2.7.0", "4.2"], + ["not_in_all", "date", "mysql", "2.7.0", "5.2"], + ["not_in_all", "date", "mysql", "2.7.0", "6.0"], + ["not_in_all", "date", "mysql", "2.6.5", "4.2"], + ["not_in_all", "date", "mysql", "2.6.5", "5.2"], + ["not_in_all", "date", "mysql", "2.6.5", "6.0"], + ["not_in_all", "date", "mysql", "2.5.7", "4.2"], + ["not_in_all", "date", "mysql", "2.5.7", "5.2"], + ["not_in_all", "date", "mysql", "2.5.7", "6.0"], + ["not_in_all", "date", "mysql", "2.4.9", "4.2"], + ["not_in_all", "date", "mysql", "2.4.9", "5.2"], + ["not_in_all", "date", "mysql", "2.4.9", "6.0"], + ["not_in_all", "date", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "date", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "date", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "date", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "date", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "date", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "date", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "date", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "date", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "date", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "date", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "date", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "datetime", "mysql", "2.7.0", "4.2"], + ["not_in_all", "datetime", "mysql", "2.7.0", "5.2"], + ["not_in_all", "datetime", "mysql", "2.7.0", "6.0"], + ["not_in_all", "datetime", "mysql", "2.6.5", "4.2"], + ["not_in_all", "datetime", "mysql", "2.6.5", "5.2"], + ["not_in_all", "datetime", "mysql", "2.6.5", "6.0"], + ["not_in_all", "datetime", "mysql", "2.5.7", "4.2"], + ["not_in_all", "datetime", "mysql", "2.5.7", "5.2"], + ["not_in_all", "datetime", "mysql", "2.5.7", "6.0"], + ["not_in_all", "datetime", "mysql", "2.4.9", "4.2"], + ["not_in_all", "datetime", "mysql", "2.4.9", "5.2"], + ["not_in_all", "datetime", "mysql", "2.4.9", "6.0"], + ["not_in_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "decimal", "mysql", "2.7.0", "4.2"], + ["not_in_all", "decimal", "mysql", "2.7.0", "5.2"], + ["not_in_all", "decimal", "mysql", "2.7.0", "6.0"], + ["not_in_all", "decimal", "mysql", "2.6.5", "4.2"], + ["not_in_all", "decimal", "mysql", "2.6.5", "5.2"], + ["not_in_all", "decimal", "mysql", "2.6.5", "6.0"], + ["not_in_all", "decimal", "mysql", "2.5.7", "4.2"], + ["not_in_all", "decimal", "mysql", "2.5.7", "5.2"], + ["not_in_all", "decimal", "mysql", "2.5.7", "6.0"], + ["not_in_all", "decimal", "mysql", "2.4.9", "4.2"], + ["not_in_all", "decimal", "mysql", "2.4.9", "5.2"], + ["not_in_all", "decimal", "mysql", "2.4.9", "6.0"], + ["not_in_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "float", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "float", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "float", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "float", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "float", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "float", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "float", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "float", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "float", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "float", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "float", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "float", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "float", "mysql", "2.7.0", "4.2"], + ["not_in_all", "float", "mysql", "2.7.0", "5.2"], + ["not_in_all", "float", "mysql", "2.7.0", "6.0"], + ["not_in_all", "float", "mysql", "2.6.5", "4.2"], + ["not_in_all", "float", "mysql", "2.6.5", "5.2"], + ["not_in_all", "float", "mysql", "2.6.5", "6.0"], + ["not_in_all", "float", "mysql", "2.5.7", "4.2"], + ["not_in_all", "float", "mysql", "2.5.7", "5.2"], + ["not_in_all", "float", "mysql", "2.5.7", "6.0"], + ["not_in_all", "float", "mysql", "2.4.9", "4.2"], + ["not_in_all", "float", "mysql", "2.4.9", "5.2"], + ["not_in_all", "float", "mysql", "2.4.9", "6.0"], + ["not_in_all", "float", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "float", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "float", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "float", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "float", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "float", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "float", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "float", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "float", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "float", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "float", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "float", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "integer", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "integer", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "integer", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "integer", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "integer", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "integer", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "integer", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "integer", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "integer", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "integer", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "integer", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "integer", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "integer", "mysql", "2.7.0", "4.2"], + ["not_in_all", "integer", "mysql", "2.7.0", "5.2"], + ["not_in_all", "integer", "mysql", "2.7.0", "6.0"], + ["not_in_all", "integer", "mysql", "2.6.5", "4.2"], + ["not_in_all", "integer", "mysql", "2.6.5", "5.2"], + ["not_in_all", "integer", "mysql", "2.6.5", "6.0"], + ["not_in_all", "integer", "mysql", "2.5.7", "4.2"], + ["not_in_all", "integer", "mysql", "2.5.7", "5.2"], + ["not_in_all", "integer", "mysql", "2.5.7", "6.0"], + ["not_in_all", "integer", "mysql", "2.4.9", "4.2"], + ["not_in_all", "integer", "mysql", "2.4.9", "5.2"], + ["not_in_all", "integer", "mysql", "2.4.9", "6.0"], + ["not_in_all", "integer", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "integer", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "integer", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "integer", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "integer", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "integer", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "integer", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "integer", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "integer", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "integer", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "integer", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "integer", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "string", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "string", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "string", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "string", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "string", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "string", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "string", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "string", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "string", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "string", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "string", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "string", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "string", "mysql", "2.7.0", "4.2"], + ["not_in_all", "string", "mysql", "2.7.0", "5.2"], + ["not_in_all", "string", "mysql", "2.7.0", "6.0"], + ["not_in_all", "string", "mysql", "2.6.5", "4.2"], + ["not_in_all", "string", "mysql", "2.6.5", "5.2"], + ["not_in_all", "string", "mysql", "2.6.5", "6.0"], + ["not_in_all", "string", "mysql", "2.5.7", "4.2"], + ["not_in_all", "string", "mysql", "2.5.7", "5.2"], + ["not_in_all", "string", "mysql", "2.5.7", "6.0"], + ["not_in_all", "string", "mysql", "2.4.9", "4.2"], + ["not_in_all", "string", "mysql", "2.4.9", "5.2"], + ["not_in_all", "string", "mysql", "2.4.9", "6.0"], + ["not_in_all", "string", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "string", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "string", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "string", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "string", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "string", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "string", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "string", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "string", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "string", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "string", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "string", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "text", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "text", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "text", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "text", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "text", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "text", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "text", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "text", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "text", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "text", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "text", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "text", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "text", "mysql", "2.7.0", "4.2"], + ["not_in_all", "text", "mysql", "2.7.0", "5.2"], + ["not_in_all", "text", "mysql", "2.7.0", "6.0"], + ["not_in_all", "text", "mysql", "2.6.5", "4.2"], + ["not_in_all", "text", "mysql", "2.6.5", "5.2"], + ["not_in_all", "text", "mysql", "2.6.5", "6.0"], + ["not_in_all", "text", "mysql", "2.5.7", "4.2"], + ["not_in_all", "text", "mysql", "2.5.7", "5.2"], + ["not_in_all", "text", "mysql", "2.5.7", "6.0"], + ["not_in_all", "text", "mysql", "2.4.9", "4.2"], + ["not_in_all", "text", "mysql", "2.4.9", "5.2"], + ["not_in_all", "text", "mysql", "2.4.9", "6.0"], + ["not_in_all", "text", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "text", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "text", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "text", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "text", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "text", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "text", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "text", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "text", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "text", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "text", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "text", "sqlite", "2.4.9", "6.0"], + ["not_in_all", "time", "postgresql", "2.7.0", "4.2"], + ["not_in_all", "time", "postgresql", "2.7.0", "5.2"], + ["not_in_all", "time", "postgresql", "2.7.0", "6.0"], + ["not_in_all", "time", "postgresql", "2.6.5", "4.2"], + ["not_in_all", "time", "postgresql", "2.6.5", "5.2"], + ["not_in_all", "time", "postgresql", "2.6.5", "6.0"], + ["not_in_all", "time", "postgresql", "2.5.7", "4.2"], + ["not_in_all", "time", "postgresql", "2.5.7", "5.2"], + ["not_in_all", "time", "postgresql", "2.5.7", "6.0"], + ["not_in_all", "time", "postgresql", "2.4.9", "4.2"], + ["not_in_all", "time", "postgresql", "2.4.9", "5.2"], + ["not_in_all", "time", "postgresql", "2.4.9", "6.0"], + ["not_in_all", "time", "mysql", "2.7.0", "4.2"], + ["not_in_all", "time", "mysql", "2.7.0", "5.2"], + ["not_in_all", "time", "mysql", "2.7.0", "6.0"], + ["not_in_all", "time", "mysql", "2.6.5", "4.2"], + ["not_in_all", "time", "mysql", "2.6.5", "5.2"], + ["not_in_all", "time", "mysql", "2.6.5", "6.0"], + ["not_in_all", "time", "mysql", "2.5.7", "4.2"], + ["not_in_all", "time", "mysql", "2.5.7", "5.2"], + ["not_in_all", "time", "mysql", "2.5.7", "6.0"], + ["not_in_all", "time", "mysql", "2.4.9", "4.2"], + ["not_in_all", "time", "mysql", "2.4.9", "5.2"], + ["not_in_all", "time", "mysql", "2.4.9", "6.0"], + ["not_in_all", "time", "sqlite", "2.7.0", "4.2"], + ["not_in_all", "time", "sqlite", "2.7.0", "5.2"], + ["not_in_all", "time", "sqlite", "2.7.0", "6.0"], + ["not_in_all", "time", "sqlite", "2.6.5", "4.2"], + ["not_in_all", "time", "sqlite", "2.6.5", "5.2"], + ["not_in_all", "time", "sqlite", "2.6.5", "6.0"], + ["not_in_all", "time", "sqlite", "2.5.7", "4.2"], + ["not_in_all", "time", "sqlite", "2.5.7", "5.2"], + ["not_in_all", "time", "sqlite", "2.5.7", "6.0"], + ["not_in_all", "time", "sqlite", "2.4.9", "4.2"], + ["not_in_all", "time", "sqlite", "2.4.9", "5.2"], + ["not_in_all", "time", "sqlite", "2.4.9", "6.0"], + ["matches", "binary", "postgresql", "2.7.0", "4.2"], + ["matches", "binary", "postgresql", "2.7.0", "5.2"], + ["matches", "binary", "postgresql", "2.7.0", "6.0"], + ["matches", "binary", "postgresql", "2.6.5", "4.2"], + ["matches", "binary", "postgresql", "2.6.5", "5.2"], + ["matches", "binary", "postgresql", "2.6.5", "6.0"], + ["matches", "binary", "postgresql", "2.5.7", "4.2"], + ["matches", "binary", "postgresql", "2.5.7", "5.2"], + ["matches", "binary", "postgresql", "2.5.7", "6.0"], + ["matches", "binary", "postgresql", "2.4.9", "4.2"], + ["matches", "binary", "postgresql", "2.4.9", "5.2"], + ["matches", "binary", "postgresql", "2.4.9", "6.0"], + ["matches", "binary", "mysql", "2.7.0", "4.2"], + ["matches", "binary", "mysql", "2.7.0", "5.2"], + ["matches", "binary", "mysql", "2.7.0", "6.0"], + ["matches", "binary", "mysql", "2.6.5", "4.2"], + ["matches", "binary", "mysql", "2.6.5", "5.2"], + ["matches", "binary", "mysql", "2.6.5", "6.0"], + ["matches", "binary", "mysql", "2.5.7", "4.2"], + ["matches", "binary", "mysql", "2.5.7", "5.2"], + ["matches", "binary", "mysql", "2.5.7", "6.0"], + ["matches", "binary", "mysql", "2.4.9", "4.2"], + ["matches", "binary", "mysql", "2.4.9", "5.2"], + ["matches", "binary", "mysql", "2.4.9", "6.0"], + ["matches", "binary", "sqlite", "2.7.0", "4.2"], + ["matches", "binary", "sqlite", "2.7.0", "5.2"], + ["matches", "binary", "sqlite", "2.7.0", "6.0"], + ["matches", "binary", "sqlite", "2.6.5", "4.2"], + ["matches", "binary", "sqlite", "2.6.5", "5.2"], + ["matches", "binary", "sqlite", "2.6.5", "6.0"], + ["matches", "binary", "sqlite", "2.5.7", "4.2"], + ["matches", "binary", "sqlite", "2.5.7", "5.2"], + ["matches", "binary", "sqlite", "2.5.7", "6.0"], + ["matches", "binary", "sqlite", "2.4.9", "4.2"], + ["matches", "binary", "sqlite", "2.4.9", "5.2"], + ["matches", "binary", "sqlite", "2.4.9", "6.0"], + ["matches", "boolean", "postgresql", "2.7.0", "4.2"], + ["matches", "boolean", "postgresql", "2.7.0", "5.2"], + ["matches", "boolean", "postgresql", "2.7.0", "6.0"], + ["matches", "boolean", "postgresql", "2.6.5", "4.2"], + ["matches", "boolean", "postgresql", "2.6.5", "5.2"], + ["matches", "boolean", "postgresql", "2.6.5", "6.0"], + ["matches", "boolean", "postgresql", "2.5.7", "4.2"], + ["matches", "boolean", "postgresql", "2.5.7", "5.2"], + ["matches", "boolean", "postgresql", "2.5.7", "6.0"], + ["matches", "boolean", "postgresql", "2.4.9", "4.2"], + ["matches", "boolean", "postgresql", "2.4.9", "5.2"], + ["matches", "boolean", "postgresql", "2.4.9", "6.0"], + ["matches", "boolean", "mysql", "2.7.0", "4.2"], + ["matches", "boolean", "mysql", "2.7.0", "5.2"], + ["matches", "boolean", "mysql", "2.7.0", "6.0"], + ["matches", "boolean", "mysql", "2.6.5", "4.2"], + ["matches", "boolean", "mysql", "2.6.5", "5.2"], + ["matches", "boolean", "mysql", "2.6.5", "6.0"], + ["matches", "boolean", "mysql", "2.5.7", "4.2"], + ["matches", "boolean", "mysql", "2.5.7", "5.2"], + ["matches", "boolean", "mysql", "2.5.7", "6.0"], + ["matches", "boolean", "mysql", "2.4.9", "4.2"], + ["matches", "boolean", "mysql", "2.4.9", "5.2"], + ["matches", "boolean", "mysql", "2.4.9", "6.0"], + ["matches", "boolean", "sqlite", "2.7.0", "4.2"], + ["matches", "boolean", "sqlite", "2.7.0", "5.2"], + ["matches", "boolean", "sqlite", "2.7.0", "6.0"], + ["matches", "boolean", "sqlite", "2.6.5", "4.2"], + ["matches", "boolean", "sqlite", "2.6.5", "5.2"], + ["matches", "boolean", "sqlite", "2.6.5", "6.0"], + ["matches", "boolean", "sqlite", "2.5.7", "4.2"], + ["matches", "boolean", "sqlite", "2.5.7", "5.2"], + ["matches", "boolean", "sqlite", "2.5.7", "6.0"], + ["matches", "boolean", "sqlite", "2.4.9", "4.2"], + ["matches", "boolean", "sqlite", "2.4.9", "5.2"], + ["matches", "boolean", "sqlite", "2.4.9", "6.0"], + ["matches", "date", "postgresql", "2.7.0", "4.2"], + ["matches", "date", "postgresql", "2.7.0", "5.2"], + ["matches", "date", "postgresql", "2.7.0", "6.0"], + ["matches", "date", "postgresql", "2.6.5", "4.2"], + ["matches", "date", "postgresql", "2.6.5", "5.2"], + ["matches", "date", "postgresql", "2.6.5", "6.0"], + ["matches", "date", "postgresql", "2.5.7", "4.2"], + ["matches", "date", "postgresql", "2.5.7", "5.2"], + ["matches", "date", "postgresql", "2.5.7", "6.0"], + ["matches", "date", "postgresql", "2.4.9", "4.2"], + ["matches", "date", "postgresql", "2.4.9", "5.2"], + ["matches", "date", "postgresql", "2.4.9", "6.0"], + ["matches", "date", "mysql", "2.7.0", "4.2"], + ["matches", "date", "mysql", "2.7.0", "5.2"], + ["matches", "date", "mysql", "2.7.0", "6.0"], + ["matches", "date", "mysql", "2.6.5", "4.2"], + ["matches", "date", "mysql", "2.6.5", "5.2"], + ["matches", "date", "mysql", "2.6.5", "6.0"], + ["matches", "date", "mysql", "2.5.7", "4.2"], + ["matches", "date", "mysql", "2.5.7", "5.2"], + ["matches", "date", "mysql", "2.5.7", "6.0"], + ["matches", "date", "mysql", "2.4.9", "4.2"], + ["matches", "date", "mysql", "2.4.9", "5.2"], + ["matches", "date", "mysql", "2.4.9", "6.0"], + ["matches", "date", "sqlite", "2.7.0", "4.2"], + ["matches", "date", "sqlite", "2.7.0", "5.2"], + ["matches", "date", "sqlite", "2.7.0", "6.0"], + ["matches", "date", "sqlite", "2.6.5", "4.2"], + ["matches", "date", "sqlite", "2.6.5", "5.2"], + ["matches", "date", "sqlite", "2.6.5", "6.0"], + ["matches", "date", "sqlite", "2.5.7", "4.2"], + ["matches", "date", "sqlite", "2.5.7", "5.2"], + ["matches", "date", "sqlite", "2.5.7", "6.0"], + ["matches", "date", "sqlite", "2.4.9", "4.2"], + ["matches", "date", "sqlite", "2.4.9", "5.2"], + ["matches", "date", "sqlite", "2.4.9", "6.0"], + ["matches", "datetime", "postgresql", "2.7.0", "4.2"], + ["matches", "datetime", "postgresql", "2.7.0", "5.2"], + ["matches", "datetime", "postgresql", "2.7.0", "6.0"], + ["matches", "datetime", "postgresql", "2.6.5", "4.2"], + ["matches", "datetime", "postgresql", "2.6.5", "5.2"], + ["matches", "datetime", "postgresql", "2.6.5", "6.0"], + ["matches", "datetime", "postgresql", "2.5.7", "4.2"], + ["matches", "datetime", "postgresql", "2.5.7", "5.2"], + ["matches", "datetime", "postgresql", "2.5.7", "6.0"], + ["matches", "datetime", "postgresql", "2.4.9", "4.2"], + ["matches", "datetime", "postgresql", "2.4.9", "5.2"], + ["matches", "datetime", "postgresql", "2.4.9", "6.0"], + ["matches", "datetime", "mysql", "2.7.0", "4.2"], + ["matches", "datetime", "mysql", "2.7.0", "5.2"], + ["matches", "datetime", "mysql", "2.7.0", "6.0"], + ["matches", "datetime", "mysql", "2.6.5", "4.2"], + ["matches", "datetime", "mysql", "2.6.5", "5.2"], + ["matches", "datetime", "mysql", "2.6.5", "6.0"], + ["matches", "datetime", "mysql", "2.5.7", "4.2"], + ["matches", "datetime", "mysql", "2.5.7", "5.2"], + ["matches", "datetime", "mysql", "2.5.7", "6.0"], + ["matches", "datetime", "mysql", "2.4.9", "4.2"], + ["matches", "datetime", "mysql", "2.4.9", "5.2"], + ["matches", "datetime", "mysql", "2.4.9", "6.0"], + ["matches", "datetime", "sqlite", "2.7.0", "4.2"], + ["matches", "datetime", "sqlite", "2.7.0", "5.2"], + ["matches", "datetime", "sqlite", "2.7.0", "6.0"], + ["matches", "datetime", "sqlite", "2.6.5", "4.2"], + ["matches", "datetime", "sqlite", "2.6.5", "5.2"], + ["matches", "datetime", "sqlite", "2.6.5", "6.0"], + ["matches", "datetime", "sqlite", "2.5.7", "4.2"], + ["matches", "datetime", "sqlite", "2.5.7", "5.2"], + ["matches", "datetime", "sqlite", "2.5.7", "6.0"], + ["matches", "datetime", "sqlite", "2.4.9", "4.2"], + ["matches", "datetime", "sqlite", "2.4.9", "5.2"], + ["matches", "datetime", "sqlite", "2.4.9", "6.0"], + ["matches", "decimal", "postgresql", "2.7.0", "4.2"], + ["matches", "decimal", "postgresql", "2.7.0", "5.2"], + ["matches", "decimal", "postgresql", "2.7.0", "6.0"], + ["matches", "decimal", "postgresql", "2.6.5", "4.2"], + ["matches", "decimal", "postgresql", "2.6.5", "5.2"], + ["matches", "decimal", "postgresql", "2.6.5", "6.0"], + ["matches", "decimal", "postgresql", "2.5.7", "4.2"], + ["matches", "decimal", "postgresql", "2.5.7", "5.2"], + ["matches", "decimal", "postgresql", "2.5.7", "6.0"], + ["matches", "decimal", "postgresql", "2.4.9", "4.2"], + ["matches", "decimal", "postgresql", "2.4.9", "5.2"], + ["matches", "decimal", "postgresql", "2.4.9", "6.0"], + ["matches", "decimal", "mysql", "2.7.0", "4.2"], + ["matches", "decimal", "mysql", "2.7.0", "5.2"], + ["matches", "decimal", "mysql", "2.7.0", "6.0"], + ["matches", "decimal", "mysql", "2.6.5", "4.2"], + ["matches", "decimal", "mysql", "2.6.5", "5.2"], + ["matches", "decimal", "mysql", "2.6.5", "6.0"], + ["matches", "decimal", "mysql", "2.5.7", "4.2"], + ["matches", "decimal", "mysql", "2.5.7", "5.2"], + ["matches", "decimal", "mysql", "2.5.7", "6.0"], + ["matches", "decimal", "mysql", "2.4.9", "4.2"], + ["matches", "decimal", "mysql", "2.4.9", "5.2"], + ["matches", "decimal", "mysql", "2.4.9", "6.0"], + ["matches", "decimal", "sqlite", "2.7.0", "4.2"], + ["matches", "decimal", "sqlite", "2.7.0", "5.2"], + ["matches", "decimal", "sqlite", "2.7.0", "6.0"], + ["matches", "decimal", "sqlite", "2.6.5", "4.2"], + ["matches", "decimal", "sqlite", "2.6.5", "5.2"], + ["matches", "decimal", "sqlite", "2.6.5", "6.0"], + ["matches", "decimal", "sqlite", "2.5.7", "4.2"], + ["matches", "decimal", "sqlite", "2.5.7", "5.2"], + ["matches", "decimal", "sqlite", "2.5.7", "6.0"], + ["matches", "decimal", "sqlite", "2.4.9", "4.2"], + ["matches", "decimal", "sqlite", "2.4.9", "5.2"], + ["matches", "decimal", "sqlite", "2.4.9", "6.0"], + ["matches", "float", "postgresql", "2.7.0", "4.2"], + ["matches", "float", "postgresql", "2.7.0", "5.2"], + ["matches", "float", "postgresql", "2.7.0", "6.0"], + ["matches", "float", "postgresql", "2.6.5", "4.2"], + ["matches", "float", "postgresql", "2.6.5", "5.2"], + ["matches", "float", "postgresql", "2.6.5", "6.0"], + ["matches", "float", "postgresql", "2.5.7", "4.2"], + ["matches", "float", "postgresql", "2.5.7", "5.2"], + ["matches", "float", "postgresql", "2.5.7", "6.0"], + ["matches", "float", "postgresql", "2.4.9", "4.2"], + ["matches", "float", "postgresql", "2.4.9", "5.2"], + ["matches", "float", "postgresql", "2.4.9", "6.0"], + ["matches", "float", "mysql", "2.7.0", "4.2"], + ["matches", "float", "mysql", "2.7.0", "5.2"], + ["matches", "float", "mysql", "2.7.0", "6.0"], + ["matches", "float", "mysql", "2.6.5", "4.2"], + ["matches", "float", "mysql", "2.6.5", "5.2"], + ["matches", "float", "mysql", "2.6.5", "6.0"], + ["matches", "float", "mysql", "2.5.7", "4.2"], + ["matches", "float", "mysql", "2.5.7", "5.2"], + ["matches", "float", "mysql", "2.5.7", "6.0"], + ["matches", "float", "mysql", "2.4.9", "4.2"], + ["matches", "float", "mysql", "2.4.9", "5.2"], + ["matches", "float", "mysql", "2.4.9", "6.0"], + ["matches", "float", "sqlite", "2.7.0", "4.2"], + ["matches", "float", "sqlite", "2.7.0", "5.2"], + ["matches", "float", "sqlite", "2.7.0", "6.0"], + ["matches", "float", "sqlite", "2.6.5", "4.2"], + ["matches", "float", "sqlite", "2.6.5", "5.2"], + ["matches", "float", "sqlite", "2.6.5", "6.0"], + ["matches", "float", "sqlite", "2.5.7", "4.2"], + ["matches", "float", "sqlite", "2.5.7", "5.2"], + ["matches", "float", "sqlite", "2.5.7", "6.0"], + ["matches", "float", "sqlite", "2.4.9", "4.2"], + ["matches", "float", "sqlite", "2.4.9", "5.2"], + ["matches", "float", "sqlite", "2.4.9", "6.0"], + ["matches", "integer", "postgresql", "2.7.0", "4.2"], + ["matches", "integer", "postgresql", "2.7.0", "5.2"], + ["matches", "integer", "postgresql", "2.7.0", "6.0"], + ["matches", "integer", "postgresql", "2.6.5", "4.2"], + ["matches", "integer", "postgresql", "2.6.5", "5.2"], + ["matches", "integer", "postgresql", "2.6.5", "6.0"], + ["matches", "integer", "postgresql", "2.5.7", "4.2"], + ["matches", "integer", "postgresql", "2.5.7", "5.2"], + ["matches", "integer", "postgresql", "2.5.7", "6.0"], + ["matches", "integer", "postgresql", "2.4.9", "4.2"], + ["matches", "integer", "postgresql", "2.4.9", "5.2"], + ["matches", "integer", "postgresql", "2.4.9", "6.0"], + ["matches", "integer", "mysql", "2.7.0", "4.2"], + ["matches", "integer", "mysql", "2.7.0", "5.2"], + ["matches", "integer", "mysql", "2.7.0", "6.0"], + ["matches", "integer", "mysql", "2.6.5", "4.2"], + ["matches", "integer", "mysql", "2.6.5", "5.2"], + ["matches", "integer", "mysql", "2.6.5", "6.0"], + ["matches", "integer", "mysql", "2.5.7", "4.2"], + ["matches", "integer", "mysql", "2.5.7", "5.2"], + ["matches", "integer", "mysql", "2.5.7", "6.0"], + ["matches", "integer", "mysql", "2.4.9", "4.2"], + ["matches", "integer", "mysql", "2.4.9", "5.2"], + ["matches", "integer", "mysql", "2.4.9", "6.0"], + ["matches", "integer", "sqlite", "2.7.0", "4.2"], + ["matches", "integer", "sqlite", "2.7.0", "5.2"], + ["matches", "integer", "sqlite", "2.7.0", "6.0"], + ["matches", "integer", "sqlite", "2.6.5", "4.2"], + ["matches", "integer", "sqlite", "2.6.5", "5.2"], + ["matches", "integer", "sqlite", "2.6.5", "6.0"], + ["matches", "integer", "sqlite", "2.5.7", "4.2"], + ["matches", "integer", "sqlite", "2.5.7", "5.2"], + ["matches", "integer", "sqlite", "2.5.7", "6.0"], + ["matches", "integer", "sqlite", "2.4.9", "4.2"], + ["matches", "integer", "sqlite", "2.4.9", "5.2"], + ["matches", "integer", "sqlite", "2.4.9", "6.0"], + ["matches", "string", "postgresql", "2.7.0", "4.2"], + ["matches", "string", "postgresql", "2.7.0", "5.2"], + ["matches", "string", "postgresql", "2.7.0", "6.0"], + ["matches", "string", "postgresql", "2.6.5", "4.2"], + ["matches", "string", "postgresql", "2.6.5", "5.2"], + ["matches", "string", "postgresql", "2.6.5", "6.0"], + ["matches", "string", "postgresql", "2.5.7", "4.2"], + ["matches", "string", "postgresql", "2.5.7", "5.2"], + ["matches", "string", "postgresql", "2.5.7", "6.0"], + ["matches", "string", "postgresql", "2.4.9", "4.2"], + ["matches", "string", "postgresql", "2.4.9", "5.2"], + ["matches", "string", "postgresql", "2.4.9", "6.0"], + ["matches", "string", "mysql", "2.7.0", "4.2"], + ["matches", "string", "mysql", "2.7.0", "5.2"], + ["matches", "string", "mysql", "2.7.0", "6.0"], + ["matches", "string", "mysql", "2.6.5", "4.2"], + ["matches", "string", "mysql", "2.6.5", "5.2"], + ["matches", "string", "mysql", "2.6.5", "6.0"], + ["matches", "string", "mysql", "2.5.7", "4.2"], + ["matches", "string", "mysql", "2.5.7", "5.2"], + ["matches", "string", "mysql", "2.5.7", "6.0"], + ["matches", "string", "mysql", "2.4.9", "4.2"], + ["matches", "string", "mysql", "2.4.9", "5.2"], + ["matches", "string", "mysql", "2.4.9", "6.0"], + ["matches", "string", "sqlite", "2.7.0", "4.2"], + ["matches", "string", "sqlite", "2.7.0", "5.2"], + ["matches", "string", "sqlite", "2.7.0", "6.0"], + ["matches", "string", "sqlite", "2.6.5", "4.2"], + ["matches", "string", "sqlite", "2.6.5", "5.2"], + ["matches", "string", "sqlite", "2.6.5", "6.0"], + ["matches", "string", "sqlite", "2.5.7", "4.2"], + ["matches", "string", "sqlite", "2.5.7", "5.2"], + ["matches", "string", "sqlite", "2.5.7", "6.0"], + ["matches", "string", "sqlite", "2.4.9", "4.2"], + ["matches", "string", "sqlite", "2.4.9", "5.2"], + ["matches", "string", "sqlite", "2.4.9", "6.0"], + ["matches", "text", "postgresql", "2.7.0", "4.2"], + ["matches", "text", "postgresql", "2.7.0", "5.2"], + ["matches", "text", "postgresql", "2.7.0", "6.0"], + ["matches", "text", "postgresql", "2.6.5", "4.2"], + ["matches", "text", "postgresql", "2.6.5", "5.2"], + ["matches", "text", "postgresql", "2.6.5", "6.0"], + ["matches", "text", "postgresql", "2.5.7", "4.2"], + ["matches", "text", "postgresql", "2.5.7", "5.2"], + ["matches", "text", "postgresql", "2.5.7", "6.0"], + ["matches", "text", "postgresql", "2.4.9", "4.2"], + ["matches", "text", "postgresql", "2.4.9", "5.2"], + ["matches", "text", "postgresql", "2.4.9", "6.0"], + ["matches", "text", "mysql", "2.7.0", "4.2"], + ["matches", "text", "mysql", "2.7.0", "5.2"], + ["matches", "text", "mysql", "2.7.0", "6.0"], + ["matches", "text", "mysql", "2.6.5", "4.2"], + ["matches", "text", "mysql", "2.6.5", "5.2"], + ["matches", "text", "mysql", "2.6.5", "6.0"], + ["matches", "text", "mysql", "2.5.7", "4.2"], + ["matches", "text", "mysql", "2.5.7", "5.2"], + ["matches", "text", "mysql", "2.5.7", "6.0"], + ["matches", "text", "mysql", "2.4.9", "4.2"], + ["matches", "text", "mysql", "2.4.9", "5.2"], + ["matches", "text", "mysql", "2.4.9", "6.0"], + ["matches", "text", "sqlite", "2.7.0", "4.2"], + ["matches", "text", "sqlite", "2.7.0", "5.2"], + ["matches", "text", "sqlite", "2.7.0", "6.0"], + ["matches", "text", "sqlite", "2.6.5", "4.2"], + ["matches", "text", "sqlite", "2.6.5", "5.2"], + ["matches", "text", "sqlite", "2.6.5", "6.0"], + ["matches", "text", "sqlite", "2.5.7", "4.2"], + ["matches", "text", "sqlite", "2.5.7", "5.2"], + ["matches", "text", "sqlite", "2.5.7", "6.0"], + ["matches", "text", "sqlite", "2.4.9", "4.2"], + ["matches", "text", "sqlite", "2.4.9", "5.2"], + ["matches", "text", "sqlite", "2.4.9", "6.0"], + ["matches", "time", "postgresql", "2.7.0", "4.2"], + ["matches", "time", "postgresql", "2.7.0", "5.2"], + ["matches", "time", "postgresql", "2.7.0", "6.0"], + ["matches", "time", "postgresql", "2.6.5", "4.2"], + ["matches", "time", "postgresql", "2.6.5", "5.2"], + ["matches", "time", "postgresql", "2.6.5", "6.0"], + ["matches", "time", "postgresql", "2.5.7", "4.2"], + ["matches", "time", "postgresql", "2.5.7", "5.2"], + ["matches", "time", "postgresql", "2.5.7", "6.0"], + ["matches", "time", "postgresql", "2.4.9", "4.2"], + ["matches", "time", "postgresql", "2.4.9", "5.2"], + ["matches", "time", "postgresql", "2.4.9", "6.0"], + ["matches", "time", "mysql", "2.7.0", "4.2"], + ["matches", "time", "mysql", "2.7.0", "5.2"], + ["matches", "time", "mysql", "2.7.0", "6.0"], + ["matches", "time", "mysql", "2.6.5", "4.2"], + ["matches", "time", "mysql", "2.6.5", "5.2"], + ["matches", "time", "mysql", "2.6.5", "6.0"], + ["matches", "time", "mysql", "2.5.7", "4.2"], + ["matches", "time", "mysql", "2.5.7", "5.2"], + ["matches", "time", "mysql", "2.5.7", "6.0"], + ["matches", "time", "mysql", "2.4.9", "4.2"], + ["matches", "time", "mysql", "2.4.9", "5.2"], + ["matches", "time", "mysql", "2.4.9", "6.0"], + ["matches", "time", "sqlite", "2.7.0", "4.2"], + ["matches", "time", "sqlite", "2.7.0", "5.2"], + ["matches", "time", "sqlite", "2.7.0", "6.0"], + ["matches", "time", "sqlite", "2.6.5", "4.2"], + ["matches", "time", "sqlite", "2.6.5", "5.2"], + ["matches", "time", "sqlite", "2.6.5", "6.0"], + ["matches", "time", "sqlite", "2.5.7", "4.2"], + ["matches", "time", "sqlite", "2.5.7", "5.2"], + ["matches", "time", "sqlite", "2.5.7", "6.0"], + ["matches", "time", "sqlite", "2.4.9", "4.2"], + ["matches", "time", "sqlite", "2.4.9", "5.2"], + ["matches", "time", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "binary", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "binary", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "binary", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "binary", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "binary", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "binary", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "binary", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "binary", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "binary", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "binary", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "binary", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "binary", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "binary", "mysql", "2.7.0", "4.2"], + ["does_not_match", "binary", "mysql", "2.7.0", "5.2"], + ["does_not_match", "binary", "mysql", "2.7.0", "6.0"], + ["does_not_match", "binary", "mysql", "2.6.5", "4.2"], + ["does_not_match", "binary", "mysql", "2.6.5", "5.2"], + ["does_not_match", "binary", "mysql", "2.6.5", "6.0"], + ["does_not_match", "binary", "mysql", "2.5.7", "4.2"], + ["does_not_match", "binary", "mysql", "2.5.7", "5.2"], + ["does_not_match", "binary", "mysql", "2.5.7", "6.0"], + ["does_not_match", "binary", "mysql", "2.4.9", "4.2"], + ["does_not_match", "binary", "mysql", "2.4.9", "5.2"], + ["does_not_match", "binary", "mysql", "2.4.9", "6.0"], + ["does_not_match", "binary", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "binary", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "binary", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "binary", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "binary", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "binary", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "binary", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "binary", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "binary", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "binary", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "binary", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "binary", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "boolean", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "boolean", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "boolean", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "boolean", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "boolean", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "boolean", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "boolean", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "boolean", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "boolean", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "boolean", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "boolean", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "boolean", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "boolean", "mysql", "2.7.0", "4.2"], + ["does_not_match", "boolean", "mysql", "2.7.0", "5.2"], + ["does_not_match", "boolean", "mysql", "2.7.0", "6.0"], + ["does_not_match", "boolean", "mysql", "2.6.5", "4.2"], + ["does_not_match", "boolean", "mysql", "2.6.5", "5.2"], + ["does_not_match", "boolean", "mysql", "2.6.5", "6.0"], + ["does_not_match", "boolean", "mysql", "2.5.7", "4.2"], + ["does_not_match", "boolean", "mysql", "2.5.7", "5.2"], + ["does_not_match", "boolean", "mysql", "2.5.7", "6.0"], + ["does_not_match", "boolean", "mysql", "2.4.9", "4.2"], + ["does_not_match", "boolean", "mysql", "2.4.9", "5.2"], + ["does_not_match", "boolean", "mysql", "2.4.9", "6.0"], + ["does_not_match", "boolean", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "boolean", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "boolean", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "boolean", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "boolean", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "boolean", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "boolean", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "boolean", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "boolean", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "boolean", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "boolean", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "boolean", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "date", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "date", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "date", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "date", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "date", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "date", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "date", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "date", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "date", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "date", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "date", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "date", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "date", "mysql", "2.7.0", "4.2"], + ["does_not_match", "date", "mysql", "2.7.0", "5.2"], + ["does_not_match", "date", "mysql", "2.7.0", "6.0"], + ["does_not_match", "date", "mysql", "2.6.5", "4.2"], + ["does_not_match", "date", "mysql", "2.6.5", "5.2"], + ["does_not_match", "date", "mysql", "2.6.5", "6.0"], + ["does_not_match", "date", "mysql", "2.5.7", "4.2"], + ["does_not_match", "date", "mysql", "2.5.7", "5.2"], + ["does_not_match", "date", "mysql", "2.5.7", "6.0"], + ["does_not_match", "date", "mysql", "2.4.9", "4.2"], + ["does_not_match", "date", "mysql", "2.4.9", "5.2"], + ["does_not_match", "date", "mysql", "2.4.9", "6.0"], + ["does_not_match", "date", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "date", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "date", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "date", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "date", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "date", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "date", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "date", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "date", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "date", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "date", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "date", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "datetime", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "datetime", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "datetime", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "datetime", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "datetime", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "datetime", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "datetime", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "datetime", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "datetime", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "datetime", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "datetime", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "datetime", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "datetime", "mysql", "2.7.0", "4.2"], + ["does_not_match", "datetime", "mysql", "2.7.0", "5.2"], + ["does_not_match", "datetime", "mysql", "2.7.0", "6.0"], + ["does_not_match", "datetime", "mysql", "2.6.5", "4.2"], + ["does_not_match", "datetime", "mysql", "2.6.5", "5.2"], + ["does_not_match", "datetime", "mysql", "2.6.5", "6.0"], + ["does_not_match", "datetime", "mysql", "2.5.7", "4.2"], + ["does_not_match", "datetime", "mysql", "2.5.7", "5.2"], + ["does_not_match", "datetime", "mysql", "2.5.7", "6.0"], + ["does_not_match", "datetime", "mysql", "2.4.9", "4.2"], + ["does_not_match", "datetime", "mysql", "2.4.9", "5.2"], + ["does_not_match", "datetime", "mysql", "2.4.9", "6.0"], + ["does_not_match", "datetime", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "datetime", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "datetime", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "datetime", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "datetime", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "datetime", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "datetime", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "datetime", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "datetime", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "datetime", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "datetime", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "datetime", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "decimal", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "decimal", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "decimal", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "decimal", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "decimal", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "decimal", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "decimal", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "decimal", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "decimal", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "decimal", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "decimal", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "decimal", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "decimal", "mysql", "2.7.0", "4.2"], + ["does_not_match", "decimal", "mysql", "2.7.0", "5.2"], + ["does_not_match", "decimal", "mysql", "2.7.0", "6.0"], + ["does_not_match", "decimal", "mysql", "2.6.5", "4.2"], + ["does_not_match", "decimal", "mysql", "2.6.5", "5.2"], + ["does_not_match", "decimal", "mysql", "2.6.5", "6.0"], + ["does_not_match", "decimal", "mysql", "2.5.7", "4.2"], + ["does_not_match", "decimal", "mysql", "2.5.7", "5.2"], + ["does_not_match", "decimal", "mysql", "2.5.7", "6.0"], + ["does_not_match", "decimal", "mysql", "2.4.9", "4.2"], + ["does_not_match", "decimal", "mysql", "2.4.9", "5.2"], + ["does_not_match", "decimal", "mysql", "2.4.9", "6.0"], + ["does_not_match", "decimal", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "decimal", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "decimal", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "decimal", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "decimal", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "decimal", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "decimal", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "decimal", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "decimal", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "decimal", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "decimal", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "decimal", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "float", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "float", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "float", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "float", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "float", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "float", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "float", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "float", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "float", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "float", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "float", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "float", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "float", "mysql", "2.7.0", "4.2"], + ["does_not_match", "float", "mysql", "2.7.0", "5.2"], + ["does_not_match", "float", "mysql", "2.7.0", "6.0"], + ["does_not_match", "float", "mysql", "2.6.5", "4.2"], + ["does_not_match", "float", "mysql", "2.6.5", "5.2"], + ["does_not_match", "float", "mysql", "2.6.5", "6.0"], + ["does_not_match", "float", "mysql", "2.5.7", "4.2"], + ["does_not_match", "float", "mysql", "2.5.7", "5.2"], + ["does_not_match", "float", "mysql", "2.5.7", "6.0"], + ["does_not_match", "float", "mysql", "2.4.9", "4.2"], + ["does_not_match", "float", "mysql", "2.4.9", "5.2"], + ["does_not_match", "float", "mysql", "2.4.9", "6.0"], + ["does_not_match", "float", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "float", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "float", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "float", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "float", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "float", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "float", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "float", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "float", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "float", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "float", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "float", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "integer", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "integer", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "integer", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "integer", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "integer", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "integer", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "integer", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "integer", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "integer", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "integer", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "integer", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "integer", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "integer", "mysql", "2.7.0", "4.2"], + ["does_not_match", "integer", "mysql", "2.7.0", "5.2"], + ["does_not_match", "integer", "mysql", "2.7.0", "6.0"], + ["does_not_match", "integer", "mysql", "2.6.5", "4.2"], + ["does_not_match", "integer", "mysql", "2.6.5", "5.2"], + ["does_not_match", "integer", "mysql", "2.6.5", "6.0"], + ["does_not_match", "integer", "mysql", "2.5.7", "4.2"], + ["does_not_match", "integer", "mysql", "2.5.7", "5.2"], + ["does_not_match", "integer", "mysql", "2.5.7", "6.0"], + ["does_not_match", "integer", "mysql", "2.4.9", "4.2"], + ["does_not_match", "integer", "mysql", "2.4.9", "5.2"], + ["does_not_match", "integer", "mysql", "2.4.9", "6.0"], + ["does_not_match", "integer", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "integer", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "integer", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "integer", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "integer", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "integer", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "integer", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "integer", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "integer", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "integer", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "integer", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "integer", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "string", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "string", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "string", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "string", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "string", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "string", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "string", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "string", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "string", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "string", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "string", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "string", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "string", "mysql", "2.7.0", "4.2"], + ["does_not_match", "string", "mysql", "2.7.0", "5.2"], + ["does_not_match", "string", "mysql", "2.7.0", "6.0"], + ["does_not_match", "string", "mysql", "2.6.5", "4.2"], + ["does_not_match", "string", "mysql", "2.6.5", "5.2"], + ["does_not_match", "string", "mysql", "2.6.5", "6.0"], + ["does_not_match", "string", "mysql", "2.5.7", "4.2"], + ["does_not_match", "string", "mysql", "2.5.7", "5.2"], + ["does_not_match", "string", "mysql", "2.5.7", "6.0"], + ["does_not_match", "string", "mysql", "2.4.9", "4.2"], + ["does_not_match", "string", "mysql", "2.4.9", "5.2"], + ["does_not_match", "string", "mysql", "2.4.9", "6.0"], + ["does_not_match", "string", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "string", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "string", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "string", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "string", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "string", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "string", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "string", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "string", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "string", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "string", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "string", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "text", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "text", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "text", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "text", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "text", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "text", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "text", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "text", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "text", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "text", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "text", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "text", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "text", "mysql", "2.7.0", "4.2"], + ["does_not_match", "text", "mysql", "2.7.0", "5.2"], + ["does_not_match", "text", "mysql", "2.7.0", "6.0"], + ["does_not_match", "text", "mysql", "2.6.5", "4.2"], + ["does_not_match", "text", "mysql", "2.6.5", "5.2"], + ["does_not_match", "text", "mysql", "2.6.5", "6.0"], + ["does_not_match", "text", "mysql", "2.5.7", "4.2"], + ["does_not_match", "text", "mysql", "2.5.7", "5.2"], + ["does_not_match", "text", "mysql", "2.5.7", "6.0"], + ["does_not_match", "text", "mysql", "2.4.9", "4.2"], + ["does_not_match", "text", "mysql", "2.4.9", "5.2"], + ["does_not_match", "text", "mysql", "2.4.9", "6.0"], + ["does_not_match", "text", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "text", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "text", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "text", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "text", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "text", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "text", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "text", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "text", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "text", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "text", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "text", "sqlite", "2.4.9", "6.0"], + ["does_not_match", "time", "postgresql", "2.7.0", "4.2"], + ["does_not_match", "time", "postgresql", "2.7.0", "5.2"], + ["does_not_match", "time", "postgresql", "2.7.0", "6.0"], + ["does_not_match", "time", "postgresql", "2.6.5", "4.2"], + ["does_not_match", "time", "postgresql", "2.6.5", "5.2"], + ["does_not_match", "time", "postgresql", "2.6.5", "6.0"], + ["does_not_match", "time", "postgresql", "2.5.7", "4.2"], + ["does_not_match", "time", "postgresql", "2.5.7", "5.2"], + ["does_not_match", "time", "postgresql", "2.5.7", "6.0"], + ["does_not_match", "time", "postgresql", "2.4.9", "4.2"], + ["does_not_match", "time", "postgresql", "2.4.9", "5.2"], + ["does_not_match", "time", "postgresql", "2.4.9", "6.0"], + ["does_not_match", "time", "mysql", "2.7.0", "4.2"], + ["does_not_match", "time", "mysql", "2.7.0", "5.2"], + ["does_not_match", "time", "mysql", "2.7.0", "6.0"], + ["does_not_match", "time", "mysql", "2.6.5", "4.2"], + ["does_not_match", "time", "mysql", "2.6.5", "5.2"], + ["does_not_match", "time", "mysql", "2.6.5", "6.0"], + ["does_not_match", "time", "mysql", "2.5.7", "4.2"], + ["does_not_match", "time", "mysql", "2.5.7", "5.2"], + ["does_not_match", "time", "mysql", "2.5.7", "6.0"], + ["does_not_match", "time", "mysql", "2.4.9", "4.2"], + ["does_not_match", "time", "mysql", "2.4.9", "5.2"], + ["does_not_match", "time", "mysql", "2.4.9", "6.0"], + ["does_not_match", "time", "sqlite", "2.7.0", "4.2"], + ["does_not_match", "time", "sqlite", "2.7.0", "5.2"], + ["does_not_match", "time", "sqlite", "2.7.0", "6.0"], + ["does_not_match", "time", "sqlite", "2.6.5", "4.2"], + ["does_not_match", "time", "sqlite", "2.6.5", "5.2"], + ["does_not_match", "time", "sqlite", "2.6.5", "6.0"], + ["does_not_match", "time", "sqlite", "2.5.7", "4.2"], + ["does_not_match", "time", "sqlite", "2.5.7", "5.2"], + ["does_not_match", "time", "sqlite", "2.5.7", "6.0"], + ["does_not_match", "time", "sqlite", "2.4.9", "4.2"], + ["does_not_match", "time", "sqlite", "2.4.9", "5.2"], + ["does_not_match", "time", "sqlite", "2.4.9", "6.0"], + ["matches_any", "binary", "postgresql", "2.7.0", "4.2"], + ["matches_any", "binary", "postgresql", "2.7.0", "5.2"], + ["matches_any", "binary", "postgresql", "2.7.0", "6.0"], + ["matches_any", "binary", "postgresql", "2.6.5", "4.2"], + ["matches_any", "binary", "postgresql", "2.6.5", "5.2"], + ["matches_any", "binary", "postgresql", "2.6.5", "6.0"], + ["matches_any", "binary", "postgresql", "2.5.7", "4.2"], + ["matches_any", "binary", "postgresql", "2.5.7", "5.2"], + ["matches_any", "binary", "postgresql", "2.5.7", "6.0"], + ["matches_any", "binary", "postgresql", "2.4.9", "4.2"], + ["matches_any", "binary", "postgresql", "2.4.9", "5.2"], + ["matches_any", "binary", "postgresql", "2.4.9", "6.0"], + ["matches_any", "binary", "mysql", "2.7.0", "4.2"], + ["matches_any", "binary", "mysql", "2.7.0", "5.2"], + ["matches_any", "binary", "mysql", "2.7.0", "6.0"], + ["matches_any", "binary", "mysql", "2.6.5", "4.2"], + ["matches_any", "binary", "mysql", "2.6.5", "5.2"], + ["matches_any", "binary", "mysql", "2.6.5", "6.0"], + ["matches_any", "binary", "mysql", "2.5.7", "4.2"], + ["matches_any", "binary", "mysql", "2.5.7", "5.2"], + ["matches_any", "binary", "mysql", "2.5.7", "6.0"], + ["matches_any", "binary", "mysql", "2.4.9", "4.2"], + ["matches_any", "binary", "mysql", "2.4.9", "5.2"], + ["matches_any", "binary", "mysql", "2.4.9", "6.0"], + ["matches_any", "binary", "sqlite", "2.7.0", "4.2"], + ["matches_any", "binary", "sqlite", "2.7.0", "5.2"], + ["matches_any", "binary", "sqlite", "2.7.0", "6.0"], + ["matches_any", "binary", "sqlite", "2.6.5", "4.2"], + ["matches_any", "binary", "sqlite", "2.6.5", "5.2"], + ["matches_any", "binary", "sqlite", "2.6.5", "6.0"], + ["matches_any", "binary", "sqlite", "2.5.7", "4.2"], + ["matches_any", "binary", "sqlite", "2.5.7", "5.2"], + ["matches_any", "binary", "sqlite", "2.5.7", "6.0"], + ["matches_any", "binary", "sqlite", "2.4.9", "4.2"], + ["matches_any", "binary", "sqlite", "2.4.9", "5.2"], + ["matches_any", "binary", "sqlite", "2.4.9", "6.0"], + ["matches_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["matches_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["matches_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["matches_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["matches_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["matches_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["matches_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["matches_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["matches_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["matches_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["matches_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["matches_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["matches_any", "boolean", "mysql", "2.7.0", "4.2"], + ["matches_any", "boolean", "mysql", "2.7.0", "5.2"], + ["matches_any", "boolean", "mysql", "2.7.0", "6.0"], + ["matches_any", "boolean", "mysql", "2.6.5", "4.2"], + ["matches_any", "boolean", "mysql", "2.6.5", "5.2"], + ["matches_any", "boolean", "mysql", "2.6.5", "6.0"], + ["matches_any", "boolean", "mysql", "2.5.7", "4.2"], + ["matches_any", "boolean", "mysql", "2.5.7", "5.2"], + ["matches_any", "boolean", "mysql", "2.5.7", "6.0"], + ["matches_any", "boolean", "mysql", "2.4.9", "4.2"], + ["matches_any", "boolean", "mysql", "2.4.9", "5.2"], + ["matches_any", "boolean", "mysql", "2.4.9", "6.0"], + ["matches_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["matches_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["matches_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["matches_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["matches_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["matches_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["matches_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["matches_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["matches_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["matches_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["matches_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["matches_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["matches_any", "date", "postgresql", "2.7.0", "4.2"], + ["matches_any", "date", "postgresql", "2.7.0", "5.2"], + ["matches_any", "date", "postgresql", "2.7.0", "6.0"], + ["matches_any", "date", "postgresql", "2.6.5", "4.2"], + ["matches_any", "date", "postgresql", "2.6.5", "5.2"], + ["matches_any", "date", "postgresql", "2.6.5", "6.0"], + ["matches_any", "date", "postgresql", "2.5.7", "4.2"], + ["matches_any", "date", "postgresql", "2.5.7", "5.2"], + ["matches_any", "date", "postgresql", "2.5.7", "6.0"], + ["matches_any", "date", "postgresql", "2.4.9", "4.2"], + ["matches_any", "date", "postgresql", "2.4.9", "5.2"], + ["matches_any", "date", "postgresql", "2.4.9", "6.0"], + ["matches_any", "date", "mysql", "2.7.0", "4.2"], + ["matches_any", "date", "mysql", "2.7.0", "5.2"], + ["matches_any", "date", "mysql", "2.7.0", "6.0"], + ["matches_any", "date", "mysql", "2.6.5", "4.2"], + ["matches_any", "date", "mysql", "2.6.5", "5.2"], + ["matches_any", "date", "mysql", "2.6.5", "6.0"], + ["matches_any", "date", "mysql", "2.5.7", "4.2"], + ["matches_any", "date", "mysql", "2.5.7", "5.2"], + ["matches_any", "date", "mysql", "2.5.7", "6.0"], + ["matches_any", "date", "mysql", "2.4.9", "4.2"], + ["matches_any", "date", "mysql", "2.4.9", "5.2"], + ["matches_any", "date", "mysql", "2.4.9", "6.0"], + ["matches_any", "date", "sqlite", "2.7.0", "4.2"], + ["matches_any", "date", "sqlite", "2.7.0", "5.2"], + ["matches_any", "date", "sqlite", "2.7.0", "6.0"], + ["matches_any", "date", "sqlite", "2.6.5", "4.2"], + ["matches_any", "date", "sqlite", "2.6.5", "5.2"], + ["matches_any", "date", "sqlite", "2.6.5", "6.0"], + ["matches_any", "date", "sqlite", "2.5.7", "4.2"], + ["matches_any", "date", "sqlite", "2.5.7", "5.2"], + ["matches_any", "date", "sqlite", "2.5.7", "6.0"], + ["matches_any", "date", "sqlite", "2.4.9", "4.2"], + ["matches_any", "date", "sqlite", "2.4.9", "5.2"], + ["matches_any", "date", "sqlite", "2.4.9", "6.0"], + ["matches_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["matches_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["matches_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["matches_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["matches_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["matches_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["matches_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["matches_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["matches_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["matches_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["matches_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["matches_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["matches_any", "datetime", "mysql", "2.7.0", "4.2"], + ["matches_any", "datetime", "mysql", "2.7.0", "5.2"], + ["matches_any", "datetime", "mysql", "2.7.0", "6.0"], + ["matches_any", "datetime", "mysql", "2.6.5", "4.2"], + ["matches_any", "datetime", "mysql", "2.6.5", "5.2"], + ["matches_any", "datetime", "mysql", "2.6.5", "6.0"], + ["matches_any", "datetime", "mysql", "2.5.7", "4.2"], + ["matches_any", "datetime", "mysql", "2.5.7", "5.2"], + ["matches_any", "datetime", "mysql", "2.5.7", "6.0"], + ["matches_any", "datetime", "mysql", "2.4.9", "4.2"], + ["matches_any", "datetime", "mysql", "2.4.9", "5.2"], + ["matches_any", "datetime", "mysql", "2.4.9", "6.0"], + ["matches_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["matches_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["matches_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["matches_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["matches_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["matches_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["matches_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["matches_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["matches_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["matches_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["matches_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["matches_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["matches_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["matches_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["matches_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["matches_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["matches_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["matches_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["matches_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["matches_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["matches_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["matches_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["matches_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["matches_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["matches_any", "decimal", "mysql", "2.7.0", "4.2"], + ["matches_any", "decimal", "mysql", "2.7.0", "5.2"], + ["matches_any", "decimal", "mysql", "2.7.0", "6.0"], + ["matches_any", "decimal", "mysql", "2.6.5", "4.2"], + ["matches_any", "decimal", "mysql", "2.6.5", "5.2"], + ["matches_any", "decimal", "mysql", "2.6.5", "6.0"], + ["matches_any", "decimal", "mysql", "2.5.7", "4.2"], + ["matches_any", "decimal", "mysql", "2.5.7", "5.2"], + ["matches_any", "decimal", "mysql", "2.5.7", "6.0"], + ["matches_any", "decimal", "mysql", "2.4.9", "4.2"], + ["matches_any", "decimal", "mysql", "2.4.9", "5.2"], + ["matches_any", "decimal", "mysql", "2.4.9", "6.0"], + ["matches_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["matches_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["matches_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["matches_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["matches_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["matches_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["matches_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["matches_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["matches_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["matches_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["matches_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["matches_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["matches_any", "float", "postgresql", "2.7.0", "4.2"], + ["matches_any", "float", "postgresql", "2.7.0", "5.2"], + ["matches_any", "float", "postgresql", "2.7.0", "6.0"], + ["matches_any", "float", "postgresql", "2.6.5", "4.2"], + ["matches_any", "float", "postgresql", "2.6.5", "5.2"], + ["matches_any", "float", "postgresql", "2.6.5", "6.0"], + ["matches_any", "float", "postgresql", "2.5.7", "4.2"], + ["matches_any", "float", "postgresql", "2.5.7", "5.2"], + ["matches_any", "float", "postgresql", "2.5.7", "6.0"], + ["matches_any", "float", "postgresql", "2.4.9", "4.2"], + ["matches_any", "float", "postgresql", "2.4.9", "5.2"], + ["matches_any", "float", "postgresql", "2.4.9", "6.0"], + ["matches_any", "float", "mysql", "2.7.0", "4.2"], + ["matches_any", "float", "mysql", "2.7.0", "5.2"], + ["matches_any", "float", "mysql", "2.7.0", "6.0"], + ["matches_any", "float", "mysql", "2.6.5", "4.2"], + ["matches_any", "float", "mysql", "2.6.5", "5.2"], + ["matches_any", "float", "mysql", "2.6.5", "6.0"], + ["matches_any", "float", "mysql", "2.5.7", "4.2"], + ["matches_any", "float", "mysql", "2.5.7", "5.2"], + ["matches_any", "float", "mysql", "2.5.7", "6.0"], + ["matches_any", "float", "mysql", "2.4.9", "4.2"], + ["matches_any", "float", "mysql", "2.4.9", "5.2"], + ["matches_any", "float", "mysql", "2.4.9", "6.0"], + ["matches_any", "float", "sqlite", "2.7.0", "4.2"], + ["matches_any", "float", "sqlite", "2.7.0", "5.2"], + ["matches_any", "float", "sqlite", "2.7.0", "6.0"], + ["matches_any", "float", "sqlite", "2.6.5", "4.2"], + ["matches_any", "float", "sqlite", "2.6.5", "5.2"], + ["matches_any", "float", "sqlite", "2.6.5", "6.0"], + ["matches_any", "float", "sqlite", "2.5.7", "4.2"], + ["matches_any", "float", "sqlite", "2.5.7", "5.2"], + ["matches_any", "float", "sqlite", "2.5.7", "6.0"], + ["matches_any", "float", "sqlite", "2.4.9", "4.2"], + ["matches_any", "float", "sqlite", "2.4.9", "5.2"], + ["matches_any", "float", "sqlite", "2.4.9", "6.0"], + ["matches_any", "integer", "postgresql", "2.7.0", "4.2"], + ["matches_any", "integer", "postgresql", "2.7.0", "5.2"], + ["matches_any", "integer", "postgresql", "2.7.0", "6.0"], + ["matches_any", "integer", "postgresql", "2.6.5", "4.2"], + ["matches_any", "integer", "postgresql", "2.6.5", "5.2"], + ["matches_any", "integer", "postgresql", "2.6.5", "6.0"], + ["matches_any", "integer", "postgresql", "2.5.7", "4.2"], + ["matches_any", "integer", "postgresql", "2.5.7", "5.2"], + ["matches_any", "integer", "postgresql", "2.5.7", "6.0"], + ["matches_any", "integer", "postgresql", "2.4.9", "4.2"], + ["matches_any", "integer", "postgresql", "2.4.9", "5.2"], + ["matches_any", "integer", "postgresql", "2.4.9", "6.0"], + ["matches_any", "integer", "mysql", "2.7.0", "4.2"], + ["matches_any", "integer", "mysql", "2.7.0", "5.2"], + ["matches_any", "integer", "mysql", "2.7.0", "6.0"], + ["matches_any", "integer", "mysql", "2.6.5", "4.2"], + ["matches_any", "integer", "mysql", "2.6.5", "5.2"], + ["matches_any", "integer", "mysql", "2.6.5", "6.0"], + ["matches_any", "integer", "mysql", "2.5.7", "4.2"], + ["matches_any", "integer", "mysql", "2.5.7", "5.2"], + ["matches_any", "integer", "mysql", "2.5.7", "6.0"], + ["matches_any", "integer", "mysql", "2.4.9", "4.2"], + ["matches_any", "integer", "mysql", "2.4.9", "5.2"], + ["matches_any", "integer", "mysql", "2.4.9", "6.0"], + ["matches_any", "integer", "sqlite", "2.7.0", "4.2"], + ["matches_any", "integer", "sqlite", "2.7.0", "5.2"], + ["matches_any", "integer", "sqlite", "2.7.0", "6.0"], + ["matches_any", "integer", "sqlite", "2.6.5", "4.2"], + ["matches_any", "integer", "sqlite", "2.6.5", "5.2"], + ["matches_any", "integer", "sqlite", "2.6.5", "6.0"], + ["matches_any", "integer", "sqlite", "2.5.7", "4.2"], + ["matches_any", "integer", "sqlite", "2.5.7", "5.2"], + ["matches_any", "integer", "sqlite", "2.5.7", "6.0"], + ["matches_any", "integer", "sqlite", "2.4.9", "4.2"], + ["matches_any", "integer", "sqlite", "2.4.9", "5.2"], + ["matches_any", "integer", "sqlite", "2.4.9", "6.0"], + ["matches_any", "string", "postgresql", "2.7.0", "4.2"], + ["matches_any", "string", "postgresql", "2.7.0", "5.2"], + ["matches_any", "string", "postgresql", "2.7.0", "6.0"], + ["matches_any", "string", "postgresql", "2.6.5", "4.2"], + ["matches_any", "string", "postgresql", "2.6.5", "5.2"], + ["matches_any", "string", "postgresql", "2.6.5", "6.0"], + ["matches_any", "string", "postgresql", "2.5.7", "4.2"], + ["matches_any", "string", "postgresql", "2.5.7", "5.2"], + ["matches_any", "string", "postgresql", "2.5.7", "6.0"], + ["matches_any", "string", "postgresql", "2.4.9", "4.2"], + ["matches_any", "string", "postgresql", "2.4.9", "5.2"], + ["matches_any", "string", "postgresql", "2.4.9", "6.0"], + ["matches_any", "string", "mysql", "2.7.0", "4.2"], + ["matches_any", "string", "mysql", "2.7.0", "5.2"], + ["matches_any", "string", "mysql", "2.7.0", "6.0"], + ["matches_any", "string", "mysql", "2.6.5", "4.2"], + ["matches_any", "string", "mysql", "2.6.5", "5.2"], + ["matches_any", "string", "mysql", "2.6.5", "6.0"], + ["matches_any", "string", "mysql", "2.5.7", "4.2"], + ["matches_any", "string", "mysql", "2.5.7", "5.2"], + ["matches_any", "string", "mysql", "2.5.7", "6.0"], + ["matches_any", "string", "mysql", "2.4.9", "4.2"], + ["matches_any", "string", "mysql", "2.4.9", "5.2"], + ["matches_any", "string", "mysql", "2.4.9", "6.0"], + ["matches_any", "string", "sqlite", "2.7.0", "4.2"], + ["matches_any", "string", "sqlite", "2.7.0", "5.2"], + ["matches_any", "string", "sqlite", "2.7.0", "6.0"], + ["matches_any", "string", "sqlite", "2.6.5", "4.2"], + ["matches_any", "string", "sqlite", "2.6.5", "5.2"], + ["matches_any", "string", "sqlite", "2.6.5", "6.0"], + ["matches_any", "string", "sqlite", "2.5.7", "4.2"], + ["matches_any", "string", "sqlite", "2.5.7", "5.2"], + ["matches_any", "string", "sqlite", "2.5.7", "6.0"], + ["matches_any", "string", "sqlite", "2.4.9", "4.2"], + ["matches_any", "string", "sqlite", "2.4.9", "5.2"], + ["matches_any", "string", "sqlite", "2.4.9", "6.0"], + ["matches_any", "text", "postgresql", "2.7.0", "4.2"], + ["matches_any", "text", "postgresql", "2.7.0", "5.2"], + ["matches_any", "text", "postgresql", "2.7.0", "6.0"], + ["matches_any", "text", "postgresql", "2.6.5", "4.2"], + ["matches_any", "text", "postgresql", "2.6.5", "5.2"], + ["matches_any", "text", "postgresql", "2.6.5", "6.0"], + ["matches_any", "text", "postgresql", "2.5.7", "4.2"], + ["matches_any", "text", "postgresql", "2.5.7", "5.2"], + ["matches_any", "text", "postgresql", "2.5.7", "6.0"], + ["matches_any", "text", "postgresql", "2.4.9", "4.2"], + ["matches_any", "text", "postgresql", "2.4.9", "5.2"], + ["matches_any", "text", "postgresql", "2.4.9", "6.0"], + ["matches_any", "text", "mysql", "2.7.0", "4.2"], + ["matches_any", "text", "mysql", "2.7.0", "5.2"], + ["matches_any", "text", "mysql", "2.7.0", "6.0"], + ["matches_any", "text", "mysql", "2.6.5", "4.2"], + ["matches_any", "text", "mysql", "2.6.5", "5.2"], + ["matches_any", "text", "mysql", "2.6.5", "6.0"], + ["matches_any", "text", "mysql", "2.5.7", "4.2"], + ["matches_any", "text", "mysql", "2.5.7", "5.2"], + ["matches_any", "text", "mysql", "2.5.7", "6.0"], + ["matches_any", "text", "mysql", "2.4.9", "4.2"], + ["matches_any", "text", "mysql", "2.4.9", "5.2"], + ["matches_any", "text", "mysql", "2.4.9", "6.0"], + ["matches_any", "text", "sqlite", "2.7.0", "4.2"], + ["matches_any", "text", "sqlite", "2.7.0", "5.2"], + ["matches_any", "text", "sqlite", "2.7.0", "6.0"], + ["matches_any", "text", "sqlite", "2.6.5", "4.2"], + ["matches_any", "text", "sqlite", "2.6.5", "5.2"], + ["matches_any", "text", "sqlite", "2.6.5", "6.0"], + ["matches_any", "text", "sqlite", "2.5.7", "4.2"], + ["matches_any", "text", "sqlite", "2.5.7", "5.2"], + ["matches_any", "text", "sqlite", "2.5.7", "6.0"], + ["matches_any", "text", "sqlite", "2.4.9", "4.2"], + ["matches_any", "text", "sqlite", "2.4.9", "5.2"], + ["matches_any", "text", "sqlite", "2.4.9", "6.0"], + ["matches_any", "time", "postgresql", "2.7.0", "4.2"], + ["matches_any", "time", "postgresql", "2.7.0", "5.2"], + ["matches_any", "time", "postgresql", "2.7.0", "6.0"], + ["matches_any", "time", "postgresql", "2.6.5", "4.2"], + ["matches_any", "time", "postgresql", "2.6.5", "5.2"], + ["matches_any", "time", "postgresql", "2.6.5", "6.0"], + ["matches_any", "time", "postgresql", "2.5.7", "4.2"], + ["matches_any", "time", "postgresql", "2.5.7", "5.2"], + ["matches_any", "time", "postgresql", "2.5.7", "6.0"], + ["matches_any", "time", "postgresql", "2.4.9", "4.2"], + ["matches_any", "time", "postgresql", "2.4.9", "5.2"], + ["matches_any", "time", "postgresql", "2.4.9", "6.0"], + ["matches_any", "time", "mysql", "2.7.0", "4.2"], + ["matches_any", "time", "mysql", "2.7.0", "5.2"], + ["matches_any", "time", "mysql", "2.7.0", "6.0"], + ["matches_any", "time", "mysql", "2.6.5", "4.2"], + ["matches_any", "time", "mysql", "2.6.5", "5.2"], + ["matches_any", "time", "mysql", "2.6.5", "6.0"], + ["matches_any", "time", "mysql", "2.5.7", "4.2"], + ["matches_any", "time", "mysql", "2.5.7", "5.2"], + ["matches_any", "time", "mysql", "2.5.7", "6.0"], + ["matches_any", "time", "mysql", "2.4.9", "4.2"], + ["matches_any", "time", "mysql", "2.4.9", "5.2"], + ["matches_any", "time", "mysql", "2.4.9", "6.0"], + ["matches_any", "time", "sqlite", "2.7.0", "4.2"], + ["matches_any", "time", "sqlite", "2.7.0", "5.2"], + ["matches_any", "time", "sqlite", "2.7.0", "6.0"], + ["matches_any", "time", "sqlite", "2.6.5", "4.2"], + ["matches_any", "time", "sqlite", "2.6.5", "5.2"], + ["matches_any", "time", "sqlite", "2.6.5", "6.0"], + ["matches_any", "time", "sqlite", "2.5.7", "4.2"], + ["matches_any", "time", "sqlite", "2.5.7", "5.2"], + ["matches_any", "time", "sqlite", "2.5.7", "6.0"], + ["matches_any", "time", "sqlite", "2.4.9", "4.2"], + ["matches_any", "time", "sqlite", "2.4.9", "5.2"], + ["matches_any", "time", "sqlite", "2.4.9", "6.0"], + ["matches_all", "binary", "postgresql", "2.7.0", "4.2"], + ["matches_all", "binary", "postgresql", "2.7.0", "5.2"], + ["matches_all", "binary", "postgresql", "2.7.0", "6.0"], + ["matches_all", "binary", "postgresql", "2.6.5", "4.2"], + ["matches_all", "binary", "postgresql", "2.6.5", "5.2"], + ["matches_all", "binary", "postgresql", "2.6.5", "6.0"], + ["matches_all", "binary", "postgresql", "2.5.7", "4.2"], + ["matches_all", "binary", "postgresql", "2.5.7", "5.2"], + ["matches_all", "binary", "postgresql", "2.5.7", "6.0"], + ["matches_all", "binary", "postgresql", "2.4.9", "4.2"], + ["matches_all", "binary", "postgresql", "2.4.9", "5.2"], + ["matches_all", "binary", "postgresql", "2.4.9", "6.0"], + ["matches_all", "binary", "mysql", "2.7.0", "4.2"], + ["matches_all", "binary", "mysql", "2.7.0", "5.2"], + ["matches_all", "binary", "mysql", "2.7.0", "6.0"], + ["matches_all", "binary", "mysql", "2.6.5", "4.2"], + ["matches_all", "binary", "mysql", "2.6.5", "5.2"], + ["matches_all", "binary", "mysql", "2.6.5", "6.0"], + ["matches_all", "binary", "mysql", "2.5.7", "4.2"], + ["matches_all", "binary", "mysql", "2.5.7", "5.2"], + ["matches_all", "binary", "mysql", "2.5.7", "6.0"], + ["matches_all", "binary", "mysql", "2.4.9", "4.2"], + ["matches_all", "binary", "mysql", "2.4.9", "5.2"], + ["matches_all", "binary", "mysql", "2.4.9", "6.0"], + ["matches_all", "binary", "sqlite", "2.7.0", "4.2"], + ["matches_all", "binary", "sqlite", "2.7.0", "5.2"], + ["matches_all", "binary", "sqlite", "2.7.0", "6.0"], + ["matches_all", "binary", "sqlite", "2.6.5", "4.2"], + ["matches_all", "binary", "sqlite", "2.6.5", "5.2"], + ["matches_all", "binary", "sqlite", "2.6.5", "6.0"], + ["matches_all", "binary", "sqlite", "2.5.7", "4.2"], + ["matches_all", "binary", "sqlite", "2.5.7", "5.2"], + ["matches_all", "binary", "sqlite", "2.5.7", "6.0"], + ["matches_all", "binary", "sqlite", "2.4.9", "4.2"], + ["matches_all", "binary", "sqlite", "2.4.9", "5.2"], + ["matches_all", "binary", "sqlite", "2.4.9", "6.0"], + ["matches_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["matches_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["matches_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["matches_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["matches_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["matches_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["matches_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["matches_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["matches_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["matches_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["matches_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["matches_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["matches_all", "boolean", "mysql", "2.7.0", "4.2"], + ["matches_all", "boolean", "mysql", "2.7.0", "5.2"], + ["matches_all", "boolean", "mysql", "2.7.0", "6.0"], + ["matches_all", "boolean", "mysql", "2.6.5", "4.2"], + ["matches_all", "boolean", "mysql", "2.6.5", "5.2"], + ["matches_all", "boolean", "mysql", "2.6.5", "6.0"], + ["matches_all", "boolean", "mysql", "2.5.7", "4.2"], + ["matches_all", "boolean", "mysql", "2.5.7", "5.2"], + ["matches_all", "boolean", "mysql", "2.5.7", "6.0"], + ["matches_all", "boolean", "mysql", "2.4.9", "4.2"], + ["matches_all", "boolean", "mysql", "2.4.9", "5.2"], + ["matches_all", "boolean", "mysql", "2.4.9", "6.0"], + ["matches_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["matches_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["matches_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["matches_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["matches_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["matches_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["matches_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["matches_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["matches_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["matches_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["matches_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["matches_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["matches_all", "date", "postgresql", "2.7.0", "4.2"], + ["matches_all", "date", "postgresql", "2.7.0", "5.2"], + ["matches_all", "date", "postgresql", "2.7.0", "6.0"], + ["matches_all", "date", "postgresql", "2.6.5", "4.2"], + ["matches_all", "date", "postgresql", "2.6.5", "5.2"], + ["matches_all", "date", "postgresql", "2.6.5", "6.0"], + ["matches_all", "date", "postgresql", "2.5.7", "4.2"], + ["matches_all", "date", "postgresql", "2.5.7", "5.2"], + ["matches_all", "date", "postgresql", "2.5.7", "6.0"], + ["matches_all", "date", "postgresql", "2.4.9", "4.2"], + ["matches_all", "date", "postgresql", "2.4.9", "5.2"], + ["matches_all", "date", "postgresql", "2.4.9", "6.0"], + ["matches_all", "date", "mysql", "2.7.0", "4.2"], + ["matches_all", "date", "mysql", "2.7.0", "5.2"], + ["matches_all", "date", "mysql", "2.7.0", "6.0"], + ["matches_all", "date", "mysql", "2.6.5", "4.2"], + ["matches_all", "date", "mysql", "2.6.5", "5.2"], + ["matches_all", "date", "mysql", "2.6.5", "6.0"], + ["matches_all", "date", "mysql", "2.5.7", "4.2"], + ["matches_all", "date", "mysql", "2.5.7", "5.2"], + ["matches_all", "date", "mysql", "2.5.7", "6.0"], + ["matches_all", "date", "mysql", "2.4.9", "4.2"], + ["matches_all", "date", "mysql", "2.4.9", "5.2"], + ["matches_all", "date", "mysql", "2.4.9", "6.0"], + ["matches_all", "date", "sqlite", "2.7.0", "4.2"], + ["matches_all", "date", "sqlite", "2.7.0", "5.2"], + ["matches_all", "date", "sqlite", "2.7.0", "6.0"], + ["matches_all", "date", "sqlite", "2.6.5", "4.2"], + ["matches_all", "date", "sqlite", "2.6.5", "5.2"], + ["matches_all", "date", "sqlite", "2.6.5", "6.0"], + ["matches_all", "date", "sqlite", "2.5.7", "4.2"], + ["matches_all", "date", "sqlite", "2.5.7", "5.2"], + ["matches_all", "date", "sqlite", "2.5.7", "6.0"], + ["matches_all", "date", "sqlite", "2.4.9", "4.2"], + ["matches_all", "date", "sqlite", "2.4.9", "5.2"], + ["matches_all", "date", "sqlite", "2.4.9", "6.0"], + ["matches_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["matches_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["matches_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["matches_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["matches_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["matches_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["matches_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["matches_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["matches_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["matches_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["matches_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["matches_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["matches_all", "datetime", "mysql", "2.7.0", "4.2"], + ["matches_all", "datetime", "mysql", "2.7.0", "5.2"], + ["matches_all", "datetime", "mysql", "2.7.0", "6.0"], + ["matches_all", "datetime", "mysql", "2.6.5", "4.2"], + ["matches_all", "datetime", "mysql", "2.6.5", "5.2"], + ["matches_all", "datetime", "mysql", "2.6.5", "6.0"], + ["matches_all", "datetime", "mysql", "2.5.7", "4.2"], + ["matches_all", "datetime", "mysql", "2.5.7", "5.2"], + ["matches_all", "datetime", "mysql", "2.5.7", "6.0"], + ["matches_all", "datetime", "mysql", "2.4.9", "4.2"], + ["matches_all", "datetime", "mysql", "2.4.9", "5.2"], + ["matches_all", "datetime", "mysql", "2.4.9", "6.0"], + ["matches_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["matches_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["matches_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["matches_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["matches_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["matches_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["matches_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["matches_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["matches_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["matches_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["matches_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["matches_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["matches_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["matches_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["matches_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["matches_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["matches_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["matches_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["matches_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["matches_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["matches_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["matches_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["matches_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["matches_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["matches_all", "decimal", "mysql", "2.7.0", "4.2"], + ["matches_all", "decimal", "mysql", "2.7.0", "5.2"], + ["matches_all", "decimal", "mysql", "2.7.0", "6.0"], + ["matches_all", "decimal", "mysql", "2.6.5", "4.2"], + ["matches_all", "decimal", "mysql", "2.6.5", "5.2"], + ["matches_all", "decimal", "mysql", "2.6.5", "6.0"], + ["matches_all", "decimal", "mysql", "2.5.7", "4.2"], + ["matches_all", "decimal", "mysql", "2.5.7", "5.2"], + ["matches_all", "decimal", "mysql", "2.5.7", "6.0"], + ["matches_all", "decimal", "mysql", "2.4.9", "4.2"], + ["matches_all", "decimal", "mysql", "2.4.9", "5.2"], + ["matches_all", "decimal", "mysql", "2.4.9", "6.0"], + ["matches_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["matches_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["matches_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["matches_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["matches_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["matches_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["matches_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["matches_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["matches_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["matches_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["matches_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["matches_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["matches_all", "float", "postgresql", "2.7.0", "4.2"], + ["matches_all", "float", "postgresql", "2.7.0", "5.2"], + ["matches_all", "float", "postgresql", "2.7.0", "6.0"], + ["matches_all", "float", "postgresql", "2.6.5", "4.2"], + ["matches_all", "float", "postgresql", "2.6.5", "5.2"], + ["matches_all", "float", "postgresql", "2.6.5", "6.0"], + ["matches_all", "float", "postgresql", "2.5.7", "4.2"], + ["matches_all", "float", "postgresql", "2.5.7", "5.2"], + ["matches_all", "float", "postgresql", "2.5.7", "6.0"], + ["matches_all", "float", "postgresql", "2.4.9", "4.2"], + ["matches_all", "float", "postgresql", "2.4.9", "5.2"], + ["matches_all", "float", "postgresql", "2.4.9", "6.0"], + ["matches_all", "float", "mysql", "2.7.0", "4.2"], + ["matches_all", "float", "mysql", "2.7.0", "5.2"], + ["matches_all", "float", "mysql", "2.7.0", "6.0"], + ["matches_all", "float", "mysql", "2.6.5", "4.2"], + ["matches_all", "float", "mysql", "2.6.5", "5.2"], + ["matches_all", "float", "mysql", "2.6.5", "6.0"], + ["matches_all", "float", "mysql", "2.5.7", "4.2"], + ["matches_all", "float", "mysql", "2.5.7", "5.2"], + ["matches_all", "float", "mysql", "2.5.7", "6.0"], + ["matches_all", "float", "mysql", "2.4.9", "4.2"], + ["matches_all", "float", "mysql", "2.4.9", "5.2"], + ["matches_all", "float", "mysql", "2.4.9", "6.0"], + ["matches_all", "float", "sqlite", "2.7.0", "4.2"], + ["matches_all", "float", "sqlite", "2.7.0", "5.2"], + ["matches_all", "float", "sqlite", "2.7.0", "6.0"], + ["matches_all", "float", "sqlite", "2.6.5", "4.2"], + ["matches_all", "float", "sqlite", "2.6.5", "5.2"], + ["matches_all", "float", "sqlite", "2.6.5", "6.0"], + ["matches_all", "float", "sqlite", "2.5.7", "4.2"], + ["matches_all", "float", "sqlite", "2.5.7", "5.2"], + ["matches_all", "float", "sqlite", "2.5.7", "6.0"], + ["matches_all", "float", "sqlite", "2.4.9", "4.2"], + ["matches_all", "float", "sqlite", "2.4.9", "5.2"], + ["matches_all", "float", "sqlite", "2.4.9", "6.0"], + ["matches_all", "integer", "postgresql", "2.7.0", "4.2"], + ["matches_all", "integer", "postgresql", "2.7.0", "5.2"], + ["matches_all", "integer", "postgresql", "2.7.0", "6.0"], + ["matches_all", "integer", "postgresql", "2.6.5", "4.2"], + ["matches_all", "integer", "postgresql", "2.6.5", "5.2"], + ["matches_all", "integer", "postgresql", "2.6.5", "6.0"], + ["matches_all", "integer", "postgresql", "2.5.7", "4.2"], + ["matches_all", "integer", "postgresql", "2.5.7", "5.2"], + ["matches_all", "integer", "postgresql", "2.5.7", "6.0"], + ["matches_all", "integer", "postgresql", "2.4.9", "4.2"], + ["matches_all", "integer", "postgresql", "2.4.9", "5.2"], + ["matches_all", "integer", "postgresql", "2.4.9", "6.0"], + ["matches_all", "integer", "mysql", "2.7.0", "4.2"], + ["matches_all", "integer", "mysql", "2.7.0", "5.2"], + ["matches_all", "integer", "mysql", "2.7.0", "6.0"], + ["matches_all", "integer", "mysql", "2.6.5", "4.2"], + ["matches_all", "integer", "mysql", "2.6.5", "5.2"], + ["matches_all", "integer", "mysql", "2.6.5", "6.0"], + ["matches_all", "integer", "mysql", "2.5.7", "4.2"], + ["matches_all", "integer", "mysql", "2.5.7", "5.2"], + ["matches_all", "integer", "mysql", "2.5.7", "6.0"], + ["matches_all", "integer", "mysql", "2.4.9", "4.2"], + ["matches_all", "integer", "mysql", "2.4.9", "5.2"], + ["matches_all", "integer", "mysql", "2.4.9", "6.0"], + ["matches_all", "integer", "sqlite", "2.7.0", "4.2"], + ["matches_all", "integer", "sqlite", "2.7.0", "5.2"], + ["matches_all", "integer", "sqlite", "2.7.0", "6.0"], + ["matches_all", "integer", "sqlite", "2.6.5", "4.2"], + ["matches_all", "integer", "sqlite", "2.6.5", "5.2"], + ["matches_all", "integer", "sqlite", "2.6.5", "6.0"], + ["matches_all", "integer", "sqlite", "2.5.7", "4.2"], + ["matches_all", "integer", "sqlite", "2.5.7", "5.2"], + ["matches_all", "integer", "sqlite", "2.5.7", "6.0"], + ["matches_all", "integer", "sqlite", "2.4.9", "4.2"], + ["matches_all", "integer", "sqlite", "2.4.9", "5.2"], + ["matches_all", "integer", "sqlite", "2.4.9", "6.0"], + ["matches_all", "string", "postgresql", "2.7.0", "4.2"], + ["matches_all", "string", "postgresql", "2.7.0", "5.2"], + ["matches_all", "string", "postgresql", "2.7.0", "6.0"], + ["matches_all", "string", "postgresql", "2.6.5", "4.2"], + ["matches_all", "string", "postgresql", "2.6.5", "5.2"], + ["matches_all", "string", "postgresql", "2.6.5", "6.0"], + ["matches_all", "string", "postgresql", "2.5.7", "4.2"], + ["matches_all", "string", "postgresql", "2.5.7", "5.2"], + ["matches_all", "string", "postgresql", "2.5.7", "6.0"], + ["matches_all", "string", "postgresql", "2.4.9", "4.2"], + ["matches_all", "string", "postgresql", "2.4.9", "5.2"], + ["matches_all", "string", "postgresql", "2.4.9", "6.0"], + ["matches_all", "string", "mysql", "2.7.0", "4.2"], + ["matches_all", "string", "mysql", "2.7.0", "5.2"], + ["matches_all", "string", "mysql", "2.7.0", "6.0"], + ["matches_all", "string", "mysql", "2.6.5", "4.2"], + ["matches_all", "string", "mysql", "2.6.5", "5.2"], + ["matches_all", "string", "mysql", "2.6.5", "6.0"], + ["matches_all", "string", "mysql", "2.5.7", "4.2"], + ["matches_all", "string", "mysql", "2.5.7", "5.2"], + ["matches_all", "string", "mysql", "2.5.7", "6.0"], + ["matches_all", "string", "mysql", "2.4.9", "4.2"], + ["matches_all", "string", "mysql", "2.4.9", "5.2"], + ["matches_all", "string", "mysql", "2.4.9", "6.0"], + ["matches_all", "string", "sqlite", "2.7.0", "4.2"], + ["matches_all", "string", "sqlite", "2.7.0", "5.2"], + ["matches_all", "string", "sqlite", "2.7.0", "6.0"], + ["matches_all", "string", "sqlite", "2.6.5", "4.2"], + ["matches_all", "string", "sqlite", "2.6.5", "5.2"], + ["matches_all", "string", "sqlite", "2.6.5", "6.0"], + ["matches_all", "string", "sqlite", "2.5.7", "4.2"], + ["matches_all", "string", "sqlite", "2.5.7", "5.2"], + ["matches_all", "string", "sqlite", "2.5.7", "6.0"], + ["matches_all", "string", "sqlite", "2.4.9", "4.2"], + ["matches_all", "string", "sqlite", "2.4.9", "5.2"], + ["matches_all", "string", "sqlite", "2.4.9", "6.0"], + ["matches_all", "text", "postgresql", "2.7.0", "4.2"], + ["matches_all", "text", "postgresql", "2.7.0", "5.2"], + ["matches_all", "text", "postgresql", "2.7.0", "6.0"], + ["matches_all", "text", "postgresql", "2.6.5", "4.2"], + ["matches_all", "text", "postgresql", "2.6.5", "5.2"], + ["matches_all", "text", "postgresql", "2.6.5", "6.0"], + ["matches_all", "text", "postgresql", "2.5.7", "4.2"], + ["matches_all", "text", "postgresql", "2.5.7", "5.2"], + ["matches_all", "text", "postgresql", "2.5.7", "6.0"], + ["matches_all", "text", "postgresql", "2.4.9", "4.2"], + ["matches_all", "text", "postgresql", "2.4.9", "5.2"], + ["matches_all", "text", "postgresql", "2.4.9", "6.0"], + ["matches_all", "text", "mysql", "2.7.0", "4.2"], + ["matches_all", "text", "mysql", "2.7.0", "5.2"], + ["matches_all", "text", "mysql", "2.7.0", "6.0"], + ["matches_all", "text", "mysql", "2.6.5", "4.2"], + ["matches_all", "text", "mysql", "2.6.5", "5.2"], + ["matches_all", "text", "mysql", "2.6.5", "6.0"], + ["matches_all", "text", "mysql", "2.5.7", "4.2"], + ["matches_all", "text", "mysql", "2.5.7", "5.2"], + ["matches_all", "text", "mysql", "2.5.7", "6.0"], + ["matches_all", "text", "mysql", "2.4.9", "4.2"], + ["matches_all", "text", "mysql", "2.4.9", "5.2"], + ["matches_all", "text", "mysql", "2.4.9", "6.0"], + ["matches_all", "text", "sqlite", "2.7.0", "4.2"], + ["matches_all", "text", "sqlite", "2.7.0", "5.2"], + ["matches_all", "text", "sqlite", "2.7.0", "6.0"], + ["matches_all", "text", "sqlite", "2.6.5", "4.2"], + ["matches_all", "text", "sqlite", "2.6.5", "5.2"], + ["matches_all", "text", "sqlite", "2.6.5", "6.0"], + ["matches_all", "text", "sqlite", "2.5.7", "4.2"], + ["matches_all", "text", "sqlite", "2.5.7", "5.2"], + ["matches_all", "text", "sqlite", "2.5.7", "6.0"], + ["matches_all", "text", "sqlite", "2.4.9", "4.2"], + ["matches_all", "text", "sqlite", "2.4.9", "5.2"], + ["matches_all", "text", "sqlite", "2.4.9", "6.0"], + ["matches_all", "time", "postgresql", "2.7.0", "4.2"], + ["matches_all", "time", "postgresql", "2.7.0", "5.2"], + ["matches_all", "time", "postgresql", "2.7.0", "6.0"], + ["matches_all", "time", "postgresql", "2.6.5", "4.2"], + ["matches_all", "time", "postgresql", "2.6.5", "5.2"], + ["matches_all", "time", "postgresql", "2.6.5", "6.0"], + ["matches_all", "time", "postgresql", "2.5.7", "4.2"], + ["matches_all", "time", "postgresql", "2.5.7", "5.2"], + ["matches_all", "time", "postgresql", "2.5.7", "6.0"], + ["matches_all", "time", "postgresql", "2.4.9", "4.2"], + ["matches_all", "time", "postgresql", "2.4.9", "5.2"], + ["matches_all", "time", "postgresql", "2.4.9", "6.0"], + ["matches_all", "time", "mysql", "2.7.0", "4.2"], + ["matches_all", "time", "mysql", "2.7.0", "5.2"], + ["matches_all", "time", "mysql", "2.7.0", "6.0"], + ["matches_all", "time", "mysql", "2.6.5", "4.2"], + ["matches_all", "time", "mysql", "2.6.5", "5.2"], + ["matches_all", "time", "mysql", "2.6.5", "6.0"], + ["matches_all", "time", "mysql", "2.5.7", "4.2"], + ["matches_all", "time", "mysql", "2.5.7", "5.2"], + ["matches_all", "time", "mysql", "2.5.7", "6.0"], + ["matches_all", "time", "mysql", "2.4.9", "4.2"], + ["matches_all", "time", "mysql", "2.4.9", "5.2"], + ["matches_all", "time", "mysql", "2.4.9", "6.0"], + ["matches_all", "time", "sqlite", "2.7.0", "4.2"], + ["matches_all", "time", "sqlite", "2.7.0", "5.2"], + ["matches_all", "time", "sqlite", "2.7.0", "6.0"], + ["matches_all", "time", "sqlite", "2.6.5", "4.2"], + ["matches_all", "time", "sqlite", "2.6.5", "5.2"], + ["matches_all", "time", "sqlite", "2.6.5", "6.0"], + ["matches_all", "time", "sqlite", "2.5.7", "4.2"], + ["matches_all", "time", "sqlite", "2.5.7", "5.2"], + ["matches_all", "time", "sqlite", "2.5.7", "6.0"], + ["matches_all", "time", "sqlite", "2.4.9", "4.2"], + ["matches_all", "time", "sqlite", "2.4.9", "5.2"], + ["matches_all", "time", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "binary", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "binary", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "binary", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "binary", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "binary", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "binary", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "binary", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "binary", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "binary", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "binary", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "binary", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "binary", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "binary", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "binary", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "binary", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "binary", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "binary", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "binary", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "binary", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "binary", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "binary", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "binary", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "binary", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "binary", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "binary", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "binary", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "binary", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "binary", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "binary", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "binary", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "binary", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "binary", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "binary", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "binary", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "binary", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "binary", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "boolean", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "boolean", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "boolean", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "boolean", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "boolean", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "boolean", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "boolean", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "boolean", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "boolean", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "boolean", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "boolean", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "boolean", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "date", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "date", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "date", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "date", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "date", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "date", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "date", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "date", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "date", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "date", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "date", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "date", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "date", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "date", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "date", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "date", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "date", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "date", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "date", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "date", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "date", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "date", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "date", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "date", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "date", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "date", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "date", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "date", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "date", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "date", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "date", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "date", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "date", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "date", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "date", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "date", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "datetime", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "datetime", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "datetime", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "datetime", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "datetime", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "datetime", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "datetime", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "datetime", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "datetime", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "datetime", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "datetime", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "datetime", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "decimal", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "decimal", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "decimal", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "decimal", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "decimal", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "decimal", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "decimal", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "decimal", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "decimal", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "decimal", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "decimal", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "decimal", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "float", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "float", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "float", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "float", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "float", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "float", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "float", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "float", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "float", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "float", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "float", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "float", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "float", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "float", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "float", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "float", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "float", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "float", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "float", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "float", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "float", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "float", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "float", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "float", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "float", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "float", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "float", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "float", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "float", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "float", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "float", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "float", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "float", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "float", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "float", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "float", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "integer", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "integer", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "integer", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "integer", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "integer", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "integer", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "integer", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "integer", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "integer", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "integer", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "integer", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "integer", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "integer", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "integer", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "integer", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "integer", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "integer", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "integer", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "integer", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "integer", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "integer", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "integer", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "integer", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "integer", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "integer", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "integer", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "integer", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "integer", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "integer", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "integer", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "integer", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "integer", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "integer", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "integer", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "integer", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "integer", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "string", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "string", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "string", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "string", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "string", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "string", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "string", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "string", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "string", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "string", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "string", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "string", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "string", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "string", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "string", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "string", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "string", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "string", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "string", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "string", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "string", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "string", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "string", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "string", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "string", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "string", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "string", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "string", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "string", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "string", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "string", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "string", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "string", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "string", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "string", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "string", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "text", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "text", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "text", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "text", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "text", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "text", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "text", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "text", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "text", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "text", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "text", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "text", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "text", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "text", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "text", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "text", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "text", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "text", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "text", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "text", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "text", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "text", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "text", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "text", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "text", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "text", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "text", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "text", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "text", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "text", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "text", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "text", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "text", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "text", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "text", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "text", "sqlite", "2.4.9", "6.0"], + ["does_not_match_any", "time", "postgresql", "2.7.0", "4.2"], + ["does_not_match_any", "time", "postgresql", "2.7.0", "5.2"], + ["does_not_match_any", "time", "postgresql", "2.7.0", "6.0"], + ["does_not_match_any", "time", "postgresql", "2.6.5", "4.2"], + ["does_not_match_any", "time", "postgresql", "2.6.5", "5.2"], + ["does_not_match_any", "time", "postgresql", "2.6.5", "6.0"], + ["does_not_match_any", "time", "postgresql", "2.5.7", "4.2"], + ["does_not_match_any", "time", "postgresql", "2.5.7", "5.2"], + ["does_not_match_any", "time", "postgresql", "2.5.7", "6.0"], + ["does_not_match_any", "time", "postgresql", "2.4.9", "4.2"], + ["does_not_match_any", "time", "postgresql", "2.4.9", "5.2"], + ["does_not_match_any", "time", "postgresql", "2.4.9", "6.0"], + ["does_not_match_any", "time", "mysql", "2.7.0", "4.2"], + ["does_not_match_any", "time", "mysql", "2.7.0", "5.2"], + ["does_not_match_any", "time", "mysql", "2.7.0", "6.0"], + ["does_not_match_any", "time", "mysql", "2.6.5", "4.2"], + ["does_not_match_any", "time", "mysql", "2.6.5", "5.2"], + ["does_not_match_any", "time", "mysql", "2.6.5", "6.0"], + ["does_not_match_any", "time", "mysql", "2.5.7", "4.2"], + ["does_not_match_any", "time", "mysql", "2.5.7", "5.2"], + ["does_not_match_any", "time", "mysql", "2.5.7", "6.0"], + ["does_not_match_any", "time", "mysql", "2.4.9", "4.2"], + ["does_not_match_any", "time", "mysql", "2.4.9", "5.2"], + ["does_not_match_any", "time", "mysql", "2.4.9", "6.0"], + ["does_not_match_any", "time", "sqlite", "2.7.0", "4.2"], + ["does_not_match_any", "time", "sqlite", "2.7.0", "5.2"], + ["does_not_match_any", "time", "sqlite", "2.7.0", "6.0"], + ["does_not_match_any", "time", "sqlite", "2.6.5", "4.2"], + ["does_not_match_any", "time", "sqlite", "2.6.5", "5.2"], + ["does_not_match_any", "time", "sqlite", "2.6.5", "6.0"], + ["does_not_match_any", "time", "sqlite", "2.5.7", "4.2"], + ["does_not_match_any", "time", "sqlite", "2.5.7", "5.2"], + ["does_not_match_any", "time", "sqlite", "2.5.7", "6.0"], + ["does_not_match_any", "time", "sqlite", "2.4.9", "4.2"], + ["does_not_match_any", "time", "sqlite", "2.4.9", "5.2"], + ["does_not_match_any", "time", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "binary", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "binary", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "binary", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "binary", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "binary", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "binary", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "binary", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "binary", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "binary", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "binary", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "binary", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "binary", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "binary", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "binary", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "binary", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "binary", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "binary", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "binary", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "binary", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "binary", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "binary", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "binary", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "binary", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "binary", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "binary", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "binary", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "binary", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "binary", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "binary", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "binary", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "binary", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "binary", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "binary", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "binary", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "binary", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "binary", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "boolean", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "boolean", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "boolean", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "boolean", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "boolean", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "boolean", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "boolean", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "boolean", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "boolean", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "boolean", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "boolean", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "boolean", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "date", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "date", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "date", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "date", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "date", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "date", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "date", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "date", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "date", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "date", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "date", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "date", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "date", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "date", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "date", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "date", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "date", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "date", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "date", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "date", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "date", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "date", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "date", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "date", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "date", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "date", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "date", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "date", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "date", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "date", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "date", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "date", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "date", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "date", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "date", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "date", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "datetime", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "datetime", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "datetime", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "datetime", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "datetime", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "datetime", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "datetime", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "datetime", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "datetime", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "datetime", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "datetime", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "datetime", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "decimal", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "decimal", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "decimal", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "decimal", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "decimal", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "decimal", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "decimal", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "decimal", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "decimal", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "decimal", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "decimal", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "decimal", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "float", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "float", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "float", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "float", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "float", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "float", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "float", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "float", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "float", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "float", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "float", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "float", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "float", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "float", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "float", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "float", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "float", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "float", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "float", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "float", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "float", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "float", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "float", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "float", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "float", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "float", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "float", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "float", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "float", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "float", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "float", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "float", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "float", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "float", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "float", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "float", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "integer", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "integer", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "integer", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "integer", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "integer", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "integer", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "integer", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "integer", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "integer", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "integer", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "integer", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "integer", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "integer", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "integer", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "integer", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "integer", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "integer", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "integer", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "integer", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "integer", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "integer", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "integer", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "integer", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "integer", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "integer", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "integer", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "integer", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "integer", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "integer", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "integer", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "integer", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "integer", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "integer", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "integer", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "integer", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "integer", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "string", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "string", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "string", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "string", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "string", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "string", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "string", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "string", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "string", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "string", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "string", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "string", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "string", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "string", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "string", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "string", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "string", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "string", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "string", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "string", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "string", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "string", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "string", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "string", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "string", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "string", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "string", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "string", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "string", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "string", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "string", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "string", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "string", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "string", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "string", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "string", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "text", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "text", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "text", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "text", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "text", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "text", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "text", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "text", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "text", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "text", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "text", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "text", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "text", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "text", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "text", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "text", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "text", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "text", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "text", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "text", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "text", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "text", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "text", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "text", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "text", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "text", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "text", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "text", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "text", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "text", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "text", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "text", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "text", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "text", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "text", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "text", "sqlite", "2.4.9", "6.0"], + ["does_not_match_all", "time", "postgresql", "2.7.0", "4.2"], + ["does_not_match_all", "time", "postgresql", "2.7.0", "5.2"], + ["does_not_match_all", "time", "postgresql", "2.7.0", "6.0"], + ["does_not_match_all", "time", "postgresql", "2.6.5", "4.2"], + ["does_not_match_all", "time", "postgresql", "2.6.5", "5.2"], + ["does_not_match_all", "time", "postgresql", "2.6.5", "6.0"], + ["does_not_match_all", "time", "postgresql", "2.5.7", "4.2"], + ["does_not_match_all", "time", "postgresql", "2.5.7", "5.2"], + ["does_not_match_all", "time", "postgresql", "2.5.7", "6.0"], + ["does_not_match_all", "time", "postgresql", "2.4.9", "4.2"], + ["does_not_match_all", "time", "postgresql", "2.4.9", "5.2"], + ["does_not_match_all", "time", "postgresql", "2.4.9", "6.0"], + ["does_not_match_all", "time", "mysql", "2.7.0", "4.2"], + ["does_not_match_all", "time", "mysql", "2.7.0", "5.2"], + ["does_not_match_all", "time", "mysql", "2.7.0", "6.0"], + ["does_not_match_all", "time", "mysql", "2.6.5", "4.2"], + ["does_not_match_all", "time", "mysql", "2.6.5", "5.2"], + ["does_not_match_all", "time", "mysql", "2.6.5", "6.0"], + ["does_not_match_all", "time", "mysql", "2.5.7", "4.2"], + ["does_not_match_all", "time", "mysql", "2.5.7", "5.2"], + ["does_not_match_all", "time", "mysql", "2.5.7", "6.0"], + ["does_not_match_all", "time", "mysql", "2.4.9", "4.2"], + ["does_not_match_all", "time", "mysql", "2.4.9", "5.2"], + ["does_not_match_all", "time", "mysql", "2.4.9", "6.0"], + ["does_not_match_all", "time", "sqlite", "2.7.0", "4.2"], + ["does_not_match_all", "time", "sqlite", "2.7.0", "5.2"], + ["does_not_match_all", "time", "sqlite", "2.7.0", "6.0"], + ["does_not_match_all", "time", "sqlite", "2.6.5", "4.2"], + ["does_not_match_all", "time", "sqlite", "2.6.5", "5.2"], + ["does_not_match_all", "time", "sqlite", "2.6.5", "6.0"], + ["does_not_match_all", "time", "sqlite", "2.5.7", "4.2"], + ["does_not_match_all", "time", "sqlite", "2.5.7", "5.2"], + ["does_not_match_all", "time", "sqlite", "2.5.7", "6.0"], + ["does_not_match_all", "time", "sqlite", "2.4.9", "4.2"], + ["does_not_match_all", "time", "sqlite", "2.4.9", "5.2"], + ["does_not_match_all", "time", "sqlite", "2.4.9", "6.0"], + ["lt", "binary", "postgresql", "2.7.0", "4.2"], + ["lt", "binary", "postgresql", "2.7.0", "5.2"], + ["lt", "binary", "postgresql", "2.7.0", "6.0"], + ["lt", "binary", "postgresql", "2.6.5", "4.2"], + ["lt", "binary", "postgresql", "2.6.5", "5.2"], + ["lt", "binary", "postgresql", "2.6.5", "6.0"], + ["lt", "binary", "postgresql", "2.5.7", "4.2"], + ["lt", "binary", "postgresql", "2.5.7", "5.2"], + ["lt", "binary", "postgresql", "2.5.7", "6.0"], + ["lt", "binary", "postgresql", "2.4.9", "4.2"], + ["lt", "binary", "postgresql", "2.4.9", "5.2"], + ["lt", "binary", "postgresql", "2.4.9", "6.0"], + ["lt", "binary", "mysql", "2.7.0", "4.2"], + ["lt", "binary", "mysql", "2.7.0", "5.2"], + ["lt", "binary", "mysql", "2.7.0", "6.0"], + ["lt", "binary", "mysql", "2.6.5", "4.2"], + ["lt", "binary", "mysql", "2.6.5", "5.2"], + ["lt", "binary", "mysql", "2.6.5", "6.0"], + ["lt", "binary", "mysql", "2.5.7", "4.2"], + ["lt", "binary", "mysql", "2.5.7", "5.2"], + ["lt", "binary", "mysql", "2.5.7", "6.0"], + ["lt", "binary", "mysql", "2.4.9", "4.2"], + ["lt", "binary", "mysql", "2.4.9", "5.2"], + ["lt", "binary", "mysql", "2.4.9", "6.0"], + ["lt", "binary", "sqlite", "2.7.0", "4.2"], + ["lt", "binary", "sqlite", "2.7.0", "5.2"], + ["lt", "binary", "sqlite", "2.7.0", "6.0"], + ["lt", "binary", "sqlite", "2.6.5", "4.2"], + ["lt", "binary", "sqlite", "2.6.5", "5.2"], + ["lt", "binary", "sqlite", "2.6.5", "6.0"], + ["lt", "binary", "sqlite", "2.5.7", "4.2"], + ["lt", "binary", "sqlite", "2.5.7", "5.2"], + ["lt", "binary", "sqlite", "2.5.7", "6.0"], + ["lt", "binary", "sqlite", "2.4.9", "4.2"], + ["lt", "binary", "sqlite", "2.4.9", "5.2"], + ["lt", "binary", "sqlite", "2.4.9", "6.0"], + ["lt", "boolean", "postgresql", "2.7.0", "4.2"], + ["lt", "boolean", "postgresql", "2.7.0", "5.2"], + ["lt", "boolean", "postgresql", "2.7.0", "6.0"], + ["lt", "boolean", "postgresql", "2.6.5", "4.2"], + ["lt", "boolean", "postgresql", "2.6.5", "5.2"], + ["lt", "boolean", "postgresql", "2.6.5", "6.0"], + ["lt", "boolean", "postgresql", "2.5.7", "4.2"], + ["lt", "boolean", "postgresql", "2.5.7", "5.2"], + ["lt", "boolean", "postgresql", "2.5.7", "6.0"], + ["lt", "boolean", "postgresql", "2.4.9", "4.2"], + ["lt", "boolean", "postgresql", "2.4.9", "5.2"], + ["lt", "boolean", "postgresql", "2.4.9", "6.0"], + ["lt", "boolean", "mysql", "2.7.0", "4.2"], + ["lt", "boolean", "mysql", "2.7.0", "5.2"], + ["lt", "boolean", "mysql", "2.7.0", "6.0"], + ["lt", "boolean", "mysql", "2.6.5", "4.2"], + ["lt", "boolean", "mysql", "2.6.5", "5.2"], + ["lt", "boolean", "mysql", "2.6.5", "6.0"], + ["lt", "boolean", "mysql", "2.5.7", "4.2"], + ["lt", "boolean", "mysql", "2.5.7", "5.2"], + ["lt", "boolean", "mysql", "2.5.7", "6.0"], + ["lt", "boolean", "mysql", "2.4.9", "4.2"], + ["lt", "boolean", "mysql", "2.4.9", "5.2"], + ["lt", "boolean", "mysql", "2.4.9", "6.0"], + ["lt", "boolean", "sqlite", "2.7.0", "4.2"], + ["lt", "boolean", "sqlite", "2.7.0", "5.2"], + ["lt", "boolean", "sqlite", "2.7.0", "6.0"], + ["lt", "boolean", "sqlite", "2.6.5", "4.2"], + ["lt", "boolean", "sqlite", "2.6.5", "5.2"], + ["lt", "boolean", "sqlite", "2.6.5", "6.0"], + ["lt", "boolean", "sqlite", "2.5.7", "4.2"], + ["lt", "boolean", "sqlite", "2.5.7", "5.2"], + ["lt", "boolean", "sqlite", "2.5.7", "6.0"], + ["lt", "boolean", "sqlite", "2.4.9", "4.2"], + ["lt", "boolean", "sqlite", "2.4.9", "5.2"], + ["lt", "boolean", "sqlite", "2.4.9", "6.0"], + ["lt", "date", "postgresql", "2.7.0", "4.2"], + ["lt", "date", "postgresql", "2.7.0", "5.2"], + ["lt", "date", "postgresql", "2.7.0", "6.0"], + ["lt", "date", "postgresql", "2.6.5", "4.2"], + ["lt", "date", "postgresql", "2.6.5", "5.2"], + ["lt", "date", "postgresql", "2.6.5", "6.0"], + ["lt", "date", "postgresql", "2.5.7", "4.2"], + ["lt", "date", "postgresql", "2.5.7", "5.2"], + ["lt", "date", "postgresql", "2.5.7", "6.0"], + ["lt", "date", "postgresql", "2.4.9", "4.2"], + ["lt", "date", "postgresql", "2.4.9", "5.2"], + ["lt", "date", "postgresql", "2.4.9", "6.0"], + ["lt", "date", "mysql", "2.7.0", "4.2"], + ["lt", "date", "mysql", "2.7.0", "5.2"], + ["lt", "date", "mysql", "2.7.0", "6.0"], + ["lt", "date", "mysql", "2.6.5", "4.2"], + ["lt", "date", "mysql", "2.6.5", "5.2"], + ["lt", "date", "mysql", "2.6.5", "6.0"], + ["lt", "date", "mysql", "2.5.7", "4.2"], + ["lt", "date", "mysql", "2.5.7", "5.2"], + ["lt", "date", "mysql", "2.5.7", "6.0"], + ["lt", "date", "mysql", "2.4.9", "4.2"], + ["lt", "date", "mysql", "2.4.9", "5.2"], + ["lt", "date", "mysql", "2.4.9", "6.0"], + ["lt", "date", "sqlite", "2.7.0", "4.2"], + ["lt", "date", "sqlite", "2.7.0", "5.2"], + ["lt", "date", "sqlite", "2.7.0", "6.0"], + ["lt", "date", "sqlite", "2.6.5", "4.2"], + ["lt", "date", "sqlite", "2.6.5", "5.2"], + ["lt", "date", "sqlite", "2.6.5", "6.0"], + ["lt", "date", "sqlite", "2.5.7", "4.2"], + ["lt", "date", "sqlite", "2.5.7", "5.2"], + ["lt", "date", "sqlite", "2.5.7", "6.0"], + ["lt", "date", "sqlite", "2.4.9", "4.2"], + ["lt", "date", "sqlite", "2.4.9", "5.2"], + ["lt", "date", "sqlite", "2.4.9", "6.0"], + ["lt", "datetime", "postgresql", "2.7.0", "4.2"], + ["lt", "datetime", "postgresql", "2.7.0", "5.2"], + ["lt", "datetime", "postgresql", "2.7.0", "6.0"], + ["lt", "datetime", "postgresql", "2.6.5", "4.2"], + ["lt", "datetime", "postgresql", "2.6.5", "5.2"], + ["lt", "datetime", "postgresql", "2.6.5", "6.0"], + ["lt", "datetime", "postgresql", "2.5.7", "4.2"], + ["lt", "datetime", "postgresql", "2.5.7", "5.2"], + ["lt", "datetime", "postgresql", "2.5.7", "6.0"], + ["lt", "datetime", "postgresql", "2.4.9", "4.2"], + ["lt", "datetime", "postgresql", "2.4.9", "5.2"], + ["lt", "datetime", "postgresql", "2.4.9", "6.0"], + ["lt", "datetime", "mysql", "2.7.0", "4.2"], + ["lt", "datetime", "mysql", "2.7.0", "5.2"], + ["lt", "datetime", "mysql", "2.7.0", "6.0"], + ["lt", "datetime", "mysql", "2.6.5", "4.2"], + ["lt", "datetime", "mysql", "2.6.5", "5.2"], + ["lt", "datetime", "mysql", "2.6.5", "6.0"], + ["lt", "datetime", "mysql", "2.5.7", "4.2"], + ["lt", "datetime", "mysql", "2.5.7", "5.2"], + ["lt", "datetime", "mysql", "2.5.7", "6.0"], + ["lt", "datetime", "mysql", "2.4.9", "4.2"], + ["lt", "datetime", "mysql", "2.4.9", "5.2"], + ["lt", "datetime", "mysql", "2.4.9", "6.0"], + ["lt", "datetime", "sqlite", "2.7.0", "4.2"], + ["lt", "datetime", "sqlite", "2.7.0", "5.2"], + ["lt", "datetime", "sqlite", "2.7.0", "6.0"], + ["lt", "datetime", "sqlite", "2.6.5", "4.2"], + ["lt", "datetime", "sqlite", "2.6.5", "5.2"], + ["lt", "datetime", "sqlite", "2.6.5", "6.0"], + ["lt", "datetime", "sqlite", "2.5.7", "4.2"], + ["lt", "datetime", "sqlite", "2.5.7", "5.2"], + ["lt", "datetime", "sqlite", "2.5.7", "6.0"], + ["lt", "datetime", "sqlite", "2.4.9", "4.2"], + ["lt", "datetime", "sqlite", "2.4.9", "5.2"], + ["lt", "datetime", "sqlite", "2.4.9", "6.0"], + ["lt", "decimal", "postgresql", "2.7.0", "4.2"], + ["lt", "decimal", "postgresql", "2.7.0", "5.2"], + ["lt", "decimal", "postgresql", "2.7.0", "6.0"], + ["lt", "decimal", "postgresql", "2.6.5", "4.2"], + ["lt", "decimal", "postgresql", "2.6.5", "5.2"], + ["lt", "decimal", "postgresql", "2.6.5", "6.0"], + ["lt", "decimal", "postgresql", "2.5.7", "4.2"], + ["lt", "decimal", "postgresql", "2.5.7", "5.2"], + ["lt", "decimal", "postgresql", "2.5.7", "6.0"], + ["lt", "decimal", "postgresql", "2.4.9", "4.2"], + ["lt", "decimal", "postgresql", "2.4.9", "5.2"], + ["lt", "decimal", "postgresql", "2.4.9", "6.0"], + ["lt", "decimal", "mysql", "2.7.0", "4.2"], + ["lt", "decimal", "mysql", "2.7.0", "5.2"], + ["lt", "decimal", "mysql", "2.7.0", "6.0"], + ["lt", "decimal", "mysql", "2.6.5", "4.2"], + ["lt", "decimal", "mysql", "2.6.5", "5.2"], + ["lt", "decimal", "mysql", "2.6.5", "6.0"], + ["lt", "decimal", "mysql", "2.5.7", "4.2"], + ["lt", "decimal", "mysql", "2.5.7", "5.2"], + ["lt", "decimal", "mysql", "2.5.7", "6.0"], + ["lt", "decimal", "mysql", "2.4.9", "4.2"], + ["lt", "decimal", "mysql", "2.4.9", "5.2"], + ["lt", "decimal", "mysql", "2.4.9", "6.0"], + ["lt", "decimal", "sqlite", "2.7.0", "4.2"], + ["lt", "decimal", "sqlite", "2.7.0", "5.2"], + ["lt", "decimal", "sqlite", "2.7.0", "6.0"], + ["lt", "decimal", "sqlite", "2.6.5", "4.2"], + ["lt", "decimal", "sqlite", "2.6.5", "5.2"], + ["lt", "decimal", "sqlite", "2.6.5", "6.0"], + ["lt", "decimal", "sqlite", "2.5.7", "4.2"], + ["lt", "decimal", "sqlite", "2.5.7", "5.2"], + ["lt", "decimal", "sqlite", "2.5.7", "6.0"], + ["lt", "decimal", "sqlite", "2.4.9", "4.2"], + ["lt", "decimal", "sqlite", "2.4.9", "5.2"], + ["lt", "decimal", "sqlite", "2.4.9", "6.0"], + ["lt", "float", "postgresql", "2.7.0", "4.2"], + ["lt", "float", "postgresql", "2.7.0", "5.2"], + ["lt", "float", "postgresql", "2.7.0", "6.0"], + ["lt", "float", "postgresql", "2.6.5", "4.2"], + ["lt", "float", "postgresql", "2.6.5", "5.2"], + ["lt", "float", "postgresql", "2.6.5", "6.0"], + ["lt", "float", "postgresql", "2.5.7", "4.2"], + ["lt", "float", "postgresql", "2.5.7", "5.2"], + ["lt", "float", "postgresql", "2.5.7", "6.0"], + ["lt", "float", "postgresql", "2.4.9", "4.2"], + ["lt", "float", "postgresql", "2.4.9", "5.2"], + ["lt", "float", "postgresql", "2.4.9", "6.0"], + ["lt", "float", "mysql", "2.7.0", "4.2"], + ["lt", "float", "mysql", "2.7.0", "5.2"], + ["lt", "float", "mysql", "2.7.0", "6.0"], + ["lt", "float", "mysql", "2.6.5", "4.2"], + ["lt", "float", "mysql", "2.6.5", "5.2"], + ["lt", "float", "mysql", "2.6.5", "6.0"], + ["lt", "float", "mysql", "2.5.7", "4.2"], + ["lt", "float", "mysql", "2.5.7", "5.2"], + ["lt", "float", "mysql", "2.5.7", "6.0"], + ["lt", "float", "mysql", "2.4.9", "4.2"], + ["lt", "float", "mysql", "2.4.9", "5.2"], + ["lt", "float", "mysql", "2.4.9", "6.0"], + ["lt", "float", "sqlite", "2.7.0", "4.2"], + ["lt", "float", "sqlite", "2.7.0", "5.2"], + ["lt", "float", "sqlite", "2.7.0", "6.0"], + ["lt", "float", "sqlite", "2.6.5", "4.2"], + ["lt", "float", "sqlite", "2.6.5", "5.2"], + ["lt", "float", "sqlite", "2.6.5", "6.0"], + ["lt", "float", "sqlite", "2.5.7", "4.2"], + ["lt", "float", "sqlite", "2.5.7", "5.2"], + ["lt", "float", "sqlite", "2.5.7", "6.0"], + ["lt", "float", "sqlite", "2.4.9", "4.2"], + ["lt", "float", "sqlite", "2.4.9", "5.2"], + ["lt", "float", "sqlite", "2.4.9", "6.0"], + ["lt", "integer", "postgresql", "2.7.0", "4.2"], + ["lt", "integer", "postgresql", "2.7.0", "5.2"], + ["lt", "integer", "postgresql", "2.7.0", "6.0"], + ["lt", "integer", "postgresql", "2.6.5", "4.2"], + ["lt", "integer", "postgresql", "2.6.5", "5.2"], + ["lt", "integer", "postgresql", "2.6.5", "6.0"], + ["lt", "integer", "postgresql", "2.5.7", "4.2"], + ["lt", "integer", "postgresql", "2.5.7", "5.2"], + ["lt", "integer", "postgresql", "2.5.7", "6.0"], + ["lt", "integer", "postgresql", "2.4.9", "4.2"], + ["lt", "integer", "postgresql", "2.4.9", "5.2"], + ["lt", "integer", "postgresql", "2.4.9", "6.0"], + ["lt", "integer", "mysql", "2.7.0", "4.2"], + ["lt", "integer", "mysql", "2.7.0", "5.2"], + ["lt", "integer", "mysql", "2.7.0", "6.0"], + ["lt", "integer", "mysql", "2.6.5", "4.2"], + ["lt", "integer", "mysql", "2.6.5", "5.2"], + ["lt", "integer", "mysql", "2.6.5", "6.0"], + ["lt", "integer", "mysql", "2.5.7", "4.2"], + ["lt", "integer", "mysql", "2.5.7", "5.2"], + ["lt", "integer", "mysql", "2.5.7", "6.0"], + ["lt", "integer", "mysql", "2.4.9", "4.2"], + ["lt", "integer", "mysql", "2.4.9", "5.2"], + ["lt", "integer", "mysql", "2.4.9", "6.0"], + ["lt", "integer", "sqlite", "2.7.0", "4.2"], + ["lt", "integer", "sqlite", "2.7.0", "5.2"], + ["lt", "integer", "sqlite", "2.7.0", "6.0"], + ["lt", "integer", "sqlite", "2.6.5", "4.2"], + ["lt", "integer", "sqlite", "2.6.5", "5.2"], + ["lt", "integer", "sqlite", "2.6.5", "6.0"], + ["lt", "integer", "sqlite", "2.5.7", "4.2"], + ["lt", "integer", "sqlite", "2.5.7", "5.2"], + ["lt", "integer", "sqlite", "2.5.7", "6.0"], + ["lt", "integer", "sqlite", "2.4.9", "4.2"], + ["lt", "integer", "sqlite", "2.4.9", "5.2"], + ["lt", "integer", "sqlite", "2.4.9", "6.0"], + ["lt", "string", "postgresql", "2.7.0", "4.2"], + ["lt", "string", "postgresql", "2.7.0", "5.2"], + ["lt", "string", "postgresql", "2.7.0", "6.0"], + ["lt", "string", "postgresql", "2.6.5", "4.2"], + ["lt", "string", "postgresql", "2.6.5", "5.2"], + ["lt", "string", "postgresql", "2.6.5", "6.0"], + ["lt", "string", "postgresql", "2.5.7", "4.2"], + ["lt", "string", "postgresql", "2.5.7", "5.2"], + ["lt", "string", "postgresql", "2.5.7", "6.0"], + ["lt", "string", "postgresql", "2.4.9", "4.2"], + ["lt", "string", "postgresql", "2.4.9", "5.2"], + ["lt", "string", "postgresql", "2.4.9", "6.0"], + ["lt", "string", "mysql", "2.7.0", "4.2"], + ["lt", "string", "mysql", "2.7.0", "5.2"], + ["lt", "string", "mysql", "2.7.0", "6.0"], + ["lt", "string", "mysql", "2.6.5", "4.2"], + ["lt", "string", "mysql", "2.6.5", "5.2"], + ["lt", "string", "mysql", "2.6.5", "6.0"], + ["lt", "string", "mysql", "2.5.7", "4.2"], + ["lt", "string", "mysql", "2.5.7", "5.2"], + ["lt", "string", "mysql", "2.5.7", "6.0"], + ["lt", "string", "mysql", "2.4.9", "4.2"], + ["lt", "string", "mysql", "2.4.9", "5.2"], + ["lt", "string", "mysql", "2.4.9", "6.0"], + ["lt", "string", "sqlite", "2.7.0", "4.2"], + ["lt", "string", "sqlite", "2.7.0", "5.2"], + ["lt", "string", "sqlite", "2.7.0", "6.0"], + ["lt", "string", "sqlite", "2.6.5", "4.2"], + ["lt", "string", "sqlite", "2.6.5", "5.2"], + ["lt", "string", "sqlite", "2.6.5", "6.0"], + ["lt", "string", "sqlite", "2.5.7", "4.2"], + ["lt", "string", "sqlite", "2.5.7", "5.2"], + ["lt", "string", "sqlite", "2.5.7", "6.0"], + ["lt", "string", "sqlite", "2.4.9", "4.2"], + ["lt", "string", "sqlite", "2.4.9", "5.2"], + ["lt", "string", "sqlite", "2.4.9", "6.0"], + ["lt", "text", "postgresql", "2.7.0", "4.2"], + ["lt", "text", "postgresql", "2.7.0", "5.2"], + ["lt", "text", "postgresql", "2.7.0", "6.0"], + ["lt", "text", "postgresql", "2.6.5", "4.2"], + ["lt", "text", "postgresql", "2.6.5", "5.2"], + ["lt", "text", "postgresql", "2.6.5", "6.0"], + ["lt", "text", "postgresql", "2.5.7", "4.2"], + ["lt", "text", "postgresql", "2.5.7", "5.2"], + ["lt", "text", "postgresql", "2.5.7", "6.0"], + ["lt", "text", "postgresql", "2.4.9", "4.2"], + ["lt", "text", "postgresql", "2.4.9", "5.2"], + ["lt", "text", "postgresql", "2.4.9", "6.0"], + ["lt", "text", "mysql", "2.7.0", "4.2"], + ["lt", "text", "mysql", "2.7.0", "5.2"], + ["lt", "text", "mysql", "2.7.0", "6.0"], + ["lt", "text", "mysql", "2.6.5", "4.2"], + ["lt", "text", "mysql", "2.6.5", "5.2"], + ["lt", "text", "mysql", "2.6.5", "6.0"], + ["lt", "text", "mysql", "2.5.7", "4.2"], + ["lt", "text", "mysql", "2.5.7", "5.2"], + ["lt", "text", "mysql", "2.5.7", "6.0"], + ["lt", "text", "mysql", "2.4.9", "4.2"], + ["lt", "text", "mysql", "2.4.9", "5.2"], + ["lt", "text", "mysql", "2.4.9", "6.0"], + ["lt", "text", "sqlite", "2.7.0", "4.2"], + ["lt", "text", "sqlite", "2.7.0", "5.2"], + ["lt", "text", "sqlite", "2.7.0", "6.0"], + ["lt", "text", "sqlite", "2.6.5", "4.2"], + ["lt", "text", "sqlite", "2.6.5", "5.2"], + ["lt", "text", "sqlite", "2.6.5", "6.0"], + ["lt", "text", "sqlite", "2.5.7", "4.2"], + ["lt", "text", "sqlite", "2.5.7", "5.2"], + ["lt", "text", "sqlite", "2.5.7", "6.0"], + ["lt", "text", "sqlite", "2.4.9", "4.2"], + ["lt", "text", "sqlite", "2.4.9", "5.2"], + ["lt", "text", "sqlite", "2.4.9", "6.0"], + ["lt", "time", "postgresql", "2.7.0", "4.2"], + ["lt", "time", "postgresql", "2.7.0", "5.2"], + ["lt", "time", "postgresql", "2.7.0", "6.0"], + ["lt", "time", "postgresql", "2.6.5", "4.2"], + ["lt", "time", "postgresql", "2.6.5", "5.2"], + ["lt", "time", "postgresql", "2.6.5", "6.0"], + ["lt", "time", "postgresql", "2.5.7", "4.2"], + ["lt", "time", "postgresql", "2.5.7", "5.2"], + ["lt", "time", "postgresql", "2.5.7", "6.0"], + ["lt", "time", "postgresql", "2.4.9", "4.2"], + ["lt", "time", "postgresql", "2.4.9", "5.2"], + ["lt", "time", "postgresql", "2.4.9", "6.0"], + ["lt", "time", "mysql", "2.7.0", "4.2"], + ["lt", "time", "mysql", "2.7.0", "5.2"], + ["lt", "time", "mysql", "2.7.0", "6.0"], + ["lt", "time", "mysql", "2.6.5", "4.2"], + ["lt", "time", "mysql", "2.6.5", "5.2"], + ["lt", "time", "mysql", "2.6.5", "6.0"], + ["lt", "time", "mysql", "2.5.7", "4.2"], + ["lt", "time", "mysql", "2.5.7", "5.2"], + ["lt", "time", "mysql", "2.5.7", "6.0"], + ["lt", "time", "mysql", "2.4.9", "4.2"], + ["lt", "time", "mysql", "2.4.9", "5.2"], + ["lt", "time", "mysql", "2.4.9", "6.0"], + ["lt", "time", "sqlite", "2.7.0", "4.2"], + ["lt", "time", "sqlite", "2.7.0", "5.2"], + ["lt", "time", "sqlite", "2.7.0", "6.0"], + ["lt", "time", "sqlite", "2.6.5", "4.2"], + ["lt", "time", "sqlite", "2.6.5", "5.2"], + ["lt", "time", "sqlite", "2.6.5", "6.0"], + ["lt", "time", "sqlite", "2.5.7", "4.2"], + ["lt", "time", "sqlite", "2.5.7", "5.2"], + ["lt", "time", "sqlite", "2.5.7", "6.0"], + ["lt", "time", "sqlite", "2.4.9", "4.2"], + ["lt", "time", "sqlite", "2.4.9", "5.2"], + ["lt", "time", "sqlite", "2.4.9", "6.0"], + ["lteq", "binary", "postgresql", "2.7.0", "4.2"], + ["lteq", "binary", "postgresql", "2.7.0", "5.2"], + ["lteq", "binary", "postgresql", "2.7.0", "6.0"], + ["lteq", "binary", "postgresql", "2.6.5", "4.2"], + ["lteq", "binary", "postgresql", "2.6.5", "5.2"], + ["lteq", "binary", "postgresql", "2.6.5", "6.0"], + ["lteq", "binary", "postgresql", "2.5.7", "4.2"], + ["lteq", "binary", "postgresql", "2.5.7", "5.2"], + ["lteq", "binary", "postgresql", "2.5.7", "6.0"], + ["lteq", "binary", "postgresql", "2.4.9", "4.2"], + ["lteq", "binary", "postgresql", "2.4.9", "5.2"], + ["lteq", "binary", "postgresql", "2.4.9", "6.0"], + ["lteq", "binary", "mysql", "2.7.0", "4.2"], + ["lteq", "binary", "mysql", "2.7.0", "5.2"], + ["lteq", "binary", "mysql", "2.7.0", "6.0"], + ["lteq", "binary", "mysql", "2.6.5", "4.2"], + ["lteq", "binary", "mysql", "2.6.5", "5.2"], + ["lteq", "binary", "mysql", "2.6.5", "6.0"], + ["lteq", "binary", "mysql", "2.5.7", "4.2"], + ["lteq", "binary", "mysql", "2.5.7", "5.2"], + ["lteq", "binary", "mysql", "2.5.7", "6.0"], + ["lteq", "binary", "mysql", "2.4.9", "4.2"], + ["lteq", "binary", "mysql", "2.4.9", "5.2"], + ["lteq", "binary", "mysql", "2.4.9", "6.0"], + ["lteq", "binary", "sqlite", "2.7.0", "4.2"], + ["lteq", "binary", "sqlite", "2.7.0", "5.2"], + ["lteq", "binary", "sqlite", "2.7.0", "6.0"], + ["lteq", "binary", "sqlite", "2.6.5", "4.2"], + ["lteq", "binary", "sqlite", "2.6.5", "5.2"], + ["lteq", "binary", "sqlite", "2.6.5", "6.0"], + ["lteq", "binary", "sqlite", "2.5.7", "4.2"], + ["lteq", "binary", "sqlite", "2.5.7", "5.2"], + ["lteq", "binary", "sqlite", "2.5.7", "6.0"], + ["lteq", "binary", "sqlite", "2.4.9", "4.2"], + ["lteq", "binary", "sqlite", "2.4.9", "5.2"], + ["lteq", "binary", "sqlite", "2.4.9", "6.0"], + ["lteq", "boolean", "postgresql", "2.7.0", "4.2"], + ["lteq", "boolean", "postgresql", "2.7.0", "5.2"], + ["lteq", "boolean", "postgresql", "2.7.0", "6.0"], + ["lteq", "boolean", "postgresql", "2.6.5", "4.2"], + ["lteq", "boolean", "postgresql", "2.6.5", "5.2"], + ["lteq", "boolean", "postgresql", "2.6.5", "6.0"], + ["lteq", "boolean", "postgresql", "2.5.7", "4.2"], + ["lteq", "boolean", "postgresql", "2.5.7", "5.2"], + ["lteq", "boolean", "postgresql", "2.5.7", "6.0"], + ["lteq", "boolean", "postgresql", "2.4.9", "4.2"], + ["lteq", "boolean", "postgresql", "2.4.9", "5.2"], + ["lteq", "boolean", "postgresql", "2.4.9", "6.0"], + ["lteq", "boolean", "mysql", "2.7.0", "4.2"], + ["lteq", "boolean", "mysql", "2.7.0", "5.2"], + ["lteq", "boolean", "mysql", "2.7.0", "6.0"], + ["lteq", "boolean", "mysql", "2.6.5", "4.2"], + ["lteq", "boolean", "mysql", "2.6.5", "5.2"], + ["lteq", "boolean", "mysql", "2.6.5", "6.0"], + ["lteq", "boolean", "mysql", "2.5.7", "4.2"], + ["lteq", "boolean", "mysql", "2.5.7", "5.2"], + ["lteq", "boolean", "mysql", "2.5.7", "6.0"], + ["lteq", "boolean", "mysql", "2.4.9", "4.2"], + ["lteq", "boolean", "mysql", "2.4.9", "5.2"], + ["lteq", "boolean", "mysql", "2.4.9", "6.0"], + ["lteq", "boolean", "sqlite", "2.7.0", "4.2"], + ["lteq", "boolean", "sqlite", "2.7.0", "5.2"], + ["lteq", "boolean", "sqlite", "2.7.0", "6.0"], + ["lteq", "boolean", "sqlite", "2.6.5", "4.2"], + ["lteq", "boolean", "sqlite", "2.6.5", "5.2"], + ["lteq", "boolean", "sqlite", "2.6.5", "6.0"], + ["lteq", "boolean", "sqlite", "2.5.7", "4.2"], + ["lteq", "boolean", "sqlite", "2.5.7", "5.2"], + ["lteq", "boolean", "sqlite", "2.5.7", "6.0"], + ["lteq", "boolean", "sqlite", "2.4.9", "4.2"], + ["lteq", "boolean", "sqlite", "2.4.9", "5.2"], + ["lteq", "boolean", "sqlite", "2.4.9", "6.0"], + ["lteq", "date", "postgresql", "2.7.0", "4.2"], + ["lteq", "date", "postgresql", "2.7.0", "5.2"], + ["lteq", "date", "postgresql", "2.7.0", "6.0"], + ["lteq", "date", "postgresql", "2.6.5", "4.2"], + ["lteq", "date", "postgresql", "2.6.5", "5.2"], + ["lteq", "date", "postgresql", "2.6.5", "6.0"], + ["lteq", "date", "postgresql", "2.5.7", "4.2"], + ["lteq", "date", "postgresql", "2.5.7", "5.2"], + ["lteq", "date", "postgresql", "2.5.7", "6.0"], + ["lteq", "date", "postgresql", "2.4.9", "4.2"], + ["lteq", "date", "postgresql", "2.4.9", "5.2"], + ["lteq", "date", "postgresql", "2.4.9", "6.0"], + ["lteq", "date", "mysql", "2.7.0", "4.2"], + ["lteq", "date", "mysql", "2.7.0", "5.2"], + ["lteq", "date", "mysql", "2.7.0", "6.0"], + ["lteq", "date", "mysql", "2.6.5", "4.2"], + ["lteq", "date", "mysql", "2.6.5", "5.2"], + ["lteq", "date", "mysql", "2.6.5", "6.0"], + ["lteq", "date", "mysql", "2.5.7", "4.2"], + ["lteq", "date", "mysql", "2.5.7", "5.2"], + ["lteq", "date", "mysql", "2.5.7", "6.0"], + ["lteq", "date", "mysql", "2.4.9", "4.2"], + ["lteq", "date", "mysql", "2.4.9", "5.2"], + ["lteq", "date", "mysql", "2.4.9", "6.0"], + ["lteq", "date", "sqlite", "2.7.0", "4.2"], + ["lteq", "date", "sqlite", "2.7.0", "5.2"], + ["lteq", "date", "sqlite", "2.7.0", "6.0"], + ["lteq", "date", "sqlite", "2.6.5", "4.2"], + ["lteq", "date", "sqlite", "2.6.5", "5.2"], + ["lteq", "date", "sqlite", "2.6.5", "6.0"], + ["lteq", "date", "sqlite", "2.5.7", "4.2"], + ["lteq", "date", "sqlite", "2.5.7", "5.2"], + ["lteq", "date", "sqlite", "2.5.7", "6.0"], + ["lteq", "date", "sqlite", "2.4.9", "4.2"], + ["lteq", "date", "sqlite", "2.4.9", "5.2"], + ["lteq", "date", "sqlite", "2.4.9", "6.0"], + ["lteq", "datetime", "postgresql", "2.7.0", "4.2"], + ["lteq", "datetime", "postgresql", "2.7.0", "5.2"], + ["lteq", "datetime", "postgresql", "2.7.0", "6.0"], + ["lteq", "datetime", "postgresql", "2.6.5", "4.2"], + ["lteq", "datetime", "postgresql", "2.6.5", "5.2"], + ["lteq", "datetime", "postgresql", "2.6.5", "6.0"], + ["lteq", "datetime", "postgresql", "2.5.7", "4.2"], + ["lteq", "datetime", "postgresql", "2.5.7", "5.2"], + ["lteq", "datetime", "postgresql", "2.5.7", "6.0"], + ["lteq", "datetime", "postgresql", "2.4.9", "4.2"], + ["lteq", "datetime", "postgresql", "2.4.9", "5.2"], + ["lteq", "datetime", "postgresql", "2.4.9", "6.0"], + ["lteq", "datetime", "mysql", "2.7.0", "4.2"], + ["lteq", "datetime", "mysql", "2.7.0", "5.2"], + ["lteq", "datetime", "mysql", "2.7.0", "6.0"], + ["lteq", "datetime", "mysql", "2.6.5", "4.2"], + ["lteq", "datetime", "mysql", "2.6.5", "5.2"], + ["lteq", "datetime", "mysql", "2.6.5", "6.0"], + ["lteq", "datetime", "mysql", "2.5.7", "4.2"], + ["lteq", "datetime", "mysql", "2.5.7", "5.2"], + ["lteq", "datetime", "mysql", "2.5.7", "6.0"], + ["lteq", "datetime", "mysql", "2.4.9", "4.2"], + ["lteq", "datetime", "mysql", "2.4.9", "5.2"], + ["lteq", "datetime", "mysql", "2.4.9", "6.0"], + ["lteq", "datetime", "sqlite", "2.7.0", "4.2"], + ["lteq", "datetime", "sqlite", "2.7.0", "5.2"], + ["lteq", "datetime", "sqlite", "2.7.0", "6.0"], + ["lteq", "datetime", "sqlite", "2.6.5", "4.2"], + ["lteq", "datetime", "sqlite", "2.6.5", "5.2"], + ["lteq", "datetime", "sqlite", "2.6.5", "6.0"], + ["lteq", "datetime", "sqlite", "2.5.7", "4.2"], + ["lteq", "datetime", "sqlite", "2.5.7", "5.2"], + ["lteq", "datetime", "sqlite", "2.5.7", "6.0"], + ["lteq", "datetime", "sqlite", "2.4.9", "4.2"], + ["lteq", "datetime", "sqlite", "2.4.9", "5.2"], + ["lteq", "datetime", "sqlite", "2.4.9", "6.0"], + ["lteq", "decimal", "postgresql", "2.7.0", "4.2"], + ["lteq", "decimal", "postgresql", "2.7.0", "5.2"], + ["lteq", "decimal", "postgresql", "2.7.0", "6.0"], + ["lteq", "decimal", "postgresql", "2.6.5", "4.2"], + ["lteq", "decimal", "postgresql", "2.6.5", "5.2"], + ["lteq", "decimal", "postgresql", "2.6.5", "6.0"], + ["lteq", "decimal", "postgresql", "2.5.7", "4.2"], + ["lteq", "decimal", "postgresql", "2.5.7", "5.2"], + ["lteq", "decimal", "postgresql", "2.5.7", "6.0"], + ["lteq", "decimal", "postgresql", "2.4.9", "4.2"], + ["lteq", "decimal", "postgresql", "2.4.9", "5.2"], + ["lteq", "decimal", "postgresql", "2.4.9", "6.0"], + ["lteq", "decimal", "mysql", "2.7.0", "4.2"], + ["lteq", "decimal", "mysql", "2.7.0", "5.2"], + ["lteq", "decimal", "mysql", "2.7.0", "6.0"], + ["lteq", "decimal", "mysql", "2.6.5", "4.2"], + ["lteq", "decimal", "mysql", "2.6.5", "5.2"], + ["lteq", "decimal", "mysql", "2.6.5", "6.0"], + ["lteq", "decimal", "mysql", "2.5.7", "4.2"], + ["lteq", "decimal", "mysql", "2.5.7", "5.2"], + ["lteq", "decimal", "mysql", "2.5.7", "6.0"], + ["lteq", "decimal", "mysql", "2.4.9", "4.2"], + ["lteq", "decimal", "mysql", "2.4.9", "5.2"], + ["lteq", "decimal", "mysql", "2.4.9", "6.0"], + ["lteq", "decimal", "sqlite", "2.7.0", "4.2"], + ["lteq", "decimal", "sqlite", "2.7.0", "5.2"], + ["lteq", "decimal", "sqlite", "2.7.0", "6.0"], + ["lteq", "decimal", "sqlite", "2.6.5", "4.2"], + ["lteq", "decimal", "sqlite", "2.6.5", "5.2"], + ["lteq", "decimal", "sqlite", "2.6.5", "6.0"], + ["lteq", "decimal", "sqlite", "2.5.7", "4.2"], + ["lteq", "decimal", "sqlite", "2.5.7", "5.2"], + ["lteq", "decimal", "sqlite", "2.5.7", "6.0"], + ["lteq", "decimal", "sqlite", "2.4.9", "4.2"], + ["lteq", "decimal", "sqlite", "2.4.9", "5.2"], + ["lteq", "decimal", "sqlite", "2.4.9", "6.0"], + ["lteq", "float", "postgresql", "2.7.0", "4.2"], + ["lteq", "float", "postgresql", "2.7.0", "5.2"], + ["lteq", "float", "postgresql", "2.7.0", "6.0"], + ["lteq", "float", "postgresql", "2.6.5", "4.2"], + ["lteq", "float", "postgresql", "2.6.5", "5.2"], + ["lteq", "float", "postgresql", "2.6.5", "6.0"], + ["lteq", "float", "postgresql", "2.5.7", "4.2"], + ["lteq", "float", "postgresql", "2.5.7", "5.2"], + ["lteq", "float", "postgresql", "2.5.7", "6.0"], + ["lteq", "float", "postgresql", "2.4.9", "4.2"], + ["lteq", "float", "postgresql", "2.4.9", "5.2"], + ["lteq", "float", "postgresql", "2.4.9", "6.0"], + ["lteq", "float", "mysql", "2.7.0", "4.2"], + ["lteq", "float", "mysql", "2.7.0", "5.2"], + ["lteq", "float", "mysql", "2.7.0", "6.0"], + ["lteq", "float", "mysql", "2.6.5", "4.2"], + ["lteq", "float", "mysql", "2.6.5", "5.2"], + ["lteq", "float", "mysql", "2.6.5", "6.0"], + ["lteq", "float", "mysql", "2.5.7", "4.2"], + ["lteq", "float", "mysql", "2.5.7", "5.2"], + ["lteq", "float", "mysql", "2.5.7", "6.0"], + ["lteq", "float", "mysql", "2.4.9", "4.2"], + ["lteq", "float", "mysql", "2.4.9", "5.2"], + ["lteq", "float", "mysql", "2.4.9", "6.0"], + ["lteq", "float", "sqlite", "2.7.0", "4.2"], + ["lteq", "float", "sqlite", "2.7.0", "5.2"], + ["lteq", "float", "sqlite", "2.7.0", "6.0"], + ["lteq", "float", "sqlite", "2.6.5", "4.2"], + ["lteq", "float", "sqlite", "2.6.5", "5.2"], + ["lteq", "float", "sqlite", "2.6.5", "6.0"], + ["lteq", "float", "sqlite", "2.5.7", "4.2"], + ["lteq", "float", "sqlite", "2.5.7", "5.2"], + ["lteq", "float", "sqlite", "2.5.7", "6.0"], + ["lteq", "float", "sqlite", "2.4.9", "4.2"], + ["lteq", "float", "sqlite", "2.4.9", "5.2"], + ["lteq", "float", "sqlite", "2.4.9", "6.0"], + ["lteq", "integer", "postgresql", "2.7.0", "4.2"], + ["lteq", "integer", "postgresql", "2.7.0", "5.2"], + ["lteq", "integer", "postgresql", "2.7.0", "6.0"], + ["lteq", "integer", "postgresql", "2.6.5", "4.2"], + ["lteq", "integer", "postgresql", "2.6.5", "5.2"], + ["lteq", "integer", "postgresql", "2.6.5", "6.0"], + ["lteq", "integer", "postgresql", "2.5.7", "4.2"], + ["lteq", "integer", "postgresql", "2.5.7", "5.2"], + ["lteq", "integer", "postgresql", "2.5.7", "6.0"], + ["lteq", "integer", "postgresql", "2.4.9", "4.2"], + ["lteq", "integer", "postgresql", "2.4.9", "5.2"], + ["lteq", "integer", "postgresql", "2.4.9", "6.0"], + ["lteq", "integer", "mysql", "2.7.0", "4.2"], + ["lteq", "integer", "mysql", "2.7.0", "5.2"], + ["lteq", "integer", "mysql", "2.7.0", "6.0"], + ["lteq", "integer", "mysql", "2.6.5", "4.2"], + ["lteq", "integer", "mysql", "2.6.5", "5.2"], + ["lteq", "integer", "mysql", "2.6.5", "6.0"], + ["lteq", "integer", "mysql", "2.5.7", "4.2"], + ["lteq", "integer", "mysql", "2.5.7", "5.2"], + ["lteq", "integer", "mysql", "2.5.7", "6.0"], + ["lteq", "integer", "mysql", "2.4.9", "4.2"], + ["lteq", "integer", "mysql", "2.4.9", "5.2"], + ["lteq", "integer", "mysql", "2.4.9", "6.0"], + ["lteq", "integer", "sqlite", "2.7.0", "4.2"], + ["lteq", "integer", "sqlite", "2.7.0", "5.2"], + ["lteq", "integer", "sqlite", "2.7.0", "6.0"], + ["lteq", "integer", "sqlite", "2.6.5", "4.2"], + ["lteq", "integer", "sqlite", "2.6.5", "5.2"], + ["lteq", "integer", "sqlite", "2.6.5", "6.0"], + ["lteq", "integer", "sqlite", "2.5.7", "4.2"], + ["lteq", "integer", "sqlite", "2.5.7", "5.2"], + ["lteq", "integer", "sqlite", "2.5.7", "6.0"], + ["lteq", "integer", "sqlite", "2.4.9", "4.2"], + ["lteq", "integer", "sqlite", "2.4.9", "5.2"], + ["lteq", "integer", "sqlite", "2.4.9", "6.0"], + ["lteq", "string", "postgresql", "2.7.0", "4.2"], + ["lteq", "string", "postgresql", "2.7.0", "5.2"], + ["lteq", "string", "postgresql", "2.7.0", "6.0"], + ["lteq", "string", "postgresql", "2.6.5", "4.2"], + ["lteq", "string", "postgresql", "2.6.5", "5.2"], + ["lteq", "string", "postgresql", "2.6.5", "6.0"], + ["lteq", "string", "postgresql", "2.5.7", "4.2"], + ["lteq", "string", "postgresql", "2.5.7", "5.2"], + ["lteq", "string", "postgresql", "2.5.7", "6.0"], + ["lteq", "string", "postgresql", "2.4.9", "4.2"], + ["lteq", "string", "postgresql", "2.4.9", "5.2"], + ["lteq", "string", "postgresql", "2.4.9", "6.0"], + ["lteq", "string", "mysql", "2.7.0", "4.2"], + ["lteq", "string", "mysql", "2.7.0", "5.2"], + ["lteq", "string", "mysql", "2.7.0", "6.0"], + ["lteq", "string", "mysql", "2.6.5", "4.2"], + ["lteq", "string", "mysql", "2.6.5", "5.2"], + ["lteq", "string", "mysql", "2.6.5", "6.0"], + ["lteq", "string", "mysql", "2.5.7", "4.2"], + ["lteq", "string", "mysql", "2.5.7", "5.2"], + ["lteq", "string", "mysql", "2.5.7", "6.0"], + ["lteq", "string", "mysql", "2.4.9", "4.2"], + ["lteq", "string", "mysql", "2.4.9", "5.2"], + ["lteq", "string", "mysql", "2.4.9", "6.0"], + ["lteq", "string", "sqlite", "2.7.0", "4.2"], + ["lteq", "string", "sqlite", "2.7.0", "5.2"], + ["lteq", "string", "sqlite", "2.7.0", "6.0"], + ["lteq", "string", "sqlite", "2.6.5", "4.2"], + ["lteq", "string", "sqlite", "2.6.5", "5.2"], + ["lteq", "string", "sqlite", "2.6.5", "6.0"], + ["lteq", "string", "sqlite", "2.5.7", "4.2"], + ["lteq", "string", "sqlite", "2.5.7", "5.2"], + ["lteq", "string", "sqlite", "2.5.7", "6.0"], + ["lteq", "string", "sqlite", "2.4.9", "4.2"], + ["lteq", "string", "sqlite", "2.4.9", "5.2"], + ["lteq", "string", "sqlite", "2.4.9", "6.0"], + ["lteq", "text", "postgresql", "2.7.0", "4.2"], + ["lteq", "text", "postgresql", "2.7.0", "5.2"], + ["lteq", "text", "postgresql", "2.7.0", "6.0"], + ["lteq", "text", "postgresql", "2.6.5", "4.2"], + ["lteq", "text", "postgresql", "2.6.5", "5.2"], + ["lteq", "text", "postgresql", "2.6.5", "6.0"], + ["lteq", "text", "postgresql", "2.5.7", "4.2"], + ["lteq", "text", "postgresql", "2.5.7", "5.2"], + ["lteq", "text", "postgresql", "2.5.7", "6.0"], + ["lteq", "text", "postgresql", "2.4.9", "4.2"], + ["lteq", "text", "postgresql", "2.4.9", "5.2"], + ["lteq", "text", "postgresql", "2.4.9", "6.0"], + ["lteq", "text", "mysql", "2.7.0", "4.2"], + ["lteq", "text", "mysql", "2.7.0", "5.2"], + ["lteq", "text", "mysql", "2.7.0", "6.0"], + ["lteq", "text", "mysql", "2.6.5", "4.2"], + ["lteq", "text", "mysql", "2.6.5", "5.2"], + ["lteq", "text", "mysql", "2.6.5", "6.0"], + ["lteq", "text", "mysql", "2.5.7", "4.2"], + ["lteq", "text", "mysql", "2.5.7", "5.2"], + ["lteq", "text", "mysql", "2.5.7", "6.0"], + ["lteq", "text", "mysql", "2.4.9", "4.2"], + ["lteq", "text", "mysql", "2.4.9", "5.2"], + ["lteq", "text", "mysql", "2.4.9", "6.0"], + ["lteq", "text", "sqlite", "2.7.0", "4.2"], + ["lteq", "text", "sqlite", "2.7.0", "5.2"], + ["lteq", "text", "sqlite", "2.7.0", "6.0"], + ["lteq", "text", "sqlite", "2.6.5", "4.2"], + ["lteq", "text", "sqlite", "2.6.5", "5.2"], + ["lteq", "text", "sqlite", "2.6.5", "6.0"], + ["lteq", "text", "sqlite", "2.5.7", "4.2"], + ["lteq", "text", "sqlite", "2.5.7", "5.2"], + ["lteq", "text", "sqlite", "2.5.7", "6.0"], + ["lteq", "text", "sqlite", "2.4.9", "4.2"], + ["lteq", "text", "sqlite", "2.4.9", "5.2"], + ["lteq", "text", "sqlite", "2.4.9", "6.0"], + ["lteq", "time", "postgresql", "2.7.0", "4.2"], + ["lteq", "time", "postgresql", "2.7.0", "5.2"], + ["lteq", "time", "postgresql", "2.7.0", "6.0"], + ["lteq", "time", "postgresql", "2.6.5", "4.2"], + ["lteq", "time", "postgresql", "2.6.5", "5.2"], + ["lteq", "time", "postgresql", "2.6.5", "6.0"], + ["lteq", "time", "postgresql", "2.5.7", "4.2"], + ["lteq", "time", "postgresql", "2.5.7", "5.2"], + ["lteq", "time", "postgresql", "2.5.7", "6.0"], + ["lteq", "time", "postgresql", "2.4.9", "4.2"], + ["lteq", "time", "postgresql", "2.4.9", "5.2"], + ["lteq", "time", "postgresql", "2.4.9", "6.0"], + ["lteq", "time", "mysql", "2.7.0", "4.2"], + ["lteq", "time", "mysql", "2.7.0", "5.2"], + ["lteq", "time", "mysql", "2.7.0", "6.0"], + ["lteq", "time", "mysql", "2.6.5", "4.2"], + ["lteq", "time", "mysql", "2.6.5", "5.2"], + ["lteq", "time", "mysql", "2.6.5", "6.0"], + ["lteq", "time", "mysql", "2.5.7", "4.2"], + ["lteq", "time", "mysql", "2.5.7", "5.2"], + ["lteq", "time", "mysql", "2.5.7", "6.0"], + ["lteq", "time", "mysql", "2.4.9", "4.2"], + ["lteq", "time", "mysql", "2.4.9", "5.2"], + ["lteq", "time", "mysql", "2.4.9", "6.0"], + ["lteq", "time", "sqlite", "2.7.0", "4.2"], + ["lteq", "time", "sqlite", "2.7.0", "5.2"], + ["lteq", "time", "sqlite", "2.7.0", "6.0"], + ["lteq", "time", "sqlite", "2.6.5", "4.2"], + ["lteq", "time", "sqlite", "2.6.5", "5.2"], + ["lteq", "time", "sqlite", "2.6.5", "6.0"], + ["lteq", "time", "sqlite", "2.5.7", "4.2"], + ["lteq", "time", "sqlite", "2.5.7", "5.2"], + ["lteq", "time", "sqlite", "2.5.7", "6.0"], + ["lteq", "time", "sqlite", "2.4.9", "4.2"], + ["lteq", "time", "sqlite", "2.4.9", "5.2"], + ["lteq", "time", "sqlite", "2.4.9", "6.0"], + ["lt_any", "binary", "postgresql", "2.7.0", "4.2"], + ["lt_any", "binary", "postgresql", "2.7.0", "5.2"], + ["lt_any", "binary", "postgresql", "2.7.0", "6.0"], + ["lt_any", "binary", "postgresql", "2.6.5", "4.2"], + ["lt_any", "binary", "postgresql", "2.6.5", "5.2"], + ["lt_any", "binary", "postgresql", "2.6.5", "6.0"], + ["lt_any", "binary", "postgresql", "2.5.7", "4.2"], + ["lt_any", "binary", "postgresql", "2.5.7", "5.2"], + ["lt_any", "binary", "postgresql", "2.5.7", "6.0"], + ["lt_any", "binary", "postgresql", "2.4.9", "4.2"], + ["lt_any", "binary", "postgresql", "2.4.9", "5.2"], + ["lt_any", "binary", "postgresql", "2.4.9", "6.0"], + ["lt_any", "binary", "mysql", "2.7.0", "4.2"], + ["lt_any", "binary", "mysql", "2.7.0", "5.2"], + ["lt_any", "binary", "mysql", "2.7.0", "6.0"], + ["lt_any", "binary", "mysql", "2.6.5", "4.2"], + ["lt_any", "binary", "mysql", "2.6.5", "5.2"], + ["lt_any", "binary", "mysql", "2.6.5", "6.0"], + ["lt_any", "binary", "mysql", "2.5.7", "4.2"], + ["lt_any", "binary", "mysql", "2.5.7", "5.2"], + ["lt_any", "binary", "mysql", "2.5.7", "6.0"], + ["lt_any", "binary", "mysql", "2.4.9", "4.2"], + ["lt_any", "binary", "mysql", "2.4.9", "5.2"], + ["lt_any", "binary", "mysql", "2.4.9", "6.0"], + ["lt_any", "binary", "sqlite", "2.7.0", "4.2"], + ["lt_any", "binary", "sqlite", "2.7.0", "5.2"], + ["lt_any", "binary", "sqlite", "2.7.0", "6.0"], + ["lt_any", "binary", "sqlite", "2.6.5", "4.2"], + ["lt_any", "binary", "sqlite", "2.6.5", "5.2"], + ["lt_any", "binary", "sqlite", "2.6.5", "6.0"], + ["lt_any", "binary", "sqlite", "2.5.7", "4.2"], + ["lt_any", "binary", "sqlite", "2.5.7", "5.2"], + ["lt_any", "binary", "sqlite", "2.5.7", "6.0"], + ["lt_any", "binary", "sqlite", "2.4.9", "4.2"], + ["lt_any", "binary", "sqlite", "2.4.9", "5.2"], + ["lt_any", "binary", "sqlite", "2.4.9", "6.0"], + ["lt_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["lt_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["lt_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["lt_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["lt_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["lt_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["lt_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["lt_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["lt_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["lt_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["lt_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["lt_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["lt_any", "boolean", "mysql", "2.7.0", "4.2"], + ["lt_any", "boolean", "mysql", "2.7.0", "5.2"], + ["lt_any", "boolean", "mysql", "2.7.0", "6.0"], + ["lt_any", "boolean", "mysql", "2.6.5", "4.2"], + ["lt_any", "boolean", "mysql", "2.6.5", "5.2"], + ["lt_any", "boolean", "mysql", "2.6.5", "6.0"], + ["lt_any", "boolean", "mysql", "2.5.7", "4.2"], + ["lt_any", "boolean", "mysql", "2.5.7", "5.2"], + ["lt_any", "boolean", "mysql", "2.5.7", "6.0"], + ["lt_any", "boolean", "mysql", "2.4.9", "4.2"], + ["lt_any", "boolean", "mysql", "2.4.9", "5.2"], + ["lt_any", "boolean", "mysql", "2.4.9", "6.0"], + ["lt_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["lt_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["lt_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["lt_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["lt_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["lt_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["lt_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["lt_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["lt_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["lt_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["lt_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["lt_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["lt_any", "date", "postgresql", "2.7.0", "4.2"], + ["lt_any", "date", "postgresql", "2.7.0", "5.2"], + ["lt_any", "date", "postgresql", "2.7.0", "6.0"], + ["lt_any", "date", "postgresql", "2.6.5", "4.2"], + ["lt_any", "date", "postgresql", "2.6.5", "5.2"], + ["lt_any", "date", "postgresql", "2.6.5", "6.0"], + ["lt_any", "date", "postgresql", "2.5.7", "4.2"], + ["lt_any", "date", "postgresql", "2.5.7", "5.2"], + ["lt_any", "date", "postgresql", "2.5.7", "6.0"], + ["lt_any", "date", "postgresql", "2.4.9", "4.2"], + ["lt_any", "date", "postgresql", "2.4.9", "5.2"], + ["lt_any", "date", "postgresql", "2.4.9", "6.0"], + ["lt_any", "date", "mysql", "2.7.0", "4.2"], + ["lt_any", "date", "mysql", "2.7.0", "5.2"], + ["lt_any", "date", "mysql", "2.7.0", "6.0"], + ["lt_any", "date", "mysql", "2.6.5", "4.2"], + ["lt_any", "date", "mysql", "2.6.5", "5.2"], + ["lt_any", "date", "mysql", "2.6.5", "6.0"], + ["lt_any", "date", "mysql", "2.5.7", "4.2"], + ["lt_any", "date", "mysql", "2.5.7", "5.2"], + ["lt_any", "date", "mysql", "2.5.7", "6.0"], + ["lt_any", "date", "mysql", "2.4.9", "4.2"], + ["lt_any", "date", "mysql", "2.4.9", "5.2"], + ["lt_any", "date", "mysql", "2.4.9", "6.0"], + ["lt_any", "date", "sqlite", "2.7.0", "4.2"], + ["lt_any", "date", "sqlite", "2.7.0", "5.2"], + ["lt_any", "date", "sqlite", "2.7.0", "6.0"], + ["lt_any", "date", "sqlite", "2.6.5", "4.2"], + ["lt_any", "date", "sqlite", "2.6.5", "5.2"], + ["lt_any", "date", "sqlite", "2.6.5", "6.0"], + ["lt_any", "date", "sqlite", "2.5.7", "4.2"], + ["lt_any", "date", "sqlite", "2.5.7", "5.2"], + ["lt_any", "date", "sqlite", "2.5.7", "6.0"], + ["lt_any", "date", "sqlite", "2.4.9", "4.2"], + ["lt_any", "date", "sqlite", "2.4.9", "5.2"], + ["lt_any", "date", "sqlite", "2.4.9", "6.0"], + ["lt_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["lt_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["lt_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["lt_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["lt_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["lt_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["lt_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["lt_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["lt_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["lt_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["lt_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["lt_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["lt_any", "datetime", "mysql", "2.7.0", "4.2"], + ["lt_any", "datetime", "mysql", "2.7.0", "5.2"], + ["lt_any", "datetime", "mysql", "2.7.0", "6.0"], + ["lt_any", "datetime", "mysql", "2.6.5", "4.2"], + ["lt_any", "datetime", "mysql", "2.6.5", "5.2"], + ["lt_any", "datetime", "mysql", "2.6.5", "6.0"], + ["lt_any", "datetime", "mysql", "2.5.7", "4.2"], + ["lt_any", "datetime", "mysql", "2.5.7", "5.2"], + ["lt_any", "datetime", "mysql", "2.5.7", "6.0"], + ["lt_any", "datetime", "mysql", "2.4.9", "4.2"], + ["lt_any", "datetime", "mysql", "2.4.9", "5.2"], + ["lt_any", "datetime", "mysql", "2.4.9", "6.0"], + ["lt_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["lt_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["lt_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["lt_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["lt_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["lt_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["lt_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["lt_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["lt_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["lt_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["lt_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["lt_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["lt_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["lt_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["lt_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["lt_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["lt_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["lt_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["lt_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["lt_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["lt_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["lt_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["lt_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["lt_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["lt_any", "decimal", "mysql", "2.7.0", "4.2"], + ["lt_any", "decimal", "mysql", "2.7.0", "5.2"], + ["lt_any", "decimal", "mysql", "2.7.0", "6.0"], + ["lt_any", "decimal", "mysql", "2.6.5", "4.2"], + ["lt_any", "decimal", "mysql", "2.6.5", "5.2"], + ["lt_any", "decimal", "mysql", "2.6.5", "6.0"], + ["lt_any", "decimal", "mysql", "2.5.7", "4.2"], + ["lt_any", "decimal", "mysql", "2.5.7", "5.2"], + ["lt_any", "decimal", "mysql", "2.5.7", "6.0"], + ["lt_any", "decimal", "mysql", "2.4.9", "4.2"], + ["lt_any", "decimal", "mysql", "2.4.9", "5.2"], + ["lt_any", "decimal", "mysql", "2.4.9", "6.0"], + ["lt_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["lt_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["lt_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["lt_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["lt_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["lt_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["lt_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["lt_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["lt_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["lt_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["lt_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["lt_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["lt_any", "float", "postgresql", "2.7.0", "4.2"], + ["lt_any", "float", "postgresql", "2.7.0", "5.2"], + ["lt_any", "float", "postgresql", "2.7.0", "6.0"], + ["lt_any", "float", "postgresql", "2.6.5", "4.2"], + ["lt_any", "float", "postgresql", "2.6.5", "5.2"], + ["lt_any", "float", "postgresql", "2.6.5", "6.0"], + ["lt_any", "float", "postgresql", "2.5.7", "4.2"], + ["lt_any", "float", "postgresql", "2.5.7", "5.2"], + ["lt_any", "float", "postgresql", "2.5.7", "6.0"], + ["lt_any", "float", "postgresql", "2.4.9", "4.2"], + ["lt_any", "float", "postgresql", "2.4.9", "5.2"], + ["lt_any", "float", "postgresql", "2.4.9", "6.0"], + ["lt_any", "float", "mysql", "2.7.0", "4.2"], + ["lt_any", "float", "mysql", "2.7.0", "5.2"], + ["lt_any", "float", "mysql", "2.7.0", "6.0"], + ["lt_any", "float", "mysql", "2.6.5", "4.2"], + ["lt_any", "float", "mysql", "2.6.5", "5.2"], + ["lt_any", "float", "mysql", "2.6.5", "6.0"], + ["lt_any", "float", "mysql", "2.5.7", "4.2"], + ["lt_any", "float", "mysql", "2.5.7", "5.2"], + ["lt_any", "float", "mysql", "2.5.7", "6.0"], + ["lt_any", "float", "mysql", "2.4.9", "4.2"], + ["lt_any", "float", "mysql", "2.4.9", "5.2"], + ["lt_any", "float", "mysql", "2.4.9", "6.0"], + ["lt_any", "float", "sqlite", "2.7.0", "4.2"], + ["lt_any", "float", "sqlite", "2.7.0", "5.2"], + ["lt_any", "float", "sqlite", "2.7.0", "6.0"], + ["lt_any", "float", "sqlite", "2.6.5", "4.2"], + ["lt_any", "float", "sqlite", "2.6.5", "5.2"], + ["lt_any", "float", "sqlite", "2.6.5", "6.0"], + ["lt_any", "float", "sqlite", "2.5.7", "4.2"], + ["lt_any", "float", "sqlite", "2.5.7", "5.2"], + ["lt_any", "float", "sqlite", "2.5.7", "6.0"], + ["lt_any", "float", "sqlite", "2.4.9", "4.2"], + ["lt_any", "float", "sqlite", "2.4.9", "5.2"], + ["lt_any", "float", "sqlite", "2.4.9", "6.0"], + ["lt_any", "integer", "postgresql", "2.7.0", "4.2"], + ["lt_any", "integer", "postgresql", "2.7.0", "5.2"], + ["lt_any", "integer", "postgresql", "2.7.0", "6.0"], + ["lt_any", "integer", "postgresql", "2.6.5", "4.2"], + ["lt_any", "integer", "postgresql", "2.6.5", "5.2"], + ["lt_any", "integer", "postgresql", "2.6.5", "6.0"], + ["lt_any", "integer", "postgresql", "2.5.7", "4.2"], + ["lt_any", "integer", "postgresql", "2.5.7", "5.2"], + ["lt_any", "integer", "postgresql", "2.5.7", "6.0"], + ["lt_any", "integer", "postgresql", "2.4.9", "4.2"], + ["lt_any", "integer", "postgresql", "2.4.9", "5.2"], + ["lt_any", "integer", "postgresql", "2.4.9", "6.0"], + ["lt_any", "integer", "mysql", "2.7.0", "4.2"], + ["lt_any", "integer", "mysql", "2.7.0", "5.2"], + ["lt_any", "integer", "mysql", "2.7.0", "6.0"], + ["lt_any", "integer", "mysql", "2.6.5", "4.2"], + ["lt_any", "integer", "mysql", "2.6.5", "5.2"], + ["lt_any", "integer", "mysql", "2.6.5", "6.0"], + ["lt_any", "integer", "mysql", "2.5.7", "4.2"], + ["lt_any", "integer", "mysql", "2.5.7", "5.2"], + ["lt_any", "integer", "mysql", "2.5.7", "6.0"], + ["lt_any", "integer", "mysql", "2.4.9", "4.2"], + ["lt_any", "integer", "mysql", "2.4.9", "5.2"], + ["lt_any", "integer", "mysql", "2.4.9", "6.0"], + ["lt_any", "integer", "sqlite", "2.7.0", "4.2"], + ["lt_any", "integer", "sqlite", "2.7.0", "5.2"], + ["lt_any", "integer", "sqlite", "2.7.0", "6.0"], + ["lt_any", "integer", "sqlite", "2.6.5", "4.2"], + ["lt_any", "integer", "sqlite", "2.6.5", "5.2"], + ["lt_any", "integer", "sqlite", "2.6.5", "6.0"], + ["lt_any", "integer", "sqlite", "2.5.7", "4.2"], + ["lt_any", "integer", "sqlite", "2.5.7", "5.2"], + ["lt_any", "integer", "sqlite", "2.5.7", "6.0"], + ["lt_any", "integer", "sqlite", "2.4.9", "4.2"], + ["lt_any", "integer", "sqlite", "2.4.9", "5.2"], + ["lt_any", "integer", "sqlite", "2.4.9", "6.0"], + ["lt_any", "string", "postgresql", "2.7.0", "4.2"], + ["lt_any", "string", "postgresql", "2.7.0", "5.2"], + ["lt_any", "string", "postgresql", "2.7.0", "6.0"], + ["lt_any", "string", "postgresql", "2.6.5", "4.2"], + ["lt_any", "string", "postgresql", "2.6.5", "5.2"], + ["lt_any", "string", "postgresql", "2.6.5", "6.0"], + ["lt_any", "string", "postgresql", "2.5.7", "4.2"], + ["lt_any", "string", "postgresql", "2.5.7", "5.2"], + ["lt_any", "string", "postgresql", "2.5.7", "6.0"], + ["lt_any", "string", "postgresql", "2.4.9", "4.2"], + ["lt_any", "string", "postgresql", "2.4.9", "5.2"], + ["lt_any", "string", "postgresql", "2.4.9", "6.0"], + ["lt_any", "string", "mysql", "2.7.0", "4.2"], + ["lt_any", "string", "mysql", "2.7.0", "5.2"], + ["lt_any", "string", "mysql", "2.7.0", "6.0"], + ["lt_any", "string", "mysql", "2.6.5", "4.2"], + ["lt_any", "string", "mysql", "2.6.5", "5.2"], + ["lt_any", "string", "mysql", "2.6.5", "6.0"], + ["lt_any", "string", "mysql", "2.5.7", "4.2"], + ["lt_any", "string", "mysql", "2.5.7", "5.2"], + ["lt_any", "string", "mysql", "2.5.7", "6.0"], + ["lt_any", "string", "mysql", "2.4.9", "4.2"], + ["lt_any", "string", "mysql", "2.4.9", "5.2"], + ["lt_any", "string", "mysql", "2.4.9", "6.0"], + ["lt_any", "string", "sqlite", "2.7.0", "4.2"], + ["lt_any", "string", "sqlite", "2.7.0", "5.2"], + ["lt_any", "string", "sqlite", "2.7.0", "6.0"], + ["lt_any", "string", "sqlite", "2.6.5", "4.2"], + ["lt_any", "string", "sqlite", "2.6.5", "5.2"], + ["lt_any", "string", "sqlite", "2.6.5", "6.0"], + ["lt_any", "string", "sqlite", "2.5.7", "4.2"], + ["lt_any", "string", "sqlite", "2.5.7", "5.2"], + ["lt_any", "string", "sqlite", "2.5.7", "6.0"], + ["lt_any", "string", "sqlite", "2.4.9", "4.2"], + ["lt_any", "string", "sqlite", "2.4.9", "5.2"], + ["lt_any", "string", "sqlite", "2.4.9", "6.0"], + ["lt_any", "text", "postgresql", "2.7.0", "4.2"], + ["lt_any", "text", "postgresql", "2.7.0", "5.2"], + ["lt_any", "text", "postgresql", "2.7.0", "6.0"], + ["lt_any", "text", "postgresql", "2.6.5", "4.2"], + ["lt_any", "text", "postgresql", "2.6.5", "5.2"], + ["lt_any", "text", "postgresql", "2.6.5", "6.0"], + ["lt_any", "text", "postgresql", "2.5.7", "4.2"], + ["lt_any", "text", "postgresql", "2.5.7", "5.2"], + ["lt_any", "text", "postgresql", "2.5.7", "6.0"], + ["lt_any", "text", "postgresql", "2.4.9", "4.2"], + ["lt_any", "text", "postgresql", "2.4.9", "5.2"], + ["lt_any", "text", "postgresql", "2.4.9", "6.0"], + ["lt_any", "text", "mysql", "2.7.0", "4.2"], + ["lt_any", "text", "mysql", "2.7.0", "5.2"], + ["lt_any", "text", "mysql", "2.7.0", "6.0"], + ["lt_any", "text", "mysql", "2.6.5", "4.2"], + ["lt_any", "text", "mysql", "2.6.5", "5.2"], + ["lt_any", "text", "mysql", "2.6.5", "6.0"], + ["lt_any", "text", "mysql", "2.5.7", "4.2"], + ["lt_any", "text", "mysql", "2.5.7", "5.2"], + ["lt_any", "text", "mysql", "2.5.7", "6.0"], + ["lt_any", "text", "mysql", "2.4.9", "4.2"], + ["lt_any", "text", "mysql", "2.4.9", "5.2"], + ["lt_any", "text", "mysql", "2.4.9", "6.0"], + ["lt_any", "text", "sqlite", "2.7.0", "4.2"], + ["lt_any", "text", "sqlite", "2.7.0", "5.2"], + ["lt_any", "text", "sqlite", "2.7.0", "6.0"], + ["lt_any", "text", "sqlite", "2.6.5", "4.2"], + ["lt_any", "text", "sqlite", "2.6.5", "5.2"], + ["lt_any", "text", "sqlite", "2.6.5", "6.0"], + ["lt_any", "text", "sqlite", "2.5.7", "4.2"], + ["lt_any", "text", "sqlite", "2.5.7", "5.2"], + ["lt_any", "text", "sqlite", "2.5.7", "6.0"], + ["lt_any", "text", "sqlite", "2.4.9", "4.2"], + ["lt_any", "text", "sqlite", "2.4.9", "5.2"], + ["lt_any", "text", "sqlite", "2.4.9", "6.0"], + ["lt_any", "time", "postgresql", "2.7.0", "4.2"], + ["lt_any", "time", "postgresql", "2.7.0", "5.2"], + ["lt_any", "time", "postgresql", "2.7.0", "6.0"], + ["lt_any", "time", "postgresql", "2.6.5", "4.2"], + ["lt_any", "time", "postgresql", "2.6.5", "5.2"], + ["lt_any", "time", "postgresql", "2.6.5", "6.0"], + ["lt_any", "time", "postgresql", "2.5.7", "4.2"], + ["lt_any", "time", "postgresql", "2.5.7", "5.2"], + ["lt_any", "time", "postgresql", "2.5.7", "6.0"], + ["lt_any", "time", "postgresql", "2.4.9", "4.2"], + ["lt_any", "time", "postgresql", "2.4.9", "5.2"], + ["lt_any", "time", "postgresql", "2.4.9", "6.0"], + ["lt_any", "time", "mysql", "2.7.0", "4.2"], + ["lt_any", "time", "mysql", "2.7.0", "5.2"], + ["lt_any", "time", "mysql", "2.7.0", "6.0"], + ["lt_any", "time", "mysql", "2.6.5", "4.2"], + ["lt_any", "time", "mysql", "2.6.5", "5.2"], + ["lt_any", "time", "mysql", "2.6.5", "6.0"], + ["lt_any", "time", "mysql", "2.5.7", "4.2"], + ["lt_any", "time", "mysql", "2.5.7", "5.2"], + ["lt_any", "time", "mysql", "2.5.7", "6.0"], + ["lt_any", "time", "mysql", "2.4.9", "4.2"], + ["lt_any", "time", "mysql", "2.4.9", "5.2"], + ["lt_any", "time", "mysql", "2.4.9", "6.0"], + ["lt_any", "time", "sqlite", "2.7.0", "4.2"], + ["lt_any", "time", "sqlite", "2.7.0", "5.2"], + ["lt_any", "time", "sqlite", "2.7.0", "6.0"], + ["lt_any", "time", "sqlite", "2.6.5", "4.2"], + ["lt_any", "time", "sqlite", "2.6.5", "5.2"], + ["lt_any", "time", "sqlite", "2.6.5", "6.0"], + ["lt_any", "time", "sqlite", "2.5.7", "4.2"], + ["lt_any", "time", "sqlite", "2.5.7", "5.2"], + ["lt_any", "time", "sqlite", "2.5.7", "6.0"], + ["lt_any", "time", "sqlite", "2.4.9", "4.2"], + ["lt_any", "time", "sqlite", "2.4.9", "5.2"], + ["lt_any", "time", "sqlite", "2.4.9", "6.0"], + ["lt_all", "binary", "postgresql", "2.7.0", "4.2"], + ["lt_all", "binary", "postgresql", "2.7.0", "5.2"], + ["lt_all", "binary", "postgresql", "2.7.0", "6.0"], + ["lt_all", "binary", "postgresql", "2.6.5", "4.2"], + ["lt_all", "binary", "postgresql", "2.6.5", "5.2"], + ["lt_all", "binary", "postgresql", "2.6.5", "6.0"], + ["lt_all", "binary", "postgresql", "2.5.7", "4.2"], + ["lt_all", "binary", "postgresql", "2.5.7", "5.2"], + ["lt_all", "binary", "postgresql", "2.5.7", "6.0"], + ["lt_all", "binary", "postgresql", "2.4.9", "4.2"], + ["lt_all", "binary", "postgresql", "2.4.9", "5.2"], + ["lt_all", "binary", "postgresql", "2.4.9", "6.0"], + ["lt_all", "binary", "mysql", "2.7.0", "4.2"], + ["lt_all", "binary", "mysql", "2.7.0", "5.2"], + ["lt_all", "binary", "mysql", "2.7.0", "6.0"], + ["lt_all", "binary", "mysql", "2.6.5", "4.2"], + ["lt_all", "binary", "mysql", "2.6.5", "5.2"], + ["lt_all", "binary", "mysql", "2.6.5", "6.0"], + ["lt_all", "binary", "mysql", "2.5.7", "4.2"], + ["lt_all", "binary", "mysql", "2.5.7", "5.2"], + ["lt_all", "binary", "mysql", "2.5.7", "6.0"], + ["lt_all", "binary", "mysql", "2.4.9", "4.2"], + ["lt_all", "binary", "mysql", "2.4.9", "5.2"], + ["lt_all", "binary", "mysql", "2.4.9", "6.0"], + ["lt_all", "binary", "sqlite", "2.7.0", "4.2"], + ["lt_all", "binary", "sqlite", "2.7.0", "5.2"], + ["lt_all", "binary", "sqlite", "2.7.0", "6.0"], + ["lt_all", "binary", "sqlite", "2.6.5", "4.2"], + ["lt_all", "binary", "sqlite", "2.6.5", "5.2"], + ["lt_all", "binary", "sqlite", "2.6.5", "6.0"], + ["lt_all", "binary", "sqlite", "2.5.7", "4.2"], + ["lt_all", "binary", "sqlite", "2.5.7", "5.2"], + ["lt_all", "binary", "sqlite", "2.5.7", "6.0"], + ["lt_all", "binary", "sqlite", "2.4.9", "4.2"], + ["lt_all", "binary", "sqlite", "2.4.9", "5.2"], + ["lt_all", "binary", "sqlite", "2.4.9", "6.0"], + ["lt_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["lt_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["lt_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["lt_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["lt_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["lt_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["lt_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["lt_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["lt_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["lt_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["lt_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["lt_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["lt_all", "boolean", "mysql", "2.7.0", "4.2"], + ["lt_all", "boolean", "mysql", "2.7.0", "5.2"], + ["lt_all", "boolean", "mysql", "2.7.0", "6.0"], + ["lt_all", "boolean", "mysql", "2.6.5", "4.2"], + ["lt_all", "boolean", "mysql", "2.6.5", "5.2"], + ["lt_all", "boolean", "mysql", "2.6.5", "6.0"], + ["lt_all", "boolean", "mysql", "2.5.7", "4.2"], + ["lt_all", "boolean", "mysql", "2.5.7", "5.2"], + ["lt_all", "boolean", "mysql", "2.5.7", "6.0"], + ["lt_all", "boolean", "mysql", "2.4.9", "4.2"], + ["lt_all", "boolean", "mysql", "2.4.9", "5.2"], + ["lt_all", "boolean", "mysql", "2.4.9", "6.0"], + ["lt_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["lt_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["lt_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["lt_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["lt_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["lt_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["lt_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["lt_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["lt_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["lt_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["lt_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["lt_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["lt_all", "date", "postgresql", "2.7.0", "4.2"], + ["lt_all", "date", "postgresql", "2.7.0", "5.2"], + ["lt_all", "date", "postgresql", "2.7.0", "6.0"], + ["lt_all", "date", "postgresql", "2.6.5", "4.2"], + ["lt_all", "date", "postgresql", "2.6.5", "5.2"], + ["lt_all", "date", "postgresql", "2.6.5", "6.0"], + ["lt_all", "date", "postgresql", "2.5.7", "4.2"], + ["lt_all", "date", "postgresql", "2.5.7", "5.2"], + ["lt_all", "date", "postgresql", "2.5.7", "6.0"], + ["lt_all", "date", "postgresql", "2.4.9", "4.2"], + ["lt_all", "date", "postgresql", "2.4.9", "5.2"], + ["lt_all", "date", "postgresql", "2.4.9", "6.0"], + ["lt_all", "date", "mysql", "2.7.0", "4.2"], + ["lt_all", "date", "mysql", "2.7.0", "5.2"], + ["lt_all", "date", "mysql", "2.7.0", "6.0"], + ["lt_all", "date", "mysql", "2.6.5", "4.2"], + ["lt_all", "date", "mysql", "2.6.5", "5.2"], + ["lt_all", "date", "mysql", "2.6.5", "6.0"], + ["lt_all", "date", "mysql", "2.5.7", "4.2"], + ["lt_all", "date", "mysql", "2.5.7", "5.2"], + ["lt_all", "date", "mysql", "2.5.7", "6.0"], + ["lt_all", "date", "mysql", "2.4.9", "4.2"], + ["lt_all", "date", "mysql", "2.4.9", "5.2"], + ["lt_all", "date", "mysql", "2.4.9", "6.0"], + ["lt_all", "date", "sqlite", "2.7.0", "4.2"], + ["lt_all", "date", "sqlite", "2.7.0", "5.2"], + ["lt_all", "date", "sqlite", "2.7.0", "6.0"], + ["lt_all", "date", "sqlite", "2.6.5", "4.2"], + ["lt_all", "date", "sqlite", "2.6.5", "5.2"], + ["lt_all", "date", "sqlite", "2.6.5", "6.0"], + ["lt_all", "date", "sqlite", "2.5.7", "4.2"], + ["lt_all", "date", "sqlite", "2.5.7", "5.2"], + ["lt_all", "date", "sqlite", "2.5.7", "6.0"], + ["lt_all", "date", "sqlite", "2.4.9", "4.2"], + ["lt_all", "date", "sqlite", "2.4.9", "5.2"], + ["lt_all", "date", "sqlite", "2.4.9", "6.0"], + ["lt_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["lt_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["lt_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["lt_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["lt_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["lt_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["lt_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["lt_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["lt_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["lt_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["lt_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["lt_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["lt_all", "datetime", "mysql", "2.7.0", "4.2"], + ["lt_all", "datetime", "mysql", "2.7.0", "5.2"], + ["lt_all", "datetime", "mysql", "2.7.0", "6.0"], + ["lt_all", "datetime", "mysql", "2.6.5", "4.2"], + ["lt_all", "datetime", "mysql", "2.6.5", "5.2"], + ["lt_all", "datetime", "mysql", "2.6.5", "6.0"], + ["lt_all", "datetime", "mysql", "2.5.7", "4.2"], + ["lt_all", "datetime", "mysql", "2.5.7", "5.2"], + ["lt_all", "datetime", "mysql", "2.5.7", "6.0"], + ["lt_all", "datetime", "mysql", "2.4.9", "4.2"], + ["lt_all", "datetime", "mysql", "2.4.9", "5.2"], + ["lt_all", "datetime", "mysql", "2.4.9", "6.0"], + ["lt_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["lt_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["lt_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["lt_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["lt_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["lt_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["lt_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["lt_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["lt_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["lt_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["lt_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["lt_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["lt_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["lt_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["lt_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["lt_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["lt_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["lt_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["lt_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["lt_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["lt_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["lt_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["lt_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["lt_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["lt_all", "decimal", "mysql", "2.7.0", "4.2"], + ["lt_all", "decimal", "mysql", "2.7.0", "5.2"], + ["lt_all", "decimal", "mysql", "2.7.0", "6.0"], + ["lt_all", "decimal", "mysql", "2.6.5", "4.2"], + ["lt_all", "decimal", "mysql", "2.6.5", "5.2"], + ["lt_all", "decimal", "mysql", "2.6.5", "6.0"], + ["lt_all", "decimal", "mysql", "2.5.7", "4.2"], + ["lt_all", "decimal", "mysql", "2.5.7", "5.2"], + ["lt_all", "decimal", "mysql", "2.5.7", "6.0"], + ["lt_all", "decimal", "mysql", "2.4.9", "4.2"], + ["lt_all", "decimal", "mysql", "2.4.9", "5.2"], + ["lt_all", "decimal", "mysql", "2.4.9", "6.0"], + ["lt_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["lt_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["lt_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["lt_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["lt_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["lt_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["lt_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["lt_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["lt_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["lt_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["lt_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["lt_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["lt_all", "float", "postgresql", "2.7.0", "4.2"], + ["lt_all", "float", "postgresql", "2.7.0", "5.2"], + ["lt_all", "float", "postgresql", "2.7.0", "6.0"], + ["lt_all", "float", "postgresql", "2.6.5", "4.2"], + ["lt_all", "float", "postgresql", "2.6.5", "5.2"], + ["lt_all", "float", "postgresql", "2.6.5", "6.0"], + ["lt_all", "float", "postgresql", "2.5.7", "4.2"], + ["lt_all", "float", "postgresql", "2.5.7", "5.2"], + ["lt_all", "float", "postgresql", "2.5.7", "6.0"], + ["lt_all", "float", "postgresql", "2.4.9", "4.2"], + ["lt_all", "float", "postgresql", "2.4.9", "5.2"], + ["lt_all", "float", "postgresql", "2.4.9", "6.0"], + ["lt_all", "float", "mysql", "2.7.0", "4.2"], + ["lt_all", "float", "mysql", "2.7.0", "5.2"], + ["lt_all", "float", "mysql", "2.7.0", "6.0"], + ["lt_all", "float", "mysql", "2.6.5", "4.2"], + ["lt_all", "float", "mysql", "2.6.5", "5.2"], + ["lt_all", "float", "mysql", "2.6.5", "6.0"], + ["lt_all", "float", "mysql", "2.5.7", "4.2"], + ["lt_all", "float", "mysql", "2.5.7", "5.2"], + ["lt_all", "float", "mysql", "2.5.7", "6.0"], + ["lt_all", "float", "mysql", "2.4.9", "4.2"], + ["lt_all", "float", "mysql", "2.4.9", "5.2"], + ["lt_all", "float", "mysql", "2.4.9", "6.0"], + ["lt_all", "float", "sqlite", "2.7.0", "4.2"], + ["lt_all", "float", "sqlite", "2.7.0", "5.2"], + ["lt_all", "float", "sqlite", "2.7.0", "6.0"], + ["lt_all", "float", "sqlite", "2.6.5", "4.2"], + ["lt_all", "float", "sqlite", "2.6.5", "5.2"], + ["lt_all", "float", "sqlite", "2.6.5", "6.0"], + ["lt_all", "float", "sqlite", "2.5.7", "4.2"], + ["lt_all", "float", "sqlite", "2.5.7", "5.2"], + ["lt_all", "float", "sqlite", "2.5.7", "6.0"], + ["lt_all", "float", "sqlite", "2.4.9", "4.2"], + ["lt_all", "float", "sqlite", "2.4.9", "5.2"], + ["lt_all", "float", "sqlite", "2.4.9", "6.0"], + ["lt_all", "integer", "postgresql", "2.7.0", "4.2"], + ["lt_all", "integer", "postgresql", "2.7.0", "5.2"], + ["lt_all", "integer", "postgresql", "2.7.0", "6.0"], + ["lt_all", "integer", "postgresql", "2.6.5", "4.2"], + ["lt_all", "integer", "postgresql", "2.6.5", "5.2"], + ["lt_all", "integer", "postgresql", "2.6.5", "6.0"], + ["lt_all", "integer", "postgresql", "2.5.7", "4.2"], + ["lt_all", "integer", "postgresql", "2.5.7", "5.2"], + ["lt_all", "integer", "postgresql", "2.5.7", "6.0"], + ["lt_all", "integer", "postgresql", "2.4.9", "4.2"], + ["lt_all", "integer", "postgresql", "2.4.9", "5.2"], + ["lt_all", "integer", "postgresql", "2.4.9", "6.0"], + ["lt_all", "integer", "mysql", "2.7.0", "4.2"], + ["lt_all", "integer", "mysql", "2.7.0", "5.2"], + ["lt_all", "integer", "mysql", "2.7.0", "6.0"], + ["lt_all", "integer", "mysql", "2.6.5", "4.2"], + ["lt_all", "integer", "mysql", "2.6.5", "5.2"], + ["lt_all", "integer", "mysql", "2.6.5", "6.0"], + ["lt_all", "integer", "mysql", "2.5.7", "4.2"], + ["lt_all", "integer", "mysql", "2.5.7", "5.2"], + ["lt_all", "integer", "mysql", "2.5.7", "6.0"], + ["lt_all", "integer", "mysql", "2.4.9", "4.2"], + ["lt_all", "integer", "mysql", "2.4.9", "5.2"], + ["lt_all", "integer", "mysql", "2.4.9", "6.0"], + ["lt_all", "integer", "sqlite", "2.7.0", "4.2"], + ["lt_all", "integer", "sqlite", "2.7.0", "5.2"], + ["lt_all", "integer", "sqlite", "2.7.0", "6.0"], + ["lt_all", "integer", "sqlite", "2.6.5", "4.2"], + ["lt_all", "integer", "sqlite", "2.6.5", "5.2"], + ["lt_all", "integer", "sqlite", "2.6.5", "6.0"], + ["lt_all", "integer", "sqlite", "2.5.7", "4.2"], + ["lt_all", "integer", "sqlite", "2.5.7", "5.2"], + ["lt_all", "integer", "sqlite", "2.5.7", "6.0"], + ["lt_all", "integer", "sqlite", "2.4.9", "4.2"], + ["lt_all", "integer", "sqlite", "2.4.9", "5.2"], + ["lt_all", "integer", "sqlite", "2.4.9", "6.0"], + ["lt_all", "string", "postgresql", "2.7.0", "4.2"], + ["lt_all", "string", "postgresql", "2.7.0", "5.2"], + ["lt_all", "string", "postgresql", "2.7.0", "6.0"], + ["lt_all", "string", "postgresql", "2.6.5", "4.2"], + ["lt_all", "string", "postgresql", "2.6.5", "5.2"], + ["lt_all", "string", "postgresql", "2.6.5", "6.0"], + ["lt_all", "string", "postgresql", "2.5.7", "4.2"], + ["lt_all", "string", "postgresql", "2.5.7", "5.2"], + ["lt_all", "string", "postgresql", "2.5.7", "6.0"], + ["lt_all", "string", "postgresql", "2.4.9", "4.2"], + ["lt_all", "string", "postgresql", "2.4.9", "5.2"], + ["lt_all", "string", "postgresql", "2.4.9", "6.0"], + ["lt_all", "string", "mysql", "2.7.0", "4.2"], + ["lt_all", "string", "mysql", "2.7.0", "5.2"], + ["lt_all", "string", "mysql", "2.7.0", "6.0"], + ["lt_all", "string", "mysql", "2.6.5", "4.2"], + ["lt_all", "string", "mysql", "2.6.5", "5.2"], + ["lt_all", "string", "mysql", "2.6.5", "6.0"], + ["lt_all", "string", "mysql", "2.5.7", "4.2"], + ["lt_all", "string", "mysql", "2.5.7", "5.2"], + ["lt_all", "string", "mysql", "2.5.7", "6.0"], + ["lt_all", "string", "mysql", "2.4.9", "4.2"], + ["lt_all", "string", "mysql", "2.4.9", "5.2"], + ["lt_all", "string", "mysql", "2.4.9", "6.0"], + ["lt_all", "string", "sqlite", "2.7.0", "4.2"], + ["lt_all", "string", "sqlite", "2.7.0", "5.2"], + ["lt_all", "string", "sqlite", "2.7.0", "6.0"], + ["lt_all", "string", "sqlite", "2.6.5", "4.2"], + ["lt_all", "string", "sqlite", "2.6.5", "5.2"], + ["lt_all", "string", "sqlite", "2.6.5", "6.0"], + ["lt_all", "string", "sqlite", "2.5.7", "4.2"], + ["lt_all", "string", "sqlite", "2.5.7", "5.2"], + ["lt_all", "string", "sqlite", "2.5.7", "6.0"], + ["lt_all", "string", "sqlite", "2.4.9", "4.2"], + ["lt_all", "string", "sqlite", "2.4.9", "5.2"], + ["lt_all", "string", "sqlite", "2.4.9", "6.0"], + ["lt_all", "text", "postgresql", "2.7.0", "4.2"], + ["lt_all", "text", "postgresql", "2.7.0", "5.2"], + ["lt_all", "text", "postgresql", "2.7.0", "6.0"], + ["lt_all", "text", "postgresql", "2.6.5", "4.2"], + ["lt_all", "text", "postgresql", "2.6.5", "5.2"], + ["lt_all", "text", "postgresql", "2.6.5", "6.0"], + ["lt_all", "text", "postgresql", "2.5.7", "4.2"], + ["lt_all", "text", "postgresql", "2.5.7", "5.2"], + ["lt_all", "text", "postgresql", "2.5.7", "6.0"], + ["lt_all", "text", "postgresql", "2.4.9", "4.2"], + ["lt_all", "text", "postgresql", "2.4.9", "5.2"], + ["lt_all", "text", "postgresql", "2.4.9", "6.0"], + ["lt_all", "text", "mysql", "2.7.0", "4.2"], + ["lt_all", "text", "mysql", "2.7.0", "5.2"], + ["lt_all", "text", "mysql", "2.7.0", "6.0"], + ["lt_all", "text", "mysql", "2.6.5", "4.2"], + ["lt_all", "text", "mysql", "2.6.5", "5.2"], + ["lt_all", "text", "mysql", "2.6.5", "6.0"], + ["lt_all", "text", "mysql", "2.5.7", "4.2"], + ["lt_all", "text", "mysql", "2.5.7", "5.2"], + ["lt_all", "text", "mysql", "2.5.7", "6.0"], + ["lt_all", "text", "mysql", "2.4.9", "4.2"], + ["lt_all", "text", "mysql", "2.4.9", "5.2"], + ["lt_all", "text", "mysql", "2.4.9", "6.0"], + ["lt_all", "text", "sqlite", "2.7.0", "4.2"], + ["lt_all", "text", "sqlite", "2.7.0", "5.2"], + ["lt_all", "text", "sqlite", "2.7.0", "6.0"], + ["lt_all", "text", "sqlite", "2.6.5", "4.2"], + ["lt_all", "text", "sqlite", "2.6.5", "5.2"], + ["lt_all", "text", "sqlite", "2.6.5", "6.0"], + ["lt_all", "text", "sqlite", "2.5.7", "4.2"], + ["lt_all", "text", "sqlite", "2.5.7", "5.2"], + ["lt_all", "text", "sqlite", "2.5.7", "6.0"], + ["lt_all", "text", "sqlite", "2.4.9", "4.2"], + ["lt_all", "text", "sqlite", "2.4.9", "5.2"], + ["lt_all", "text", "sqlite", "2.4.9", "6.0"], + ["lt_all", "time", "postgresql", "2.7.0", "4.2"], + ["lt_all", "time", "postgresql", "2.7.0", "5.2"], + ["lt_all", "time", "postgresql", "2.7.0", "6.0"], + ["lt_all", "time", "postgresql", "2.6.5", "4.2"], + ["lt_all", "time", "postgresql", "2.6.5", "5.2"], + ["lt_all", "time", "postgresql", "2.6.5", "6.0"], + ["lt_all", "time", "postgresql", "2.5.7", "4.2"], + ["lt_all", "time", "postgresql", "2.5.7", "5.2"], + ["lt_all", "time", "postgresql", "2.5.7", "6.0"], + ["lt_all", "time", "postgresql", "2.4.9", "4.2"], + ["lt_all", "time", "postgresql", "2.4.9", "5.2"], + ["lt_all", "time", "postgresql", "2.4.9", "6.0"], + ["lt_all", "time", "mysql", "2.7.0", "4.2"], + ["lt_all", "time", "mysql", "2.7.0", "5.2"], + ["lt_all", "time", "mysql", "2.7.0", "6.0"], + ["lt_all", "time", "mysql", "2.6.5", "4.2"], + ["lt_all", "time", "mysql", "2.6.5", "5.2"], + ["lt_all", "time", "mysql", "2.6.5", "6.0"], + ["lt_all", "time", "mysql", "2.5.7", "4.2"], + ["lt_all", "time", "mysql", "2.5.7", "5.2"], + ["lt_all", "time", "mysql", "2.5.7", "6.0"], + ["lt_all", "time", "mysql", "2.4.9", "4.2"], + ["lt_all", "time", "mysql", "2.4.9", "5.2"], + ["lt_all", "time", "mysql", "2.4.9", "6.0"], + ["lt_all", "time", "sqlite", "2.7.0", "4.2"], + ["lt_all", "time", "sqlite", "2.7.0", "5.2"], + ["lt_all", "time", "sqlite", "2.7.0", "6.0"], + ["lt_all", "time", "sqlite", "2.6.5", "4.2"], + ["lt_all", "time", "sqlite", "2.6.5", "5.2"], + ["lt_all", "time", "sqlite", "2.6.5", "6.0"], + ["lt_all", "time", "sqlite", "2.5.7", "4.2"], + ["lt_all", "time", "sqlite", "2.5.7", "5.2"], + ["lt_all", "time", "sqlite", "2.5.7", "6.0"], + ["lt_all", "time", "sqlite", "2.4.9", "4.2"], + ["lt_all", "time", "sqlite", "2.4.9", "5.2"], + ["lt_all", "time", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "binary", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "binary", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "binary", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "binary", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "binary", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "binary", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "binary", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "binary", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "binary", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "binary", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "binary", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "binary", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "binary", "mysql", "2.7.0", "4.2"], + ["lteq_any", "binary", "mysql", "2.7.0", "5.2"], + ["lteq_any", "binary", "mysql", "2.7.0", "6.0"], + ["lteq_any", "binary", "mysql", "2.6.5", "4.2"], + ["lteq_any", "binary", "mysql", "2.6.5", "5.2"], + ["lteq_any", "binary", "mysql", "2.6.5", "6.0"], + ["lteq_any", "binary", "mysql", "2.5.7", "4.2"], + ["lteq_any", "binary", "mysql", "2.5.7", "5.2"], + ["lteq_any", "binary", "mysql", "2.5.7", "6.0"], + ["lteq_any", "binary", "mysql", "2.4.9", "4.2"], + ["lteq_any", "binary", "mysql", "2.4.9", "5.2"], + ["lteq_any", "binary", "mysql", "2.4.9", "6.0"], + ["lteq_any", "binary", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "binary", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "binary", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "binary", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "binary", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "binary", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "binary", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "binary", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "binary", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "binary", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "binary", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "binary", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "boolean", "mysql", "2.7.0", "4.2"], + ["lteq_any", "boolean", "mysql", "2.7.0", "5.2"], + ["lteq_any", "boolean", "mysql", "2.7.0", "6.0"], + ["lteq_any", "boolean", "mysql", "2.6.5", "4.2"], + ["lteq_any", "boolean", "mysql", "2.6.5", "5.2"], + ["lteq_any", "boolean", "mysql", "2.6.5", "6.0"], + ["lteq_any", "boolean", "mysql", "2.5.7", "4.2"], + ["lteq_any", "boolean", "mysql", "2.5.7", "5.2"], + ["lteq_any", "boolean", "mysql", "2.5.7", "6.0"], + ["lteq_any", "boolean", "mysql", "2.4.9", "4.2"], + ["lteq_any", "boolean", "mysql", "2.4.9", "5.2"], + ["lteq_any", "boolean", "mysql", "2.4.9", "6.0"], + ["lteq_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "date", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "date", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "date", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "date", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "date", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "date", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "date", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "date", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "date", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "date", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "date", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "date", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "date", "mysql", "2.7.0", "4.2"], + ["lteq_any", "date", "mysql", "2.7.0", "5.2"], + ["lteq_any", "date", "mysql", "2.7.0", "6.0"], + ["lteq_any", "date", "mysql", "2.6.5", "4.2"], + ["lteq_any", "date", "mysql", "2.6.5", "5.2"], + ["lteq_any", "date", "mysql", "2.6.5", "6.0"], + ["lteq_any", "date", "mysql", "2.5.7", "4.2"], + ["lteq_any", "date", "mysql", "2.5.7", "5.2"], + ["lteq_any", "date", "mysql", "2.5.7", "6.0"], + ["lteq_any", "date", "mysql", "2.4.9", "4.2"], + ["lteq_any", "date", "mysql", "2.4.9", "5.2"], + ["lteq_any", "date", "mysql", "2.4.9", "6.0"], + ["lteq_any", "date", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "date", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "date", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "date", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "date", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "date", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "date", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "date", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "date", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "date", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "date", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "date", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "datetime", "mysql", "2.7.0", "4.2"], + ["lteq_any", "datetime", "mysql", "2.7.0", "5.2"], + ["lteq_any", "datetime", "mysql", "2.7.0", "6.0"], + ["lteq_any", "datetime", "mysql", "2.6.5", "4.2"], + ["lteq_any", "datetime", "mysql", "2.6.5", "5.2"], + ["lteq_any", "datetime", "mysql", "2.6.5", "6.0"], + ["lteq_any", "datetime", "mysql", "2.5.7", "4.2"], + ["lteq_any", "datetime", "mysql", "2.5.7", "5.2"], + ["lteq_any", "datetime", "mysql", "2.5.7", "6.0"], + ["lteq_any", "datetime", "mysql", "2.4.9", "4.2"], + ["lteq_any", "datetime", "mysql", "2.4.9", "5.2"], + ["lteq_any", "datetime", "mysql", "2.4.9", "6.0"], + ["lteq_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "decimal", "mysql", "2.7.0", "4.2"], + ["lteq_any", "decimal", "mysql", "2.7.0", "5.2"], + ["lteq_any", "decimal", "mysql", "2.7.0", "6.0"], + ["lteq_any", "decimal", "mysql", "2.6.5", "4.2"], + ["lteq_any", "decimal", "mysql", "2.6.5", "5.2"], + ["lteq_any", "decimal", "mysql", "2.6.5", "6.0"], + ["lteq_any", "decimal", "mysql", "2.5.7", "4.2"], + ["lteq_any", "decimal", "mysql", "2.5.7", "5.2"], + ["lteq_any", "decimal", "mysql", "2.5.7", "6.0"], + ["lteq_any", "decimal", "mysql", "2.4.9", "4.2"], + ["lteq_any", "decimal", "mysql", "2.4.9", "5.2"], + ["lteq_any", "decimal", "mysql", "2.4.9", "6.0"], + ["lteq_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "float", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "float", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "float", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "float", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "float", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "float", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "float", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "float", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "float", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "float", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "float", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "float", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "float", "mysql", "2.7.0", "4.2"], + ["lteq_any", "float", "mysql", "2.7.0", "5.2"], + ["lteq_any", "float", "mysql", "2.7.0", "6.0"], + ["lteq_any", "float", "mysql", "2.6.5", "4.2"], + ["lteq_any", "float", "mysql", "2.6.5", "5.2"], + ["lteq_any", "float", "mysql", "2.6.5", "6.0"], + ["lteq_any", "float", "mysql", "2.5.7", "4.2"], + ["lteq_any", "float", "mysql", "2.5.7", "5.2"], + ["lteq_any", "float", "mysql", "2.5.7", "6.0"], + ["lteq_any", "float", "mysql", "2.4.9", "4.2"], + ["lteq_any", "float", "mysql", "2.4.9", "5.2"], + ["lteq_any", "float", "mysql", "2.4.9", "6.0"], + ["lteq_any", "float", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "float", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "float", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "float", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "float", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "float", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "float", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "float", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "float", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "float", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "float", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "float", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "integer", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "integer", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "integer", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "integer", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "integer", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "integer", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "integer", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "integer", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "integer", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "integer", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "integer", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "integer", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "integer", "mysql", "2.7.0", "4.2"], + ["lteq_any", "integer", "mysql", "2.7.0", "5.2"], + ["lteq_any", "integer", "mysql", "2.7.0", "6.0"], + ["lteq_any", "integer", "mysql", "2.6.5", "4.2"], + ["lteq_any", "integer", "mysql", "2.6.5", "5.2"], + ["lteq_any", "integer", "mysql", "2.6.5", "6.0"], + ["lteq_any", "integer", "mysql", "2.5.7", "4.2"], + ["lteq_any", "integer", "mysql", "2.5.7", "5.2"], + ["lteq_any", "integer", "mysql", "2.5.7", "6.0"], + ["lteq_any", "integer", "mysql", "2.4.9", "4.2"], + ["lteq_any", "integer", "mysql", "2.4.9", "5.2"], + ["lteq_any", "integer", "mysql", "2.4.9", "6.0"], + ["lteq_any", "integer", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "integer", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "integer", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "integer", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "integer", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "integer", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "integer", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "integer", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "integer", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "integer", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "integer", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "integer", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "string", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "string", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "string", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "string", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "string", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "string", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "string", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "string", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "string", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "string", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "string", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "string", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "string", "mysql", "2.7.0", "4.2"], + ["lteq_any", "string", "mysql", "2.7.0", "5.2"], + ["lteq_any", "string", "mysql", "2.7.0", "6.0"], + ["lteq_any", "string", "mysql", "2.6.5", "4.2"], + ["lteq_any", "string", "mysql", "2.6.5", "5.2"], + ["lteq_any", "string", "mysql", "2.6.5", "6.0"], + ["lteq_any", "string", "mysql", "2.5.7", "4.2"], + ["lteq_any", "string", "mysql", "2.5.7", "5.2"], + ["lteq_any", "string", "mysql", "2.5.7", "6.0"], + ["lteq_any", "string", "mysql", "2.4.9", "4.2"], + ["lteq_any", "string", "mysql", "2.4.9", "5.2"], + ["lteq_any", "string", "mysql", "2.4.9", "6.0"], + ["lteq_any", "string", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "string", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "string", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "string", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "string", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "string", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "string", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "string", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "string", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "string", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "string", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "string", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "text", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "text", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "text", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "text", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "text", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "text", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "text", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "text", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "text", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "text", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "text", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "text", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "text", "mysql", "2.7.0", "4.2"], + ["lteq_any", "text", "mysql", "2.7.0", "5.2"], + ["lteq_any", "text", "mysql", "2.7.0", "6.0"], + ["lteq_any", "text", "mysql", "2.6.5", "4.2"], + ["lteq_any", "text", "mysql", "2.6.5", "5.2"], + ["lteq_any", "text", "mysql", "2.6.5", "6.0"], + ["lteq_any", "text", "mysql", "2.5.7", "4.2"], + ["lteq_any", "text", "mysql", "2.5.7", "5.2"], + ["lteq_any", "text", "mysql", "2.5.7", "6.0"], + ["lteq_any", "text", "mysql", "2.4.9", "4.2"], + ["lteq_any", "text", "mysql", "2.4.9", "5.2"], + ["lteq_any", "text", "mysql", "2.4.9", "6.0"], + ["lteq_any", "text", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "text", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "text", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "text", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "text", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "text", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "text", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "text", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "text", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "text", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "text", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "text", "sqlite", "2.4.9", "6.0"], + ["lteq_any", "time", "postgresql", "2.7.0", "4.2"], + ["lteq_any", "time", "postgresql", "2.7.0", "5.2"], + ["lteq_any", "time", "postgresql", "2.7.0", "6.0"], + ["lteq_any", "time", "postgresql", "2.6.5", "4.2"], + ["lteq_any", "time", "postgresql", "2.6.5", "5.2"], + ["lteq_any", "time", "postgresql", "2.6.5", "6.0"], + ["lteq_any", "time", "postgresql", "2.5.7", "4.2"], + ["lteq_any", "time", "postgresql", "2.5.7", "5.2"], + ["lteq_any", "time", "postgresql", "2.5.7", "6.0"], + ["lteq_any", "time", "postgresql", "2.4.9", "4.2"], + ["lteq_any", "time", "postgresql", "2.4.9", "5.2"], + ["lteq_any", "time", "postgresql", "2.4.9", "6.0"], + ["lteq_any", "time", "mysql", "2.7.0", "4.2"], + ["lteq_any", "time", "mysql", "2.7.0", "5.2"], + ["lteq_any", "time", "mysql", "2.7.0", "6.0"], + ["lteq_any", "time", "mysql", "2.6.5", "4.2"], + ["lteq_any", "time", "mysql", "2.6.5", "5.2"], + ["lteq_any", "time", "mysql", "2.6.5", "6.0"], + ["lteq_any", "time", "mysql", "2.5.7", "4.2"], + ["lteq_any", "time", "mysql", "2.5.7", "5.2"], + ["lteq_any", "time", "mysql", "2.5.7", "6.0"], + ["lteq_any", "time", "mysql", "2.4.9", "4.2"], + ["lteq_any", "time", "mysql", "2.4.9", "5.2"], + ["lteq_any", "time", "mysql", "2.4.9", "6.0"], + ["lteq_any", "time", "sqlite", "2.7.0", "4.2"], + ["lteq_any", "time", "sqlite", "2.7.0", "5.2"], + ["lteq_any", "time", "sqlite", "2.7.0", "6.0"], + ["lteq_any", "time", "sqlite", "2.6.5", "4.2"], + ["lteq_any", "time", "sqlite", "2.6.5", "5.2"], + ["lteq_any", "time", "sqlite", "2.6.5", "6.0"], + ["lteq_any", "time", "sqlite", "2.5.7", "4.2"], + ["lteq_any", "time", "sqlite", "2.5.7", "5.2"], + ["lteq_any", "time", "sqlite", "2.5.7", "6.0"], + ["lteq_any", "time", "sqlite", "2.4.9", "4.2"], + ["lteq_any", "time", "sqlite", "2.4.9", "5.2"], + ["lteq_any", "time", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "binary", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "binary", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "binary", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "binary", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "binary", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "binary", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "binary", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "binary", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "binary", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "binary", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "binary", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "binary", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "binary", "mysql", "2.7.0", "4.2"], + ["lteq_all", "binary", "mysql", "2.7.0", "5.2"], + ["lteq_all", "binary", "mysql", "2.7.0", "6.0"], + ["lteq_all", "binary", "mysql", "2.6.5", "4.2"], + ["lteq_all", "binary", "mysql", "2.6.5", "5.2"], + ["lteq_all", "binary", "mysql", "2.6.5", "6.0"], + ["lteq_all", "binary", "mysql", "2.5.7", "4.2"], + ["lteq_all", "binary", "mysql", "2.5.7", "5.2"], + ["lteq_all", "binary", "mysql", "2.5.7", "6.0"], + ["lteq_all", "binary", "mysql", "2.4.9", "4.2"], + ["lteq_all", "binary", "mysql", "2.4.9", "5.2"], + ["lteq_all", "binary", "mysql", "2.4.9", "6.0"], + ["lteq_all", "binary", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "binary", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "binary", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "binary", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "binary", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "binary", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "binary", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "binary", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "binary", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "binary", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "binary", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "binary", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "boolean", "mysql", "2.7.0", "4.2"], + ["lteq_all", "boolean", "mysql", "2.7.0", "5.2"], + ["lteq_all", "boolean", "mysql", "2.7.0", "6.0"], + ["lteq_all", "boolean", "mysql", "2.6.5", "4.2"], + ["lteq_all", "boolean", "mysql", "2.6.5", "5.2"], + ["lteq_all", "boolean", "mysql", "2.6.5", "6.0"], + ["lteq_all", "boolean", "mysql", "2.5.7", "4.2"], + ["lteq_all", "boolean", "mysql", "2.5.7", "5.2"], + ["lteq_all", "boolean", "mysql", "2.5.7", "6.0"], + ["lteq_all", "boolean", "mysql", "2.4.9", "4.2"], + ["lteq_all", "boolean", "mysql", "2.4.9", "5.2"], + ["lteq_all", "boolean", "mysql", "2.4.9", "6.0"], + ["lteq_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "date", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "date", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "date", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "date", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "date", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "date", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "date", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "date", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "date", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "date", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "date", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "date", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "date", "mysql", "2.7.0", "4.2"], + ["lteq_all", "date", "mysql", "2.7.0", "5.2"], + ["lteq_all", "date", "mysql", "2.7.0", "6.0"], + ["lteq_all", "date", "mysql", "2.6.5", "4.2"], + ["lteq_all", "date", "mysql", "2.6.5", "5.2"], + ["lteq_all", "date", "mysql", "2.6.5", "6.0"], + ["lteq_all", "date", "mysql", "2.5.7", "4.2"], + ["lteq_all", "date", "mysql", "2.5.7", "5.2"], + ["lteq_all", "date", "mysql", "2.5.7", "6.0"], + ["lteq_all", "date", "mysql", "2.4.9", "4.2"], + ["lteq_all", "date", "mysql", "2.4.9", "5.2"], + ["lteq_all", "date", "mysql", "2.4.9", "6.0"], + ["lteq_all", "date", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "date", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "date", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "date", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "date", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "date", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "date", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "date", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "date", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "date", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "date", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "date", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "datetime", "mysql", "2.7.0", "4.2"], + ["lteq_all", "datetime", "mysql", "2.7.0", "5.2"], + ["lteq_all", "datetime", "mysql", "2.7.0", "6.0"], + ["lteq_all", "datetime", "mysql", "2.6.5", "4.2"], + ["lteq_all", "datetime", "mysql", "2.6.5", "5.2"], + ["lteq_all", "datetime", "mysql", "2.6.5", "6.0"], + ["lteq_all", "datetime", "mysql", "2.5.7", "4.2"], + ["lteq_all", "datetime", "mysql", "2.5.7", "5.2"], + ["lteq_all", "datetime", "mysql", "2.5.7", "6.0"], + ["lteq_all", "datetime", "mysql", "2.4.9", "4.2"], + ["lteq_all", "datetime", "mysql", "2.4.9", "5.2"], + ["lteq_all", "datetime", "mysql", "2.4.9", "6.0"], + ["lteq_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "decimal", "mysql", "2.7.0", "4.2"], + ["lteq_all", "decimal", "mysql", "2.7.0", "5.2"], + ["lteq_all", "decimal", "mysql", "2.7.0", "6.0"], + ["lteq_all", "decimal", "mysql", "2.6.5", "4.2"], + ["lteq_all", "decimal", "mysql", "2.6.5", "5.2"], + ["lteq_all", "decimal", "mysql", "2.6.5", "6.0"], + ["lteq_all", "decimal", "mysql", "2.5.7", "4.2"], + ["lteq_all", "decimal", "mysql", "2.5.7", "5.2"], + ["lteq_all", "decimal", "mysql", "2.5.7", "6.0"], + ["lteq_all", "decimal", "mysql", "2.4.9", "4.2"], + ["lteq_all", "decimal", "mysql", "2.4.9", "5.2"], + ["lteq_all", "decimal", "mysql", "2.4.9", "6.0"], + ["lteq_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "float", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "float", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "float", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "float", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "float", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "float", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "float", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "float", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "float", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "float", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "float", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "float", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "float", "mysql", "2.7.0", "4.2"], + ["lteq_all", "float", "mysql", "2.7.0", "5.2"], + ["lteq_all", "float", "mysql", "2.7.0", "6.0"], + ["lteq_all", "float", "mysql", "2.6.5", "4.2"], + ["lteq_all", "float", "mysql", "2.6.5", "5.2"], + ["lteq_all", "float", "mysql", "2.6.5", "6.0"], + ["lteq_all", "float", "mysql", "2.5.7", "4.2"], + ["lteq_all", "float", "mysql", "2.5.7", "5.2"], + ["lteq_all", "float", "mysql", "2.5.7", "6.0"], + ["lteq_all", "float", "mysql", "2.4.9", "4.2"], + ["lteq_all", "float", "mysql", "2.4.9", "5.2"], + ["lteq_all", "float", "mysql", "2.4.9", "6.0"], + ["lteq_all", "float", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "float", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "float", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "float", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "float", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "float", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "float", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "float", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "float", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "float", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "float", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "float", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "integer", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "integer", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "integer", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "integer", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "integer", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "integer", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "integer", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "integer", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "integer", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "integer", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "integer", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "integer", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "integer", "mysql", "2.7.0", "4.2"], + ["lteq_all", "integer", "mysql", "2.7.0", "5.2"], + ["lteq_all", "integer", "mysql", "2.7.0", "6.0"], + ["lteq_all", "integer", "mysql", "2.6.5", "4.2"], + ["lteq_all", "integer", "mysql", "2.6.5", "5.2"], + ["lteq_all", "integer", "mysql", "2.6.5", "6.0"], + ["lteq_all", "integer", "mysql", "2.5.7", "4.2"], + ["lteq_all", "integer", "mysql", "2.5.7", "5.2"], + ["lteq_all", "integer", "mysql", "2.5.7", "6.0"], + ["lteq_all", "integer", "mysql", "2.4.9", "4.2"], + ["lteq_all", "integer", "mysql", "2.4.9", "5.2"], + ["lteq_all", "integer", "mysql", "2.4.9", "6.0"], + ["lteq_all", "integer", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "integer", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "integer", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "integer", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "integer", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "integer", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "integer", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "integer", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "integer", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "integer", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "integer", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "integer", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "string", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "string", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "string", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "string", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "string", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "string", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "string", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "string", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "string", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "string", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "string", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "string", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "string", "mysql", "2.7.0", "4.2"], + ["lteq_all", "string", "mysql", "2.7.0", "5.2"], + ["lteq_all", "string", "mysql", "2.7.0", "6.0"], + ["lteq_all", "string", "mysql", "2.6.5", "4.2"], + ["lteq_all", "string", "mysql", "2.6.5", "5.2"], + ["lteq_all", "string", "mysql", "2.6.5", "6.0"], + ["lteq_all", "string", "mysql", "2.5.7", "4.2"], + ["lteq_all", "string", "mysql", "2.5.7", "5.2"], + ["lteq_all", "string", "mysql", "2.5.7", "6.0"], + ["lteq_all", "string", "mysql", "2.4.9", "4.2"], + ["lteq_all", "string", "mysql", "2.4.9", "5.2"], + ["lteq_all", "string", "mysql", "2.4.9", "6.0"], + ["lteq_all", "string", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "string", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "string", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "string", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "string", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "string", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "string", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "string", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "string", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "string", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "string", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "string", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "text", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "text", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "text", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "text", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "text", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "text", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "text", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "text", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "text", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "text", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "text", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "text", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "text", "mysql", "2.7.0", "4.2"], + ["lteq_all", "text", "mysql", "2.7.0", "5.2"], + ["lteq_all", "text", "mysql", "2.7.0", "6.0"], + ["lteq_all", "text", "mysql", "2.6.5", "4.2"], + ["lteq_all", "text", "mysql", "2.6.5", "5.2"], + ["lteq_all", "text", "mysql", "2.6.5", "6.0"], + ["lteq_all", "text", "mysql", "2.5.7", "4.2"], + ["lteq_all", "text", "mysql", "2.5.7", "5.2"], + ["lteq_all", "text", "mysql", "2.5.7", "6.0"], + ["lteq_all", "text", "mysql", "2.4.9", "4.2"], + ["lteq_all", "text", "mysql", "2.4.9", "5.2"], + ["lteq_all", "text", "mysql", "2.4.9", "6.0"], + ["lteq_all", "text", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "text", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "text", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "text", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "text", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "text", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "text", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "text", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "text", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "text", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "text", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "text", "sqlite", "2.4.9", "6.0"], + ["lteq_all", "time", "postgresql", "2.7.0", "4.2"], + ["lteq_all", "time", "postgresql", "2.7.0", "5.2"], + ["lteq_all", "time", "postgresql", "2.7.0", "6.0"], + ["lteq_all", "time", "postgresql", "2.6.5", "4.2"], + ["lteq_all", "time", "postgresql", "2.6.5", "5.2"], + ["lteq_all", "time", "postgresql", "2.6.5", "6.0"], + ["lteq_all", "time", "postgresql", "2.5.7", "4.2"], + ["lteq_all", "time", "postgresql", "2.5.7", "5.2"], + ["lteq_all", "time", "postgresql", "2.5.7", "6.0"], + ["lteq_all", "time", "postgresql", "2.4.9", "4.2"], + ["lteq_all", "time", "postgresql", "2.4.9", "5.2"], + ["lteq_all", "time", "postgresql", "2.4.9", "6.0"], + ["lteq_all", "time", "mysql", "2.7.0", "4.2"], + ["lteq_all", "time", "mysql", "2.7.0", "5.2"], + ["lteq_all", "time", "mysql", "2.7.0", "6.0"], + ["lteq_all", "time", "mysql", "2.6.5", "4.2"], + ["lteq_all", "time", "mysql", "2.6.5", "5.2"], + ["lteq_all", "time", "mysql", "2.6.5", "6.0"], + ["lteq_all", "time", "mysql", "2.5.7", "4.2"], + ["lteq_all", "time", "mysql", "2.5.7", "5.2"], + ["lteq_all", "time", "mysql", "2.5.7", "6.0"], + ["lteq_all", "time", "mysql", "2.4.9", "4.2"], + ["lteq_all", "time", "mysql", "2.4.9", "5.2"], + ["lteq_all", "time", "mysql", "2.4.9", "6.0"], + ["lteq_all", "time", "sqlite", "2.7.0", "4.2"], + ["lteq_all", "time", "sqlite", "2.7.0", "5.2"], + ["lteq_all", "time", "sqlite", "2.7.0", "6.0"], + ["lteq_all", "time", "sqlite", "2.6.5", "4.2"], + ["lteq_all", "time", "sqlite", "2.6.5", "5.2"], + ["lteq_all", "time", "sqlite", "2.6.5", "6.0"], + ["lteq_all", "time", "sqlite", "2.5.7", "4.2"], + ["lteq_all", "time", "sqlite", "2.5.7", "5.2"], + ["lteq_all", "time", "sqlite", "2.5.7", "6.0"], + ["lteq_all", "time", "sqlite", "2.4.9", "4.2"], + ["lteq_all", "time", "sqlite", "2.4.9", "5.2"], + ["lteq_all", "time", "sqlite", "2.4.9", "6.0"], + ["gt", "binary", "postgresql", "2.7.0", "4.2"], + ["gt", "binary", "postgresql", "2.7.0", "5.2"], + ["gt", "binary", "postgresql", "2.7.0", "6.0"], + ["gt", "binary", "postgresql", "2.6.5", "4.2"], + ["gt", "binary", "postgresql", "2.6.5", "5.2"], + ["gt", "binary", "postgresql", "2.6.5", "6.0"], + ["gt", "binary", "postgresql", "2.5.7", "4.2"], + ["gt", "binary", "postgresql", "2.5.7", "5.2"], + ["gt", "binary", "postgresql", "2.5.7", "6.0"], + ["gt", "binary", "postgresql", "2.4.9", "4.2"], + ["gt", "binary", "postgresql", "2.4.9", "5.2"], + ["gt", "binary", "postgresql", "2.4.9", "6.0"], + ["gt", "binary", "mysql", "2.7.0", "4.2"], + ["gt", "binary", "mysql", "2.7.0", "5.2"], + ["gt", "binary", "mysql", "2.7.0", "6.0"], + ["gt", "binary", "mysql", "2.6.5", "4.2"], + ["gt", "binary", "mysql", "2.6.5", "5.2"], + ["gt", "binary", "mysql", "2.6.5", "6.0"], + ["gt", "binary", "mysql", "2.5.7", "4.2"], + ["gt", "binary", "mysql", "2.5.7", "5.2"], + ["gt", "binary", "mysql", "2.5.7", "6.0"], + ["gt", "binary", "mysql", "2.4.9", "4.2"], + ["gt", "binary", "mysql", "2.4.9", "5.2"], + ["gt", "binary", "mysql", "2.4.9", "6.0"], + ["gt", "binary", "sqlite", "2.7.0", "4.2"], + ["gt", "binary", "sqlite", "2.7.0", "5.2"], + ["gt", "binary", "sqlite", "2.7.0", "6.0"], + ["gt", "binary", "sqlite", "2.6.5", "4.2"], + ["gt", "binary", "sqlite", "2.6.5", "5.2"], + ["gt", "binary", "sqlite", "2.6.5", "6.0"], + ["gt", "binary", "sqlite", "2.5.7", "4.2"], + ["gt", "binary", "sqlite", "2.5.7", "5.2"], + ["gt", "binary", "sqlite", "2.5.7", "6.0"], + ["gt", "binary", "sqlite", "2.4.9", "4.2"], + ["gt", "binary", "sqlite", "2.4.9", "5.2"], + ["gt", "binary", "sqlite", "2.4.9", "6.0"], + ["gt", "boolean", "postgresql", "2.7.0", "4.2"], + ["gt", "boolean", "postgresql", "2.7.0", "5.2"], + ["gt", "boolean", "postgresql", "2.7.0", "6.0"], + ["gt", "boolean", "postgresql", "2.6.5", "4.2"], + ["gt", "boolean", "postgresql", "2.6.5", "5.2"], + ["gt", "boolean", "postgresql", "2.6.5", "6.0"], + ["gt", "boolean", "postgresql", "2.5.7", "4.2"], + ["gt", "boolean", "postgresql", "2.5.7", "5.2"], + ["gt", "boolean", "postgresql", "2.5.7", "6.0"], + ["gt", "boolean", "postgresql", "2.4.9", "4.2"], + ["gt", "boolean", "postgresql", "2.4.9", "5.2"], + ["gt", "boolean", "postgresql", "2.4.9", "6.0"], + ["gt", "boolean", "mysql", "2.7.0", "4.2"], + ["gt", "boolean", "mysql", "2.7.0", "5.2"], + ["gt", "boolean", "mysql", "2.7.0", "6.0"], + ["gt", "boolean", "mysql", "2.6.5", "4.2"], + ["gt", "boolean", "mysql", "2.6.5", "5.2"], + ["gt", "boolean", "mysql", "2.6.5", "6.0"], + ["gt", "boolean", "mysql", "2.5.7", "4.2"], + ["gt", "boolean", "mysql", "2.5.7", "5.2"], + ["gt", "boolean", "mysql", "2.5.7", "6.0"], + ["gt", "boolean", "mysql", "2.4.9", "4.2"], + ["gt", "boolean", "mysql", "2.4.9", "5.2"], + ["gt", "boolean", "mysql", "2.4.9", "6.0"], + ["gt", "boolean", "sqlite", "2.7.0", "4.2"], + ["gt", "boolean", "sqlite", "2.7.0", "5.2"], + ["gt", "boolean", "sqlite", "2.7.0", "6.0"], + ["gt", "boolean", "sqlite", "2.6.5", "4.2"], + ["gt", "boolean", "sqlite", "2.6.5", "5.2"], + ["gt", "boolean", "sqlite", "2.6.5", "6.0"], + ["gt", "boolean", "sqlite", "2.5.7", "4.2"], + ["gt", "boolean", "sqlite", "2.5.7", "5.2"], + ["gt", "boolean", "sqlite", "2.5.7", "6.0"], + ["gt", "boolean", "sqlite", "2.4.9", "4.2"], + ["gt", "boolean", "sqlite", "2.4.9", "5.2"], + ["gt", "boolean", "sqlite", "2.4.9", "6.0"], + ["gt", "date", "postgresql", "2.7.0", "4.2"], + ["gt", "date", "postgresql", "2.7.0", "5.2"], + ["gt", "date", "postgresql", "2.7.0", "6.0"], + ["gt", "date", "postgresql", "2.6.5", "4.2"], + ["gt", "date", "postgresql", "2.6.5", "5.2"], + ["gt", "date", "postgresql", "2.6.5", "6.0"], + ["gt", "date", "postgresql", "2.5.7", "4.2"], + ["gt", "date", "postgresql", "2.5.7", "5.2"], + ["gt", "date", "postgresql", "2.5.7", "6.0"], + ["gt", "date", "postgresql", "2.4.9", "4.2"], + ["gt", "date", "postgresql", "2.4.9", "5.2"], + ["gt", "date", "postgresql", "2.4.9", "6.0"], + ["gt", "date", "mysql", "2.7.0", "4.2"], + ["gt", "date", "mysql", "2.7.0", "5.2"], + ["gt", "date", "mysql", "2.7.0", "6.0"], + ["gt", "date", "mysql", "2.6.5", "4.2"], + ["gt", "date", "mysql", "2.6.5", "5.2"], + ["gt", "date", "mysql", "2.6.5", "6.0"], + ["gt", "date", "mysql", "2.5.7", "4.2"], + ["gt", "date", "mysql", "2.5.7", "5.2"], + ["gt", "date", "mysql", "2.5.7", "6.0"], + ["gt", "date", "mysql", "2.4.9", "4.2"], + ["gt", "date", "mysql", "2.4.9", "5.2"], + ["gt", "date", "mysql", "2.4.9", "6.0"], + ["gt", "date", "sqlite", "2.7.0", "4.2"], + ["gt", "date", "sqlite", "2.7.0", "5.2"], + ["gt", "date", "sqlite", "2.7.0", "6.0"], + ["gt", "date", "sqlite", "2.6.5", "4.2"], + ["gt", "date", "sqlite", "2.6.5", "5.2"], + ["gt", "date", "sqlite", "2.6.5", "6.0"], + ["gt", "date", "sqlite", "2.5.7", "4.2"], + ["gt", "date", "sqlite", "2.5.7", "5.2"], + ["gt", "date", "sqlite", "2.5.7", "6.0"], + ["gt", "date", "sqlite", "2.4.9", "4.2"], + ["gt", "date", "sqlite", "2.4.9", "5.2"], + ["gt", "date", "sqlite", "2.4.9", "6.0"], + ["gt", "datetime", "postgresql", "2.7.0", "4.2"], + ["gt", "datetime", "postgresql", "2.7.0", "5.2"], + ["gt", "datetime", "postgresql", "2.7.0", "6.0"], + ["gt", "datetime", "postgresql", "2.6.5", "4.2"], + ["gt", "datetime", "postgresql", "2.6.5", "5.2"], + ["gt", "datetime", "postgresql", "2.6.5", "6.0"], + ["gt", "datetime", "postgresql", "2.5.7", "4.2"], + ["gt", "datetime", "postgresql", "2.5.7", "5.2"], + ["gt", "datetime", "postgresql", "2.5.7", "6.0"], + ["gt", "datetime", "postgresql", "2.4.9", "4.2"], + ["gt", "datetime", "postgresql", "2.4.9", "5.2"], + ["gt", "datetime", "postgresql", "2.4.9", "6.0"], + ["gt", "datetime", "mysql", "2.7.0", "4.2"], + ["gt", "datetime", "mysql", "2.7.0", "5.2"], + ["gt", "datetime", "mysql", "2.7.0", "6.0"], + ["gt", "datetime", "mysql", "2.6.5", "4.2"], + ["gt", "datetime", "mysql", "2.6.5", "5.2"], + ["gt", "datetime", "mysql", "2.6.5", "6.0"], + ["gt", "datetime", "mysql", "2.5.7", "4.2"], + ["gt", "datetime", "mysql", "2.5.7", "5.2"], + ["gt", "datetime", "mysql", "2.5.7", "6.0"], + ["gt", "datetime", "mysql", "2.4.9", "4.2"], + ["gt", "datetime", "mysql", "2.4.9", "5.2"], + ["gt", "datetime", "mysql", "2.4.9", "6.0"], + ["gt", "datetime", "sqlite", "2.7.0", "4.2"], + ["gt", "datetime", "sqlite", "2.7.0", "5.2"], + ["gt", "datetime", "sqlite", "2.7.0", "6.0"], + ["gt", "datetime", "sqlite", "2.6.5", "4.2"], + ["gt", "datetime", "sqlite", "2.6.5", "5.2"], + ["gt", "datetime", "sqlite", "2.6.5", "6.0"], + ["gt", "datetime", "sqlite", "2.5.7", "4.2"], + ["gt", "datetime", "sqlite", "2.5.7", "5.2"], + ["gt", "datetime", "sqlite", "2.5.7", "6.0"], + ["gt", "datetime", "sqlite", "2.4.9", "4.2"], + ["gt", "datetime", "sqlite", "2.4.9", "5.2"], + ["gt", "datetime", "sqlite", "2.4.9", "6.0"], + ["gt", "decimal", "postgresql", "2.7.0", "4.2"], + ["gt", "decimal", "postgresql", "2.7.0", "5.2"], + ["gt", "decimal", "postgresql", "2.7.0", "6.0"], + ["gt", "decimal", "postgresql", "2.6.5", "4.2"], + ["gt", "decimal", "postgresql", "2.6.5", "5.2"], + ["gt", "decimal", "postgresql", "2.6.5", "6.0"], + ["gt", "decimal", "postgresql", "2.5.7", "4.2"], + ["gt", "decimal", "postgresql", "2.5.7", "5.2"], + ["gt", "decimal", "postgresql", "2.5.7", "6.0"], + ["gt", "decimal", "postgresql", "2.4.9", "4.2"], + ["gt", "decimal", "postgresql", "2.4.9", "5.2"], + ["gt", "decimal", "postgresql", "2.4.9", "6.0"], + ["gt", "decimal", "mysql", "2.7.0", "4.2"], + ["gt", "decimal", "mysql", "2.7.0", "5.2"], + ["gt", "decimal", "mysql", "2.7.0", "6.0"], + ["gt", "decimal", "mysql", "2.6.5", "4.2"], + ["gt", "decimal", "mysql", "2.6.5", "5.2"], + ["gt", "decimal", "mysql", "2.6.5", "6.0"], + ["gt", "decimal", "mysql", "2.5.7", "4.2"], + ["gt", "decimal", "mysql", "2.5.7", "5.2"], + ["gt", "decimal", "mysql", "2.5.7", "6.0"], + ["gt", "decimal", "mysql", "2.4.9", "4.2"], + ["gt", "decimal", "mysql", "2.4.9", "5.2"], + ["gt", "decimal", "mysql", "2.4.9", "6.0"], + ["gt", "decimal", "sqlite", "2.7.0", "4.2"], + ["gt", "decimal", "sqlite", "2.7.0", "5.2"], + ["gt", "decimal", "sqlite", "2.7.0", "6.0"], + ["gt", "decimal", "sqlite", "2.6.5", "4.2"], + ["gt", "decimal", "sqlite", "2.6.5", "5.2"], + ["gt", "decimal", "sqlite", "2.6.5", "6.0"], + ["gt", "decimal", "sqlite", "2.5.7", "4.2"], + ["gt", "decimal", "sqlite", "2.5.7", "5.2"], + ["gt", "decimal", "sqlite", "2.5.7", "6.0"], + ["gt", "decimal", "sqlite", "2.4.9", "4.2"], + ["gt", "decimal", "sqlite", "2.4.9", "5.2"], + ["gt", "decimal", "sqlite", "2.4.9", "6.0"], + ["gt", "float", "postgresql", "2.7.0", "4.2"], + ["gt", "float", "postgresql", "2.7.0", "5.2"], + ["gt", "float", "postgresql", "2.7.0", "6.0"], + ["gt", "float", "postgresql", "2.6.5", "4.2"], + ["gt", "float", "postgresql", "2.6.5", "5.2"], + ["gt", "float", "postgresql", "2.6.5", "6.0"], + ["gt", "float", "postgresql", "2.5.7", "4.2"], + ["gt", "float", "postgresql", "2.5.7", "5.2"], + ["gt", "float", "postgresql", "2.5.7", "6.0"], + ["gt", "float", "postgresql", "2.4.9", "4.2"], + ["gt", "float", "postgresql", "2.4.9", "5.2"], + ["gt", "float", "postgresql", "2.4.9", "6.0"], + ["gt", "float", "mysql", "2.7.0", "4.2"], + ["gt", "float", "mysql", "2.7.0", "5.2"], + ["gt", "float", "mysql", "2.7.0", "6.0"], + ["gt", "float", "mysql", "2.6.5", "4.2"], + ["gt", "float", "mysql", "2.6.5", "5.2"], + ["gt", "float", "mysql", "2.6.5", "6.0"], + ["gt", "float", "mysql", "2.5.7", "4.2"], + ["gt", "float", "mysql", "2.5.7", "5.2"], + ["gt", "float", "mysql", "2.5.7", "6.0"], + ["gt", "float", "mysql", "2.4.9", "4.2"], + ["gt", "float", "mysql", "2.4.9", "5.2"], + ["gt", "float", "mysql", "2.4.9", "6.0"], + ["gt", "float", "sqlite", "2.7.0", "4.2"], + ["gt", "float", "sqlite", "2.7.0", "5.2"], + ["gt", "float", "sqlite", "2.7.0", "6.0"], + ["gt", "float", "sqlite", "2.6.5", "4.2"], + ["gt", "float", "sqlite", "2.6.5", "5.2"], + ["gt", "float", "sqlite", "2.6.5", "6.0"], + ["gt", "float", "sqlite", "2.5.7", "4.2"], + ["gt", "float", "sqlite", "2.5.7", "5.2"], + ["gt", "float", "sqlite", "2.5.7", "6.0"], + ["gt", "float", "sqlite", "2.4.9", "4.2"], + ["gt", "float", "sqlite", "2.4.9", "5.2"], + ["gt", "float", "sqlite", "2.4.9", "6.0"], + ["gt", "integer", "postgresql", "2.7.0", "4.2"], + ["gt", "integer", "postgresql", "2.7.0", "5.2"], + ["gt", "integer", "postgresql", "2.7.0", "6.0"], + ["gt", "integer", "postgresql", "2.6.5", "4.2"], + ["gt", "integer", "postgresql", "2.6.5", "5.2"], + ["gt", "integer", "postgresql", "2.6.5", "6.0"], + ["gt", "integer", "postgresql", "2.5.7", "4.2"], + ["gt", "integer", "postgresql", "2.5.7", "5.2"], + ["gt", "integer", "postgresql", "2.5.7", "6.0"], + ["gt", "integer", "postgresql", "2.4.9", "4.2"], + ["gt", "integer", "postgresql", "2.4.9", "5.2"], + ["gt", "integer", "postgresql", "2.4.9", "6.0"], + ["gt", "integer", "mysql", "2.7.0", "4.2"], + ["gt", "integer", "mysql", "2.7.0", "5.2"], + ["gt", "integer", "mysql", "2.7.0", "6.0"], + ["gt", "integer", "mysql", "2.6.5", "4.2"], + ["gt", "integer", "mysql", "2.6.5", "5.2"], + ["gt", "integer", "mysql", "2.6.5", "6.0"], + ["gt", "integer", "mysql", "2.5.7", "4.2"], + ["gt", "integer", "mysql", "2.5.7", "5.2"], + ["gt", "integer", "mysql", "2.5.7", "6.0"], + ["gt", "integer", "mysql", "2.4.9", "4.2"], + ["gt", "integer", "mysql", "2.4.9", "5.2"], + ["gt", "integer", "mysql", "2.4.9", "6.0"], + ["gt", "integer", "sqlite", "2.7.0", "4.2"], + ["gt", "integer", "sqlite", "2.7.0", "5.2"], + ["gt", "integer", "sqlite", "2.7.0", "6.0"], + ["gt", "integer", "sqlite", "2.6.5", "4.2"], + ["gt", "integer", "sqlite", "2.6.5", "5.2"], + ["gt", "integer", "sqlite", "2.6.5", "6.0"], + ["gt", "integer", "sqlite", "2.5.7", "4.2"], + ["gt", "integer", "sqlite", "2.5.7", "5.2"], + ["gt", "integer", "sqlite", "2.5.7", "6.0"], + ["gt", "integer", "sqlite", "2.4.9", "4.2"], + ["gt", "integer", "sqlite", "2.4.9", "5.2"], + ["gt", "integer", "sqlite", "2.4.9", "6.0"], + ["gt", "string", "postgresql", "2.7.0", "4.2"], + ["gt", "string", "postgresql", "2.7.0", "5.2"], + ["gt", "string", "postgresql", "2.7.0", "6.0"], + ["gt", "string", "postgresql", "2.6.5", "4.2"], + ["gt", "string", "postgresql", "2.6.5", "5.2"], + ["gt", "string", "postgresql", "2.6.5", "6.0"], + ["gt", "string", "postgresql", "2.5.7", "4.2"], + ["gt", "string", "postgresql", "2.5.7", "5.2"], + ["gt", "string", "postgresql", "2.5.7", "6.0"], + ["gt", "string", "postgresql", "2.4.9", "4.2"], + ["gt", "string", "postgresql", "2.4.9", "5.2"], + ["gt", "string", "postgresql", "2.4.9", "6.0"], + ["gt", "string", "mysql", "2.7.0", "4.2"], + ["gt", "string", "mysql", "2.7.0", "5.2"], + ["gt", "string", "mysql", "2.7.0", "6.0"], + ["gt", "string", "mysql", "2.6.5", "4.2"], + ["gt", "string", "mysql", "2.6.5", "5.2"], + ["gt", "string", "mysql", "2.6.5", "6.0"], + ["gt", "string", "mysql", "2.5.7", "4.2"], + ["gt", "string", "mysql", "2.5.7", "5.2"], + ["gt", "string", "mysql", "2.5.7", "6.0"], + ["gt", "string", "mysql", "2.4.9", "4.2"], + ["gt", "string", "mysql", "2.4.9", "5.2"], + ["gt", "string", "mysql", "2.4.9", "6.0"], + ["gt", "string", "sqlite", "2.7.0", "4.2"], + ["gt", "string", "sqlite", "2.7.0", "5.2"], + ["gt", "string", "sqlite", "2.7.0", "6.0"], + ["gt", "string", "sqlite", "2.6.5", "4.2"], + ["gt", "string", "sqlite", "2.6.5", "5.2"], + ["gt", "string", "sqlite", "2.6.5", "6.0"], + ["gt", "string", "sqlite", "2.5.7", "4.2"], + ["gt", "string", "sqlite", "2.5.7", "5.2"], + ["gt", "string", "sqlite", "2.5.7", "6.0"], + ["gt", "string", "sqlite", "2.4.9", "4.2"], + ["gt", "string", "sqlite", "2.4.9", "5.2"], + ["gt", "string", "sqlite", "2.4.9", "6.0"], + ["gt", "text", "postgresql", "2.7.0", "4.2"], + ["gt", "text", "postgresql", "2.7.0", "5.2"], + ["gt", "text", "postgresql", "2.7.0", "6.0"], + ["gt", "text", "postgresql", "2.6.5", "4.2"], + ["gt", "text", "postgresql", "2.6.5", "5.2"], + ["gt", "text", "postgresql", "2.6.5", "6.0"], + ["gt", "text", "postgresql", "2.5.7", "4.2"], + ["gt", "text", "postgresql", "2.5.7", "5.2"], + ["gt", "text", "postgresql", "2.5.7", "6.0"], + ["gt", "text", "postgresql", "2.4.9", "4.2"], + ["gt", "text", "postgresql", "2.4.9", "5.2"], + ["gt", "text", "postgresql", "2.4.9", "6.0"], + ["gt", "text", "mysql", "2.7.0", "4.2"], + ["gt", "text", "mysql", "2.7.0", "5.2"], + ["gt", "text", "mysql", "2.7.0", "6.0"], + ["gt", "text", "mysql", "2.6.5", "4.2"], + ["gt", "text", "mysql", "2.6.5", "5.2"], + ["gt", "text", "mysql", "2.6.5", "6.0"], + ["gt", "text", "mysql", "2.5.7", "4.2"], + ["gt", "text", "mysql", "2.5.7", "5.2"], + ["gt", "text", "mysql", "2.5.7", "6.0"], + ["gt", "text", "mysql", "2.4.9", "4.2"], + ["gt", "text", "mysql", "2.4.9", "5.2"], + ["gt", "text", "mysql", "2.4.9", "6.0"], + ["gt", "text", "sqlite", "2.7.0", "4.2"], + ["gt", "text", "sqlite", "2.7.0", "5.2"], + ["gt", "text", "sqlite", "2.7.0", "6.0"], + ["gt", "text", "sqlite", "2.6.5", "4.2"], + ["gt", "text", "sqlite", "2.6.5", "5.2"], + ["gt", "text", "sqlite", "2.6.5", "6.0"], + ["gt", "text", "sqlite", "2.5.7", "4.2"], + ["gt", "text", "sqlite", "2.5.7", "5.2"], + ["gt", "text", "sqlite", "2.5.7", "6.0"], + ["gt", "text", "sqlite", "2.4.9", "4.2"], + ["gt", "text", "sqlite", "2.4.9", "5.2"], + ["gt", "text", "sqlite", "2.4.9", "6.0"], + ["gt", "time", "postgresql", "2.7.0", "4.2"], + ["gt", "time", "postgresql", "2.7.0", "5.2"], + ["gt", "time", "postgresql", "2.7.0", "6.0"], + ["gt", "time", "postgresql", "2.6.5", "4.2"], + ["gt", "time", "postgresql", "2.6.5", "5.2"], + ["gt", "time", "postgresql", "2.6.5", "6.0"], + ["gt", "time", "postgresql", "2.5.7", "4.2"], + ["gt", "time", "postgresql", "2.5.7", "5.2"], + ["gt", "time", "postgresql", "2.5.7", "6.0"], + ["gt", "time", "postgresql", "2.4.9", "4.2"], + ["gt", "time", "postgresql", "2.4.9", "5.2"], + ["gt", "time", "postgresql", "2.4.9", "6.0"], + ["gt", "time", "mysql", "2.7.0", "4.2"], + ["gt", "time", "mysql", "2.7.0", "5.2"], + ["gt", "time", "mysql", "2.7.0", "6.0"], + ["gt", "time", "mysql", "2.6.5", "4.2"], + ["gt", "time", "mysql", "2.6.5", "5.2"], + ["gt", "time", "mysql", "2.6.5", "6.0"], + ["gt", "time", "mysql", "2.5.7", "4.2"], + ["gt", "time", "mysql", "2.5.7", "5.2"], + ["gt", "time", "mysql", "2.5.7", "6.0"], + ["gt", "time", "mysql", "2.4.9", "4.2"], + ["gt", "time", "mysql", "2.4.9", "5.2"], + ["gt", "time", "mysql", "2.4.9", "6.0"], + ["gt", "time", "sqlite", "2.7.0", "4.2"], + ["gt", "time", "sqlite", "2.7.0", "5.2"], + ["gt", "time", "sqlite", "2.7.0", "6.0"], + ["gt", "time", "sqlite", "2.6.5", "4.2"], + ["gt", "time", "sqlite", "2.6.5", "5.2"], + ["gt", "time", "sqlite", "2.6.5", "6.0"], + ["gt", "time", "sqlite", "2.5.7", "4.2"], + ["gt", "time", "sqlite", "2.5.7", "5.2"], + ["gt", "time", "sqlite", "2.5.7", "6.0"], + ["gt", "time", "sqlite", "2.4.9", "4.2"], + ["gt", "time", "sqlite", "2.4.9", "5.2"], + ["gt", "time", "sqlite", "2.4.9", "6.0"], + ["gteq", "binary", "postgresql", "2.7.0", "4.2"], + ["gteq", "binary", "postgresql", "2.7.0", "5.2"], + ["gteq", "binary", "postgresql", "2.7.0", "6.0"], + ["gteq", "binary", "postgresql", "2.6.5", "4.2"], + ["gteq", "binary", "postgresql", "2.6.5", "5.2"], + ["gteq", "binary", "postgresql", "2.6.5", "6.0"], + ["gteq", "binary", "postgresql", "2.5.7", "4.2"], + ["gteq", "binary", "postgresql", "2.5.7", "5.2"], + ["gteq", "binary", "postgresql", "2.5.7", "6.0"], + ["gteq", "binary", "postgresql", "2.4.9", "4.2"], + ["gteq", "binary", "postgresql", "2.4.9", "5.2"], + ["gteq", "binary", "postgresql", "2.4.9", "6.0"], + ["gteq", "binary", "mysql", "2.7.0", "4.2"], + ["gteq", "binary", "mysql", "2.7.0", "5.2"], + ["gteq", "binary", "mysql", "2.7.0", "6.0"], + ["gteq", "binary", "mysql", "2.6.5", "4.2"], + ["gteq", "binary", "mysql", "2.6.5", "5.2"], + ["gteq", "binary", "mysql", "2.6.5", "6.0"], + ["gteq", "binary", "mysql", "2.5.7", "4.2"], + ["gteq", "binary", "mysql", "2.5.7", "5.2"], + ["gteq", "binary", "mysql", "2.5.7", "6.0"], + ["gteq", "binary", "mysql", "2.4.9", "4.2"], + ["gteq", "binary", "mysql", "2.4.9", "5.2"], + ["gteq", "binary", "mysql", "2.4.9", "6.0"], + ["gteq", "binary", "sqlite", "2.7.0", "4.2"], + ["gteq", "binary", "sqlite", "2.7.0", "5.2"], + ["gteq", "binary", "sqlite", "2.7.0", "6.0"], + ["gteq", "binary", "sqlite", "2.6.5", "4.2"], + ["gteq", "binary", "sqlite", "2.6.5", "5.2"], + ["gteq", "binary", "sqlite", "2.6.5", "6.0"], + ["gteq", "binary", "sqlite", "2.5.7", "4.2"], + ["gteq", "binary", "sqlite", "2.5.7", "5.2"], + ["gteq", "binary", "sqlite", "2.5.7", "6.0"], + ["gteq", "binary", "sqlite", "2.4.9", "4.2"], + ["gteq", "binary", "sqlite", "2.4.9", "5.2"], + ["gteq", "binary", "sqlite", "2.4.9", "6.0"], + ["gteq", "boolean", "postgresql", "2.7.0", "4.2"], + ["gteq", "boolean", "postgresql", "2.7.0", "5.2"], + ["gteq", "boolean", "postgresql", "2.7.0", "6.0"], + ["gteq", "boolean", "postgresql", "2.6.5", "4.2"], + ["gteq", "boolean", "postgresql", "2.6.5", "5.2"], + ["gteq", "boolean", "postgresql", "2.6.5", "6.0"], + ["gteq", "boolean", "postgresql", "2.5.7", "4.2"], + ["gteq", "boolean", "postgresql", "2.5.7", "5.2"], + ["gteq", "boolean", "postgresql", "2.5.7", "6.0"], + ["gteq", "boolean", "postgresql", "2.4.9", "4.2"], + ["gteq", "boolean", "postgresql", "2.4.9", "5.2"], + ["gteq", "boolean", "postgresql", "2.4.9", "6.0"], + ["gteq", "boolean", "mysql", "2.7.0", "4.2"], + ["gteq", "boolean", "mysql", "2.7.0", "5.2"], + ["gteq", "boolean", "mysql", "2.7.0", "6.0"], + ["gteq", "boolean", "mysql", "2.6.5", "4.2"], + ["gteq", "boolean", "mysql", "2.6.5", "5.2"], + ["gteq", "boolean", "mysql", "2.6.5", "6.0"], + ["gteq", "boolean", "mysql", "2.5.7", "4.2"], + ["gteq", "boolean", "mysql", "2.5.7", "5.2"], + ["gteq", "boolean", "mysql", "2.5.7", "6.0"], + ["gteq", "boolean", "mysql", "2.4.9", "4.2"], + ["gteq", "boolean", "mysql", "2.4.9", "5.2"], + ["gteq", "boolean", "mysql", "2.4.9", "6.0"], + ["gteq", "boolean", "sqlite", "2.7.0", "4.2"], + ["gteq", "boolean", "sqlite", "2.7.0", "5.2"], + ["gteq", "boolean", "sqlite", "2.7.0", "6.0"], + ["gteq", "boolean", "sqlite", "2.6.5", "4.2"], + ["gteq", "boolean", "sqlite", "2.6.5", "5.2"], + ["gteq", "boolean", "sqlite", "2.6.5", "6.0"], + ["gteq", "boolean", "sqlite", "2.5.7", "4.2"], + ["gteq", "boolean", "sqlite", "2.5.7", "5.2"], + ["gteq", "boolean", "sqlite", "2.5.7", "6.0"], + ["gteq", "boolean", "sqlite", "2.4.9", "4.2"], + ["gteq", "boolean", "sqlite", "2.4.9", "5.2"], + ["gteq", "boolean", "sqlite", "2.4.9", "6.0"], + ["gteq", "date", "postgresql", "2.7.0", "4.2"], + ["gteq", "date", "postgresql", "2.7.0", "5.2"], + ["gteq", "date", "postgresql", "2.7.0", "6.0"], + ["gteq", "date", "postgresql", "2.6.5", "4.2"], + ["gteq", "date", "postgresql", "2.6.5", "5.2"], + ["gteq", "date", "postgresql", "2.6.5", "6.0"], + ["gteq", "date", "postgresql", "2.5.7", "4.2"], + ["gteq", "date", "postgresql", "2.5.7", "5.2"], + ["gteq", "date", "postgresql", "2.5.7", "6.0"], + ["gteq", "date", "postgresql", "2.4.9", "4.2"], + ["gteq", "date", "postgresql", "2.4.9", "5.2"], + ["gteq", "date", "postgresql", "2.4.9", "6.0"], + ["gteq", "date", "mysql", "2.7.0", "4.2"], + ["gteq", "date", "mysql", "2.7.0", "5.2"], + ["gteq", "date", "mysql", "2.7.0", "6.0"], + ["gteq", "date", "mysql", "2.6.5", "4.2"], + ["gteq", "date", "mysql", "2.6.5", "5.2"], + ["gteq", "date", "mysql", "2.6.5", "6.0"], + ["gteq", "date", "mysql", "2.5.7", "4.2"], + ["gteq", "date", "mysql", "2.5.7", "5.2"], + ["gteq", "date", "mysql", "2.5.7", "6.0"], + ["gteq", "date", "mysql", "2.4.9", "4.2"], + ["gteq", "date", "mysql", "2.4.9", "5.2"], + ["gteq", "date", "mysql", "2.4.9", "6.0"], + ["gteq", "date", "sqlite", "2.7.0", "4.2"], + ["gteq", "date", "sqlite", "2.7.0", "5.2"], + ["gteq", "date", "sqlite", "2.7.0", "6.0"], + ["gteq", "date", "sqlite", "2.6.5", "4.2"], + ["gteq", "date", "sqlite", "2.6.5", "5.2"], + ["gteq", "date", "sqlite", "2.6.5", "6.0"], + ["gteq", "date", "sqlite", "2.5.7", "4.2"], + ["gteq", "date", "sqlite", "2.5.7", "5.2"], + ["gteq", "date", "sqlite", "2.5.7", "6.0"], + ["gteq", "date", "sqlite", "2.4.9", "4.2"], + ["gteq", "date", "sqlite", "2.4.9", "5.2"], + ["gteq", "date", "sqlite", "2.4.9", "6.0"], + ["gteq", "datetime", "postgresql", "2.7.0", "4.2"], + ["gteq", "datetime", "postgresql", "2.7.0", "5.2"], + ["gteq", "datetime", "postgresql", "2.7.0", "6.0"], + ["gteq", "datetime", "postgresql", "2.6.5", "4.2"], + ["gteq", "datetime", "postgresql", "2.6.5", "5.2"], + ["gteq", "datetime", "postgresql", "2.6.5", "6.0"], + ["gteq", "datetime", "postgresql", "2.5.7", "4.2"], + ["gteq", "datetime", "postgresql", "2.5.7", "5.2"], + ["gteq", "datetime", "postgresql", "2.5.7", "6.0"], + ["gteq", "datetime", "postgresql", "2.4.9", "4.2"], + ["gteq", "datetime", "postgresql", "2.4.9", "5.2"], + ["gteq", "datetime", "postgresql", "2.4.9", "6.0"], + ["gteq", "datetime", "mysql", "2.7.0", "4.2"], + ["gteq", "datetime", "mysql", "2.7.0", "5.2"], + ["gteq", "datetime", "mysql", "2.7.0", "6.0"], + ["gteq", "datetime", "mysql", "2.6.5", "4.2"], + ["gteq", "datetime", "mysql", "2.6.5", "5.2"], + ["gteq", "datetime", "mysql", "2.6.5", "6.0"], + ["gteq", "datetime", "mysql", "2.5.7", "4.2"], + ["gteq", "datetime", "mysql", "2.5.7", "5.2"], + ["gteq", "datetime", "mysql", "2.5.7", "6.0"], + ["gteq", "datetime", "mysql", "2.4.9", "4.2"], + ["gteq", "datetime", "mysql", "2.4.9", "5.2"], + ["gteq", "datetime", "mysql", "2.4.9", "6.0"], + ["gteq", "datetime", "sqlite", "2.7.0", "4.2"], + ["gteq", "datetime", "sqlite", "2.7.0", "5.2"], + ["gteq", "datetime", "sqlite", "2.7.0", "6.0"], + ["gteq", "datetime", "sqlite", "2.6.5", "4.2"], + ["gteq", "datetime", "sqlite", "2.6.5", "5.2"], + ["gteq", "datetime", "sqlite", "2.6.5", "6.0"], + ["gteq", "datetime", "sqlite", "2.5.7", "4.2"], + ["gteq", "datetime", "sqlite", "2.5.7", "5.2"], + ["gteq", "datetime", "sqlite", "2.5.7", "6.0"], + ["gteq", "datetime", "sqlite", "2.4.9", "4.2"], + ["gteq", "datetime", "sqlite", "2.4.9", "5.2"], + ["gteq", "datetime", "sqlite", "2.4.9", "6.0"], + ["gteq", "decimal", "postgresql", "2.7.0", "4.2"], + ["gteq", "decimal", "postgresql", "2.7.0", "5.2"], + ["gteq", "decimal", "postgresql", "2.7.0", "6.0"], + ["gteq", "decimal", "postgresql", "2.6.5", "4.2"], + ["gteq", "decimal", "postgresql", "2.6.5", "5.2"], + ["gteq", "decimal", "postgresql", "2.6.5", "6.0"], + ["gteq", "decimal", "postgresql", "2.5.7", "4.2"], + ["gteq", "decimal", "postgresql", "2.5.7", "5.2"], + ["gteq", "decimal", "postgresql", "2.5.7", "6.0"], + ["gteq", "decimal", "postgresql", "2.4.9", "4.2"], + ["gteq", "decimal", "postgresql", "2.4.9", "5.2"], + ["gteq", "decimal", "postgresql", "2.4.9", "6.0"], + ["gteq", "decimal", "mysql", "2.7.0", "4.2"], + ["gteq", "decimal", "mysql", "2.7.0", "5.2"], + ["gteq", "decimal", "mysql", "2.7.0", "6.0"], + ["gteq", "decimal", "mysql", "2.6.5", "4.2"], + ["gteq", "decimal", "mysql", "2.6.5", "5.2"], + ["gteq", "decimal", "mysql", "2.6.5", "6.0"], + ["gteq", "decimal", "mysql", "2.5.7", "4.2"], + ["gteq", "decimal", "mysql", "2.5.7", "5.2"], + ["gteq", "decimal", "mysql", "2.5.7", "6.0"], + ["gteq", "decimal", "mysql", "2.4.9", "4.2"], + ["gteq", "decimal", "mysql", "2.4.9", "5.2"], + ["gteq", "decimal", "mysql", "2.4.9", "6.0"], + ["gteq", "decimal", "sqlite", "2.7.0", "4.2"], + ["gteq", "decimal", "sqlite", "2.7.0", "5.2"], + ["gteq", "decimal", "sqlite", "2.7.0", "6.0"], + ["gteq", "decimal", "sqlite", "2.6.5", "4.2"], + ["gteq", "decimal", "sqlite", "2.6.5", "5.2"], + ["gteq", "decimal", "sqlite", "2.6.5", "6.0"], + ["gteq", "decimal", "sqlite", "2.5.7", "4.2"], + ["gteq", "decimal", "sqlite", "2.5.7", "5.2"], + ["gteq", "decimal", "sqlite", "2.5.7", "6.0"], + ["gteq", "decimal", "sqlite", "2.4.9", "4.2"], + ["gteq", "decimal", "sqlite", "2.4.9", "5.2"], + ["gteq", "decimal", "sqlite", "2.4.9", "6.0"], + ["gteq", "float", "postgresql", "2.7.0", "4.2"], + ["gteq", "float", "postgresql", "2.7.0", "5.2"], + ["gteq", "float", "postgresql", "2.7.0", "6.0"], + ["gteq", "float", "postgresql", "2.6.5", "4.2"], + ["gteq", "float", "postgresql", "2.6.5", "5.2"], + ["gteq", "float", "postgresql", "2.6.5", "6.0"], + ["gteq", "float", "postgresql", "2.5.7", "4.2"], + ["gteq", "float", "postgresql", "2.5.7", "5.2"], + ["gteq", "float", "postgresql", "2.5.7", "6.0"], + ["gteq", "float", "postgresql", "2.4.9", "4.2"], + ["gteq", "float", "postgresql", "2.4.9", "5.2"], + ["gteq", "float", "postgresql", "2.4.9", "6.0"], + ["gteq", "float", "mysql", "2.7.0", "4.2"], + ["gteq", "float", "mysql", "2.7.0", "5.2"], + ["gteq", "float", "mysql", "2.7.0", "6.0"], + ["gteq", "float", "mysql", "2.6.5", "4.2"], + ["gteq", "float", "mysql", "2.6.5", "5.2"], + ["gteq", "float", "mysql", "2.6.5", "6.0"], + ["gteq", "float", "mysql", "2.5.7", "4.2"], + ["gteq", "float", "mysql", "2.5.7", "5.2"], + ["gteq", "float", "mysql", "2.5.7", "6.0"], + ["gteq", "float", "mysql", "2.4.9", "4.2"], + ["gteq", "float", "mysql", "2.4.9", "5.2"], + ["gteq", "float", "mysql", "2.4.9", "6.0"], + ["gteq", "float", "sqlite", "2.7.0", "4.2"], + ["gteq", "float", "sqlite", "2.7.0", "5.2"], + ["gteq", "float", "sqlite", "2.7.0", "6.0"], + ["gteq", "float", "sqlite", "2.6.5", "4.2"], + ["gteq", "float", "sqlite", "2.6.5", "5.2"], + ["gteq", "float", "sqlite", "2.6.5", "6.0"], + ["gteq", "float", "sqlite", "2.5.7", "4.2"], + ["gteq", "float", "sqlite", "2.5.7", "5.2"], + ["gteq", "float", "sqlite", "2.5.7", "6.0"], + ["gteq", "float", "sqlite", "2.4.9", "4.2"], + ["gteq", "float", "sqlite", "2.4.9", "5.2"], + ["gteq", "float", "sqlite", "2.4.9", "6.0"], + ["gteq", "integer", "postgresql", "2.7.0", "4.2"], + ["gteq", "integer", "postgresql", "2.7.0", "5.2"], + ["gteq", "integer", "postgresql", "2.7.0", "6.0"], + ["gteq", "integer", "postgresql", "2.6.5", "4.2"], + ["gteq", "integer", "postgresql", "2.6.5", "5.2"], + ["gteq", "integer", "postgresql", "2.6.5", "6.0"], + ["gteq", "integer", "postgresql", "2.5.7", "4.2"], + ["gteq", "integer", "postgresql", "2.5.7", "5.2"], + ["gteq", "integer", "postgresql", "2.5.7", "6.0"], + ["gteq", "integer", "postgresql", "2.4.9", "4.2"], + ["gteq", "integer", "postgresql", "2.4.9", "5.2"], + ["gteq", "integer", "postgresql", "2.4.9", "6.0"], + ["gteq", "integer", "mysql", "2.7.0", "4.2"], + ["gteq", "integer", "mysql", "2.7.0", "5.2"], + ["gteq", "integer", "mysql", "2.7.0", "6.0"], + ["gteq", "integer", "mysql", "2.6.5", "4.2"], + ["gteq", "integer", "mysql", "2.6.5", "5.2"], + ["gteq", "integer", "mysql", "2.6.5", "6.0"], + ["gteq", "integer", "mysql", "2.5.7", "4.2"], + ["gteq", "integer", "mysql", "2.5.7", "5.2"], + ["gteq", "integer", "mysql", "2.5.7", "6.0"], + ["gteq", "integer", "mysql", "2.4.9", "4.2"], + ["gteq", "integer", "mysql", "2.4.9", "5.2"], + ["gteq", "integer", "mysql", "2.4.9", "6.0"], + ["gteq", "integer", "sqlite", "2.7.0", "4.2"], + ["gteq", "integer", "sqlite", "2.7.0", "5.2"], + ["gteq", "integer", "sqlite", "2.7.0", "6.0"], + ["gteq", "integer", "sqlite", "2.6.5", "4.2"], + ["gteq", "integer", "sqlite", "2.6.5", "5.2"], + ["gteq", "integer", "sqlite", "2.6.5", "6.0"], + ["gteq", "integer", "sqlite", "2.5.7", "4.2"], + ["gteq", "integer", "sqlite", "2.5.7", "5.2"], + ["gteq", "integer", "sqlite", "2.5.7", "6.0"], + ["gteq", "integer", "sqlite", "2.4.9", "4.2"], + ["gteq", "integer", "sqlite", "2.4.9", "5.2"], + ["gteq", "integer", "sqlite", "2.4.9", "6.0"], + ["gteq", "string", "postgresql", "2.7.0", "4.2"], + ["gteq", "string", "postgresql", "2.7.0", "5.2"], + ["gteq", "string", "postgresql", "2.7.0", "6.0"], + ["gteq", "string", "postgresql", "2.6.5", "4.2"], + ["gteq", "string", "postgresql", "2.6.5", "5.2"], + ["gteq", "string", "postgresql", "2.6.5", "6.0"], + ["gteq", "string", "postgresql", "2.5.7", "4.2"], + ["gteq", "string", "postgresql", "2.5.7", "5.2"], + ["gteq", "string", "postgresql", "2.5.7", "6.0"], + ["gteq", "string", "postgresql", "2.4.9", "4.2"], + ["gteq", "string", "postgresql", "2.4.9", "5.2"], + ["gteq", "string", "postgresql", "2.4.9", "6.0"], + ["gteq", "string", "mysql", "2.7.0", "4.2"], + ["gteq", "string", "mysql", "2.7.0", "5.2"], + ["gteq", "string", "mysql", "2.7.0", "6.0"], + ["gteq", "string", "mysql", "2.6.5", "4.2"], + ["gteq", "string", "mysql", "2.6.5", "5.2"], + ["gteq", "string", "mysql", "2.6.5", "6.0"], + ["gteq", "string", "mysql", "2.5.7", "4.2"], + ["gteq", "string", "mysql", "2.5.7", "5.2"], + ["gteq", "string", "mysql", "2.5.7", "6.0"], + ["gteq", "string", "mysql", "2.4.9", "4.2"], + ["gteq", "string", "mysql", "2.4.9", "5.2"], + ["gteq", "string", "mysql", "2.4.9", "6.0"], + ["gteq", "string", "sqlite", "2.7.0", "4.2"], + ["gteq", "string", "sqlite", "2.7.0", "5.2"], + ["gteq", "string", "sqlite", "2.7.0", "6.0"], + ["gteq", "string", "sqlite", "2.6.5", "4.2"], + ["gteq", "string", "sqlite", "2.6.5", "5.2"], + ["gteq", "string", "sqlite", "2.6.5", "6.0"], + ["gteq", "string", "sqlite", "2.5.7", "4.2"], + ["gteq", "string", "sqlite", "2.5.7", "5.2"], + ["gteq", "string", "sqlite", "2.5.7", "6.0"], + ["gteq", "string", "sqlite", "2.4.9", "4.2"], + ["gteq", "string", "sqlite", "2.4.9", "5.2"], + ["gteq", "string", "sqlite", "2.4.9", "6.0"], + ["gteq", "text", "postgresql", "2.7.0", "4.2"], + ["gteq", "text", "postgresql", "2.7.0", "5.2"], + ["gteq", "text", "postgresql", "2.7.0", "6.0"], + ["gteq", "text", "postgresql", "2.6.5", "4.2"], + ["gteq", "text", "postgresql", "2.6.5", "5.2"], + ["gteq", "text", "postgresql", "2.6.5", "6.0"], + ["gteq", "text", "postgresql", "2.5.7", "4.2"], + ["gteq", "text", "postgresql", "2.5.7", "5.2"], + ["gteq", "text", "postgresql", "2.5.7", "6.0"], + ["gteq", "text", "postgresql", "2.4.9", "4.2"], + ["gteq", "text", "postgresql", "2.4.9", "5.2"], + ["gteq", "text", "postgresql", "2.4.9", "6.0"], + ["gteq", "text", "mysql", "2.7.0", "4.2"], + ["gteq", "text", "mysql", "2.7.0", "5.2"], + ["gteq", "text", "mysql", "2.7.0", "6.0"], + ["gteq", "text", "mysql", "2.6.5", "4.2"], + ["gteq", "text", "mysql", "2.6.5", "5.2"], + ["gteq", "text", "mysql", "2.6.5", "6.0"], + ["gteq", "text", "mysql", "2.5.7", "4.2"], + ["gteq", "text", "mysql", "2.5.7", "5.2"], + ["gteq", "text", "mysql", "2.5.7", "6.0"], + ["gteq", "text", "mysql", "2.4.9", "4.2"], + ["gteq", "text", "mysql", "2.4.9", "5.2"], + ["gteq", "text", "mysql", "2.4.9", "6.0"], + ["gteq", "text", "sqlite", "2.7.0", "4.2"], + ["gteq", "text", "sqlite", "2.7.0", "5.2"], + ["gteq", "text", "sqlite", "2.7.0", "6.0"], + ["gteq", "text", "sqlite", "2.6.5", "4.2"], + ["gteq", "text", "sqlite", "2.6.5", "5.2"], + ["gteq", "text", "sqlite", "2.6.5", "6.0"], + ["gteq", "text", "sqlite", "2.5.7", "4.2"], + ["gteq", "text", "sqlite", "2.5.7", "5.2"], + ["gteq", "text", "sqlite", "2.5.7", "6.0"], + ["gteq", "text", "sqlite", "2.4.9", "4.2"], + ["gteq", "text", "sqlite", "2.4.9", "5.2"], + ["gteq", "text", "sqlite", "2.4.9", "6.0"], + ["gteq", "time", "postgresql", "2.7.0", "4.2"], + ["gteq", "time", "postgresql", "2.7.0", "5.2"], + ["gteq", "time", "postgresql", "2.7.0", "6.0"], + ["gteq", "time", "postgresql", "2.6.5", "4.2"], + ["gteq", "time", "postgresql", "2.6.5", "5.2"], + ["gteq", "time", "postgresql", "2.6.5", "6.0"], + ["gteq", "time", "postgresql", "2.5.7", "4.2"], + ["gteq", "time", "postgresql", "2.5.7", "5.2"], + ["gteq", "time", "postgresql", "2.5.7", "6.0"], + ["gteq", "time", "postgresql", "2.4.9", "4.2"], + ["gteq", "time", "postgresql", "2.4.9", "5.2"], + ["gteq", "time", "postgresql", "2.4.9", "6.0"], + ["gteq", "time", "mysql", "2.7.0", "4.2"], + ["gteq", "time", "mysql", "2.7.0", "5.2"], + ["gteq", "time", "mysql", "2.7.0", "6.0"], + ["gteq", "time", "mysql", "2.6.5", "4.2"], + ["gteq", "time", "mysql", "2.6.5", "5.2"], + ["gteq", "time", "mysql", "2.6.5", "6.0"], + ["gteq", "time", "mysql", "2.5.7", "4.2"], + ["gteq", "time", "mysql", "2.5.7", "5.2"], + ["gteq", "time", "mysql", "2.5.7", "6.0"], + ["gteq", "time", "mysql", "2.4.9", "4.2"], + ["gteq", "time", "mysql", "2.4.9", "5.2"], + ["gteq", "time", "mysql", "2.4.9", "6.0"], + ["gteq", "time", "sqlite", "2.7.0", "4.2"], + ["gteq", "time", "sqlite", "2.7.0", "5.2"], + ["gteq", "time", "sqlite", "2.7.0", "6.0"], + ["gteq", "time", "sqlite", "2.6.5", "4.2"], + ["gteq", "time", "sqlite", "2.6.5", "5.2"], + ["gteq", "time", "sqlite", "2.6.5", "6.0"], + ["gteq", "time", "sqlite", "2.5.7", "4.2"], + ["gteq", "time", "sqlite", "2.5.7", "5.2"], + ["gteq", "time", "sqlite", "2.5.7", "6.0"], + ["gteq", "time", "sqlite", "2.4.9", "4.2"], + ["gteq", "time", "sqlite", "2.4.9", "5.2"], + ["gteq", "time", "sqlite", "2.4.9", "6.0"], + ["gt_any", "binary", "postgresql", "2.7.0", "4.2"], + ["gt_any", "binary", "postgresql", "2.7.0", "5.2"], + ["gt_any", "binary", "postgresql", "2.7.0", "6.0"], + ["gt_any", "binary", "postgresql", "2.6.5", "4.2"], + ["gt_any", "binary", "postgresql", "2.6.5", "5.2"], + ["gt_any", "binary", "postgresql", "2.6.5", "6.0"], + ["gt_any", "binary", "postgresql", "2.5.7", "4.2"], + ["gt_any", "binary", "postgresql", "2.5.7", "5.2"], + ["gt_any", "binary", "postgresql", "2.5.7", "6.0"], + ["gt_any", "binary", "postgresql", "2.4.9", "4.2"], + ["gt_any", "binary", "postgresql", "2.4.9", "5.2"], + ["gt_any", "binary", "postgresql", "2.4.9", "6.0"], + ["gt_any", "binary", "mysql", "2.7.0", "4.2"], + ["gt_any", "binary", "mysql", "2.7.0", "5.2"], + ["gt_any", "binary", "mysql", "2.7.0", "6.0"], + ["gt_any", "binary", "mysql", "2.6.5", "4.2"], + ["gt_any", "binary", "mysql", "2.6.5", "5.2"], + ["gt_any", "binary", "mysql", "2.6.5", "6.0"], + ["gt_any", "binary", "mysql", "2.5.7", "4.2"], + ["gt_any", "binary", "mysql", "2.5.7", "5.2"], + ["gt_any", "binary", "mysql", "2.5.7", "6.0"], + ["gt_any", "binary", "mysql", "2.4.9", "4.2"], + ["gt_any", "binary", "mysql", "2.4.9", "5.2"], + ["gt_any", "binary", "mysql", "2.4.9", "6.0"], + ["gt_any", "binary", "sqlite", "2.7.0", "4.2"], + ["gt_any", "binary", "sqlite", "2.7.0", "5.2"], + ["gt_any", "binary", "sqlite", "2.7.0", "6.0"], + ["gt_any", "binary", "sqlite", "2.6.5", "4.2"], + ["gt_any", "binary", "sqlite", "2.6.5", "5.2"], + ["gt_any", "binary", "sqlite", "2.6.5", "6.0"], + ["gt_any", "binary", "sqlite", "2.5.7", "4.2"], + ["gt_any", "binary", "sqlite", "2.5.7", "5.2"], + ["gt_any", "binary", "sqlite", "2.5.7", "6.0"], + ["gt_any", "binary", "sqlite", "2.4.9", "4.2"], + ["gt_any", "binary", "sqlite", "2.4.9", "5.2"], + ["gt_any", "binary", "sqlite", "2.4.9", "6.0"], + ["gt_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["gt_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["gt_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["gt_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["gt_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["gt_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["gt_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["gt_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["gt_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["gt_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["gt_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["gt_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["gt_any", "boolean", "mysql", "2.7.0", "4.2"], + ["gt_any", "boolean", "mysql", "2.7.0", "5.2"], + ["gt_any", "boolean", "mysql", "2.7.0", "6.0"], + ["gt_any", "boolean", "mysql", "2.6.5", "4.2"], + ["gt_any", "boolean", "mysql", "2.6.5", "5.2"], + ["gt_any", "boolean", "mysql", "2.6.5", "6.0"], + ["gt_any", "boolean", "mysql", "2.5.7", "4.2"], + ["gt_any", "boolean", "mysql", "2.5.7", "5.2"], + ["gt_any", "boolean", "mysql", "2.5.7", "6.0"], + ["gt_any", "boolean", "mysql", "2.4.9", "4.2"], + ["gt_any", "boolean", "mysql", "2.4.9", "5.2"], + ["gt_any", "boolean", "mysql", "2.4.9", "6.0"], + ["gt_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["gt_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["gt_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["gt_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["gt_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["gt_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["gt_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["gt_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["gt_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["gt_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["gt_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["gt_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["gt_any", "date", "postgresql", "2.7.0", "4.2"], + ["gt_any", "date", "postgresql", "2.7.0", "5.2"], + ["gt_any", "date", "postgresql", "2.7.0", "6.0"], + ["gt_any", "date", "postgresql", "2.6.5", "4.2"], + ["gt_any", "date", "postgresql", "2.6.5", "5.2"], + ["gt_any", "date", "postgresql", "2.6.5", "6.0"], + ["gt_any", "date", "postgresql", "2.5.7", "4.2"], + ["gt_any", "date", "postgresql", "2.5.7", "5.2"], + ["gt_any", "date", "postgresql", "2.5.7", "6.0"], + ["gt_any", "date", "postgresql", "2.4.9", "4.2"], + ["gt_any", "date", "postgresql", "2.4.9", "5.2"], + ["gt_any", "date", "postgresql", "2.4.9", "6.0"], + ["gt_any", "date", "mysql", "2.7.0", "4.2"], + ["gt_any", "date", "mysql", "2.7.0", "5.2"], + ["gt_any", "date", "mysql", "2.7.0", "6.0"], + ["gt_any", "date", "mysql", "2.6.5", "4.2"], + ["gt_any", "date", "mysql", "2.6.5", "5.2"], + ["gt_any", "date", "mysql", "2.6.5", "6.0"], + ["gt_any", "date", "mysql", "2.5.7", "4.2"], + ["gt_any", "date", "mysql", "2.5.7", "5.2"], + ["gt_any", "date", "mysql", "2.5.7", "6.0"], + ["gt_any", "date", "mysql", "2.4.9", "4.2"], + ["gt_any", "date", "mysql", "2.4.9", "5.2"], + ["gt_any", "date", "mysql", "2.4.9", "6.0"], + ["gt_any", "date", "sqlite", "2.7.0", "4.2"], + ["gt_any", "date", "sqlite", "2.7.0", "5.2"], + ["gt_any", "date", "sqlite", "2.7.0", "6.0"], + ["gt_any", "date", "sqlite", "2.6.5", "4.2"], + ["gt_any", "date", "sqlite", "2.6.5", "5.2"], + ["gt_any", "date", "sqlite", "2.6.5", "6.0"], + ["gt_any", "date", "sqlite", "2.5.7", "4.2"], + ["gt_any", "date", "sqlite", "2.5.7", "5.2"], + ["gt_any", "date", "sqlite", "2.5.7", "6.0"], + ["gt_any", "date", "sqlite", "2.4.9", "4.2"], + ["gt_any", "date", "sqlite", "2.4.9", "5.2"], + ["gt_any", "date", "sqlite", "2.4.9", "6.0"], + ["gt_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["gt_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["gt_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["gt_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["gt_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["gt_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["gt_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["gt_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["gt_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["gt_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["gt_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["gt_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["gt_any", "datetime", "mysql", "2.7.0", "4.2"], + ["gt_any", "datetime", "mysql", "2.7.0", "5.2"], + ["gt_any", "datetime", "mysql", "2.7.0", "6.0"], + ["gt_any", "datetime", "mysql", "2.6.5", "4.2"], + ["gt_any", "datetime", "mysql", "2.6.5", "5.2"], + ["gt_any", "datetime", "mysql", "2.6.5", "6.0"], + ["gt_any", "datetime", "mysql", "2.5.7", "4.2"], + ["gt_any", "datetime", "mysql", "2.5.7", "5.2"], + ["gt_any", "datetime", "mysql", "2.5.7", "6.0"], + ["gt_any", "datetime", "mysql", "2.4.9", "4.2"], + ["gt_any", "datetime", "mysql", "2.4.9", "5.2"], + ["gt_any", "datetime", "mysql", "2.4.9", "6.0"], + ["gt_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["gt_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["gt_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["gt_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["gt_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["gt_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["gt_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["gt_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["gt_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["gt_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["gt_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["gt_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["gt_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["gt_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["gt_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["gt_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["gt_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["gt_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["gt_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["gt_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["gt_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["gt_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["gt_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["gt_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["gt_any", "decimal", "mysql", "2.7.0", "4.2"], + ["gt_any", "decimal", "mysql", "2.7.0", "5.2"], + ["gt_any", "decimal", "mysql", "2.7.0", "6.0"], + ["gt_any", "decimal", "mysql", "2.6.5", "4.2"], + ["gt_any", "decimal", "mysql", "2.6.5", "5.2"], + ["gt_any", "decimal", "mysql", "2.6.5", "6.0"], + ["gt_any", "decimal", "mysql", "2.5.7", "4.2"], + ["gt_any", "decimal", "mysql", "2.5.7", "5.2"], + ["gt_any", "decimal", "mysql", "2.5.7", "6.0"], + ["gt_any", "decimal", "mysql", "2.4.9", "4.2"], + ["gt_any", "decimal", "mysql", "2.4.9", "5.2"], + ["gt_any", "decimal", "mysql", "2.4.9", "6.0"], + ["gt_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["gt_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["gt_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["gt_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["gt_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["gt_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["gt_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["gt_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["gt_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["gt_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["gt_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["gt_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["gt_any", "float", "postgresql", "2.7.0", "4.2"], + ["gt_any", "float", "postgresql", "2.7.0", "5.2"], + ["gt_any", "float", "postgresql", "2.7.0", "6.0"], + ["gt_any", "float", "postgresql", "2.6.5", "4.2"], + ["gt_any", "float", "postgresql", "2.6.5", "5.2"], + ["gt_any", "float", "postgresql", "2.6.5", "6.0"], + ["gt_any", "float", "postgresql", "2.5.7", "4.2"], + ["gt_any", "float", "postgresql", "2.5.7", "5.2"], + ["gt_any", "float", "postgresql", "2.5.7", "6.0"], + ["gt_any", "float", "postgresql", "2.4.9", "4.2"], + ["gt_any", "float", "postgresql", "2.4.9", "5.2"], + ["gt_any", "float", "postgresql", "2.4.9", "6.0"], + ["gt_any", "float", "mysql", "2.7.0", "4.2"], + ["gt_any", "float", "mysql", "2.7.0", "5.2"], + ["gt_any", "float", "mysql", "2.7.0", "6.0"], + ["gt_any", "float", "mysql", "2.6.5", "4.2"], + ["gt_any", "float", "mysql", "2.6.5", "5.2"], + ["gt_any", "float", "mysql", "2.6.5", "6.0"], + ["gt_any", "float", "mysql", "2.5.7", "4.2"], + ["gt_any", "float", "mysql", "2.5.7", "5.2"], + ["gt_any", "float", "mysql", "2.5.7", "6.0"], + ["gt_any", "float", "mysql", "2.4.9", "4.2"], + ["gt_any", "float", "mysql", "2.4.9", "5.2"], + ["gt_any", "float", "mysql", "2.4.9", "6.0"], + ["gt_any", "float", "sqlite", "2.7.0", "4.2"], + ["gt_any", "float", "sqlite", "2.7.0", "5.2"], + ["gt_any", "float", "sqlite", "2.7.0", "6.0"], + ["gt_any", "float", "sqlite", "2.6.5", "4.2"], + ["gt_any", "float", "sqlite", "2.6.5", "5.2"], + ["gt_any", "float", "sqlite", "2.6.5", "6.0"], + ["gt_any", "float", "sqlite", "2.5.7", "4.2"], + ["gt_any", "float", "sqlite", "2.5.7", "5.2"], + ["gt_any", "float", "sqlite", "2.5.7", "6.0"], + ["gt_any", "float", "sqlite", "2.4.9", "4.2"], + ["gt_any", "float", "sqlite", "2.4.9", "5.2"], + ["gt_any", "float", "sqlite", "2.4.9", "6.0"], + ["gt_any", "integer", "postgresql", "2.7.0", "4.2"], + ["gt_any", "integer", "postgresql", "2.7.0", "5.2"], + ["gt_any", "integer", "postgresql", "2.7.0", "6.0"], + ["gt_any", "integer", "postgresql", "2.6.5", "4.2"], + ["gt_any", "integer", "postgresql", "2.6.5", "5.2"], + ["gt_any", "integer", "postgresql", "2.6.5", "6.0"], + ["gt_any", "integer", "postgresql", "2.5.7", "4.2"], + ["gt_any", "integer", "postgresql", "2.5.7", "5.2"], + ["gt_any", "integer", "postgresql", "2.5.7", "6.0"], + ["gt_any", "integer", "postgresql", "2.4.9", "4.2"], + ["gt_any", "integer", "postgresql", "2.4.9", "5.2"], + ["gt_any", "integer", "postgresql", "2.4.9", "6.0"], + ["gt_any", "integer", "mysql", "2.7.0", "4.2"], + ["gt_any", "integer", "mysql", "2.7.0", "5.2"], + ["gt_any", "integer", "mysql", "2.7.0", "6.0"], + ["gt_any", "integer", "mysql", "2.6.5", "4.2"], + ["gt_any", "integer", "mysql", "2.6.5", "5.2"], + ["gt_any", "integer", "mysql", "2.6.5", "6.0"], + ["gt_any", "integer", "mysql", "2.5.7", "4.2"], + ["gt_any", "integer", "mysql", "2.5.7", "5.2"], + ["gt_any", "integer", "mysql", "2.5.7", "6.0"], + ["gt_any", "integer", "mysql", "2.4.9", "4.2"], + ["gt_any", "integer", "mysql", "2.4.9", "5.2"], + ["gt_any", "integer", "mysql", "2.4.9", "6.0"], + ["gt_any", "integer", "sqlite", "2.7.0", "4.2"], + ["gt_any", "integer", "sqlite", "2.7.0", "5.2"], + ["gt_any", "integer", "sqlite", "2.7.0", "6.0"], + ["gt_any", "integer", "sqlite", "2.6.5", "4.2"], + ["gt_any", "integer", "sqlite", "2.6.5", "5.2"], + ["gt_any", "integer", "sqlite", "2.6.5", "6.0"], + ["gt_any", "integer", "sqlite", "2.5.7", "4.2"], + ["gt_any", "integer", "sqlite", "2.5.7", "5.2"], + ["gt_any", "integer", "sqlite", "2.5.7", "6.0"], + ["gt_any", "integer", "sqlite", "2.4.9", "4.2"], + ["gt_any", "integer", "sqlite", "2.4.9", "5.2"], + ["gt_any", "integer", "sqlite", "2.4.9", "6.0"], + ["gt_any", "string", "postgresql", "2.7.0", "4.2"], + ["gt_any", "string", "postgresql", "2.7.0", "5.2"], + ["gt_any", "string", "postgresql", "2.7.0", "6.0"], + ["gt_any", "string", "postgresql", "2.6.5", "4.2"], + ["gt_any", "string", "postgresql", "2.6.5", "5.2"], + ["gt_any", "string", "postgresql", "2.6.5", "6.0"], + ["gt_any", "string", "postgresql", "2.5.7", "4.2"], + ["gt_any", "string", "postgresql", "2.5.7", "5.2"], + ["gt_any", "string", "postgresql", "2.5.7", "6.0"], + ["gt_any", "string", "postgresql", "2.4.9", "4.2"], + ["gt_any", "string", "postgresql", "2.4.9", "5.2"], + ["gt_any", "string", "postgresql", "2.4.9", "6.0"], + ["gt_any", "string", "mysql", "2.7.0", "4.2"], + ["gt_any", "string", "mysql", "2.7.0", "5.2"], + ["gt_any", "string", "mysql", "2.7.0", "6.0"], + ["gt_any", "string", "mysql", "2.6.5", "4.2"], + ["gt_any", "string", "mysql", "2.6.5", "5.2"], + ["gt_any", "string", "mysql", "2.6.5", "6.0"], + ["gt_any", "string", "mysql", "2.5.7", "4.2"], + ["gt_any", "string", "mysql", "2.5.7", "5.2"], + ["gt_any", "string", "mysql", "2.5.7", "6.0"], + ["gt_any", "string", "mysql", "2.4.9", "4.2"], + ["gt_any", "string", "mysql", "2.4.9", "5.2"], + ["gt_any", "string", "mysql", "2.4.9", "6.0"], + ["gt_any", "string", "sqlite", "2.7.0", "4.2"], + ["gt_any", "string", "sqlite", "2.7.0", "5.2"], + ["gt_any", "string", "sqlite", "2.7.0", "6.0"], + ["gt_any", "string", "sqlite", "2.6.5", "4.2"], + ["gt_any", "string", "sqlite", "2.6.5", "5.2"], + ["gt_any", "string", "sqlite", "2.6.5", "6.0"], + ["gt_any", "string", "sqlite", "2.5.7", "4.2"], + ["gt_any", "string", "sqlite", "2.5.7", "5.2"], + ["gt_any", "string", "sqlite", "2.5.7", "6.0"], + ["gt_any", "string", "sqlite", "2.4.9", "4.2"], + ["gt_any", "string", "sqlite", "2.4.9", "5.2"], + ["gt_any", "string", "sqlite", "2.4.9", "6.0"], + ["gt_any", "text", "postgresql", "2.7.0", "4.2"], + ["gt_any", "text", "postgresql", "2.7.0", "5.2"], + ["gt_any", "text", "postgresql", "2.7.0", "6.0"], + ["gt_any", "text", "postgresql", "2.6.5", "4.2"], + ["gt_any", "text", "postgresql", "2.6.5", "5.2"], + ["gt_any", "text", "postgresql", "2.6.5", "6.0"], + ["gt_any", "text", "postgresql", "2.5.7", "4.2"], + ["gt_any", "text", "postgresql", "2.5.7", "5.2"], + ["gt_any", "text", "postgresql", "2.5.7", "6.0"], + ["gt_any", "text", "postgresql", "2.4.9", "4.2"], + ["gt_any", "text", "postgresql", "2.4.9", "5.2"], + ["gt_any", "text", "postgresql", "2.4.9", "6.0"], + ["gt_any", "text", "mysql", "2.7.0", "4.2"], + ["gt_any", "text", "mysql", "2.7.0", "5.2"], + ["gt_any", "text", "mysql", "2.7.0", "6.0"], + ["gt_any", "text", "mysql", "2.6.5", "4.2"], + ["gt_any", "text", "mysql", "2.6.5", "5.2"], + ["gt_any", "text", "mysql", "2.6.5", "6.0"], + ["gt_any", "text", "mysql", "2.5.7", "4.2"], + ["gt_any", "text", "mysql", "2.5.7", "5.2"], + ["gt_any", "text", "mysql", "2.5.7", "6.0"], + ["gt_any", "text", "mysql", "2.4.9", "4.2"], + ["gt_any", "text", "mysql", "2.4.9", "5.2"], + ["gt_any", "text", "mysql", "2.4.9", "6.0"], + ["gt_any", "text", "sqlite", "2.7.0", "4.2"], + ["gt_any", "text", "sqlite", "2.7.0", "5.2"], + ["gt_any", "text", "sqlite", "2.7.0", "6.0"], + ["gt_any", "text", "sqlite", "2.6.5", "4.2"], + ["gt_any", "text", "sqlite", "2.6.5", "5.2"], + ["gt_any", "text", "sqlite", "2.6.5", "6.0"], + ["gt_any", "text", "sqlite", "2.5.7", "4.2"], + ["gt_any", "text", "sqlite", "2.5.7", "5.2"], + ["gt_any", "text", "sqlite", "2.5.7", "6.0"], + ["gt_any", "text", "sqlite", "2.4.9", "4.2"], + ["gt_any", "text", "sqlite", "2.4.9", "5.2"], + ["gt_any", "text", "sqlite", "2.4.9", "6.0"], + ["gt_any", "time", "postgresql", "2.7.0", "4.2"], + ["gt_any", "time", "postgresql", "2.7.0", "5.2"], + ["gt_any", "time", "postgresql", "2.7.0", "6.0"], + ["gt_any", "time", "postgresql", "2.6.5", "4.2"], + ["gt_any", "time", "postgresql", "2.6.5", "5.2"], + ["gt_any", "time", "postgresql", "2.6.5", "6.0"], + ["gt_any", "time", "postgresql", "2.5.7", "4.2"], + ["gt_any", "time", "postgresql", "2.5.7", "5.2"], + ["gt_any", "time", "postgresql", "2.5.7", "6.0"], + ["gt_any", "time", "postgresql", "2.4.9", "4.2"], + ["gt_any", "time", "postgresql", "2.4.9", "5.2"], + ["gt_any", "time", "postgresql", "2.4.9", "6.0"], + ["gt_any", "time", "mysql", "2.7.0", "4.2"], + ["gt_any", "time", "mysql", "2.7.0", "5.2"], + ["gt_any", "time", "mysql", "2.7.0", "6.0"], + ["gt_any", "time", "mysql", "2.6.5", "4.2"], + ["gt_any", "time", "mysql", "2.6.5", "5.2"], + ["gt_any", "time", "mysql", "2.6.5", "6.0"], + ["gt_any", "time", "mysql", "2.5.7", "4.2"], + ["gt_any", "time", "mysql", "2.5.7", "5.2"], + ["gt_any", "time", "mysql", "2.5.7", "6.0"], + ["gt_any", "time", "mysql", "2.4.9", "4.2"], + ["gt_any", "time", "mysql", "2.4.9", "5.2"], + ["gt_any", "time", "mysql", "2.4.9", "6.0"], + ["gt_any", "time", "sqlite", "2.7.0", "4.2"], + ["gt_any", "time", "sqlite", "2.7.0", "5.2"], + ["gt_any", "time", "sqlite", "2.7.0", "6.0"], + ["gt_any", "time", "sqlite", "2.6.5", "4.2"], + ["gt_any", "time", "sqlite", "2.6.5", "5.2"], + ["gt_any", "time", "sqlite", "2.6.5", "6.0"], + ["gt_any", "time", "sqlite", "2.5.7", "4.2"], + ["gt_any", "time", "sqlite", "2.5.7", "5.2"], + ["gt_any", "time", "sqlite", "2.5.7", "6.0"], + ["gt_any", "time", "sqlite", "2.4.9", "4.2"], + ["gt_any", "time", "sqlite", "2.4.9", "5.2"], + ["gt_any", "time", "sqlite", "2.4.9", "6.0"], + ["gt_all", "binary", "postgresql", "2.7.0", "4.2"], + ["gt_all", "binary", "postgresql", "2.7.0", "5.2"], + ["gt_all", "binary", "postgresql", "2.7.0", "6.0"], + ["gt_all", "binary", "postgresql", "2.6.5", "4.2"], + ["gt_all", "binary", "postgresql", "2.6.5", "5.2"], + ["gt_all", "binary", "postgresql", "2.6.5", "6.0"], + ["gt_all", "binary", "postgresql", "2.5.7", "4.2"], + ["gt_all", "binary", "postgresql", "2.5.7", "5.2"], + ["gt_all", "binary", "postgresql", "2.5.7", "6.0"], + ["gt_all", "binary", "postgresql", "2.4.9", "4.2"], + ["gt_all", "binary", "postgresql", "2.4.9", "5.2"], + ["gt_all", "binary", "postgresql", "2.4.9", "6.0"], + ["gt_all", "binary", "mysql", "2.7.0", "4.2"], + ["gt_all", "binary", "mysql", "2.7.0", "5.2"], + ["gt_all", "binary", "mysql", "2.7.0", "6.0"], + ["gt_all", "binary", "mysql", "2.6.5", "4.2"], + ["gt_all", "binary", "mysql", "2.6.5", "5.2"], + ["gt_all", "binary", "mysql", "2.6.5", "6.0"], + ["gt_all", "binary", "mysql", "2.5.7", "4.2"], + ["gt_all", "binary", "mysql", "2.5.7", "5.2"], + ["gt_all", "binary", "mysql", "2.5.7", "6.0"], + ["gt_all", "binary", "mysql", "2.4.9", "4.2"], + ["gt_all", "binary", "mysql", "2.4.9", "5.2"], + ["gt_all", "binary", "mysql", "2.4.9", "6.0"], + ["gt_all", "binary", "sqlite", "2.7.0", "4.2"], + ["gt_all", "binary", "sqlite", "2.7.0", "5.2"], + ["gt_all", "binary", "sqlite", "2.7.0", "6.0"], + ["gt_all", "binary", "sqlite", "2.6.5", "4.2"], + ["gt_all", "binary", "sqlite", "2.6.5", "5.2"], + ["gt_all", "binary", "sqlite", "2.6.5", "6.0"], + ["gt_all", "binary", "sqlite", "2.5.7", "4.2"], + ["gt_all", "binary", "sqlite", "2.5.7", "5.2"], + ["gt_all", "binary", "sqlite", "2.5.7", "6.0"], + ["gt_all", "binary", "sqlite", "2.4.9", "4.2"], + ["gt_all", "binary", "sqlite", "2.4.9", "5.2"], + ["gt_all", "binary", "sqlite", "2.4.9", "6.0"], + ["gt_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["gt_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["gt_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["gt_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["gt_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["gt_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["gt_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["gt_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["gt_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["gt_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["gt_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["gt_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["gt_all", "boolean", "mysql", "2.7.0", "4.2"], + ["gt_all", "boolean", "mysql", "2.7.0", "5.2"], + ["gt_all", "boolean", "mysql", "2.7.0", "6.0"], + ["gt_all", "boolean", "mysql", "2.6.5", "4.2"], + ["gt_all", "boolean", "mysql", "2.6.5", "5.2"], + ["gt_all", "boolean", "mysql", "2.6.5", "6.0"], + ["gt_all", "boolean", "mysql", "2.5.7", "4.2"], + ["gt_all", "boolean", "mysql", "2.5.7", "5.2"], + ["gt_all", "boolean", "mysql", "2.5.7", "6.0"], + ["gt_all", "boolean", "mysql", "2.4.9", "4.2"], + ["gt_all", "boolean", "mysql", "2.4.9", "5.2"], + ["gt_all", "boolean", "mysql", "2.4.9", "6.0"], + ["gt_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["gt_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["gt_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["gt_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["gt_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["gt_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["gt_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["gt_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["gt_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["gt_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["gt_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["gt_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["gt_all", "date", "postgresql", "2.7.0", "4.2"], + ["gt_all", "date", "postgresql", "2.7.0", "5.2"], + ["gt_all", "date", "postgresql", "2.7.0", "6.0"], + ["gt_all", "date", "postgresql", "2.6.5", "4.2"], + ["gt_all", "date", "postgresql", "2.6.5", "5.2"], + ["gt_all", "date", "postgresql", "2.6.5", "6.0"], + ["gt_all", "date", "postgresql", "2.5.7", "4.2"], + ["gt_all", "date", "postgresql", "2.5.7", "5.2"], + ["gt_all", "date", "postgresql", "2.5.7", "6.0"], + ["gt_all", "date", "postgresql", "2.4.9", "4.2"], + ["gt_all", "date", "postgresql", "2.4.9", "5.2"], + ["gt_all", "date", "postgresql", "2.4.9", "6.0"], + ["gt_all", "date", "mysql", "2.7.0", "4.2"], + ["gt_all", "date", "mysql", "2.7.0", "5.2"], + ["gt_all", "date", "mysql", "2.7.0", "6.0"], + ["gt_all", "date", "mysql", "2.6.5", "4.2"], + ["gt_all", "date", "mysql", "2.6.5", "5.2"], + ["gt_all", "date", "mysql", "2.6.5", "6.0"], + ["gt_all", "date", "mysql", "2.5.7", "4.2"], + ["gt_all", "date", "mysql", "2.5.7", "5.2"], + ["gt_all", "date", "mysql", "2.5.7", "6.0"], + ["gt_all", "date", "mysql", "2.4.9", "4.2"], + ["gt_all", "date", "mysql", "2.4.9", "5.2"], + ["gt_all", "date", "mysql", "2.4.9", "6.0"], + ["gt_all", "date", "sqlite", "2.7.0", "4.2"], + ["gt_all", "date", "sqlite", "2.7.0", "5.2"], + ["gt_all", "date", "sqlite", "2.7.0", "6.0"], + ["gt_all", "date", "sqlite", "2.6.5", "4.2"], + ["gt_all", "date", "sqlite", "2.6.5", "5.2"], + ["gt_all", "date", "sqlite", "2.6.5", "6.0"], + ["gt_all", "date", "sqlite", "2.5.7", "4.2"], + ["gt_all", "date", "sqlite", "2.5.7", "5.2"], + ["gt_all", "date", "sqlite", "2.5.7", "6.0"], + ["gt_all", "date", "sqlite", "2.4.9", "4.2"], + ["gt_all", "date", "sqlite", "2.4.9", "5.2"], + ["gt_all", "date", "sqlite", "2.4.9", "6.0"], + ["gt_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["gt_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["gt_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["gt_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["gt_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["gt_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["gt_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["gt_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["gt_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["gt_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["gt_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["gt_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["gt_all", "datetime", "mysql", "2.7.0", "4.2"], + ["gt_all", "datetime", "mysql", "2.7.0", "5.2"], + ["gt_all", "datetime", "mysql", "2.7.0", "6.0"], + ["gt_all", "datetime", "mysql", "2.6.5", "4.2"], + ["gt_all", "datetime", "mysql", "2.6.5", "5.2"], + ["gt_all", "datetime", "mysql", "2.6.5", "6.0"], + ["gt_all", "datetime", "mysql", "2.5.7", "4.2"], + ["gt_all", "datetime", "mysql", "2.5.7", "5.2"], + ["gt_all", "datetime", "mysql", "2.5.7", "6.0"], + ["gt_all", "datetime", "mysql", "2.4.9", "4.2"], + ["gt_all", "datetime", "mysql", "2.4.9", "5.2"], + ["gt_all", "datetime", "mysql", "2.4.9", "6.0"], + ["gt_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["gt_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["gt_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["gt_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["gt_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["gt_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["gt_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["gt_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["gt_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["gt_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["gt_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["gt_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["gt_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["gt_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["gt_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["gt_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["gt_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["gt_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["gt_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["gt_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["gt_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["gt_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["gt_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["gt_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["gt_all", "decimal", "mysql", "2.7.0", "4.2"], + ["gt_all", "decimal", "mysql", "2.7.0", "5.2"], + ["gt_all", "decimal", "mysql", "2.7.0", "6.0"], + ["gt_all", "decimal", "mysql", "2.6.5", "4.2"], + ["gt_all", "decimal", "mysql", "2.6.5", "5.2"], + ["gt_all", "decimal", "mysql", "2.6.5", "6.0"], + ["gt_all", "decimal", "mysql", "2.5.7", "4.2"], + ["gt_all", "decimal", "mysql", "2.5.7", "5.2"], + ["gt_all", "decimal", "mysql", "2.5.7", "6.0"], + ["gt_all", "decimal", "mysql", "2.4.9", "4.2"], + ["gt_all", "decimal", "mysql", "2.4.9", "5.2"], + ["gt_all", "decimal", "mysql", "2.4.9", "6.0"], + ["gt_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["gt_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["gt_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["gt_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["gt_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["gt_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["gt_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["gt_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["gt_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["gt_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["gt_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["gt_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["gt_all", "float", "postgresql", "2.7.0", "4.2"], + ["gt_all", "float", "postgresql", "2.7.0", "5.2"], + ["gt_all", "float", "postgresql", "2.7.0", "6.0"], + ["gt_all", "float", "postgresql", "2.6.5", "4.2"], + ["gt_all", "float", "postgresql", "2.6.5", "5.2"], + ["gt_all", "float", "postgresql", "2.6.5", "6.0"], + ["gt_all", "float", "postgresql", "2.5.7", "4.2"], + ["gt_all", "float", "postgresql", "2.5.7", "5.2"], + ["gt_all", "float", "postgresql", "2.5.7", "6.0"], + ["gt_all", "float", "postgresql", "2.4.9", "4.2"], + ["gt_all", "float", "postgresql", "2.4.9", "5.2"], + ["gt_all", "float", "postgresql", "2.4.9", "6.0"], + ["gt_all", "float", "mysql", "2.7.0", "4.2"], + ["gt_all", "float", "mysql", "2.7.0", "5.2"], + ["gt_all", "float", "mysql", "2.7.0", "6.0"], + ["gt_all", "float", "mysql", "2.6.5", "4.2"], + ["gt_all", "float", "mysql", "2.6.5", "5.2"], + ["gt_all", "float", "mysql", "2.6.5", "6.0"], + ["gt_all", "float", "mysql", "2.5.7", "4.2"], + ["gt_all", "float", "mysql", "2.5.7", "5.2"], + ["gt_all", "float", "mysql", "2.5.7", "6.0"], + ["gt_all", "float", "mysql", "2.4.9", "4.2"], + ["gt_all", "float", "mysql", "2.4.9", "5.2"], + ["gt_all", "float", "mysql", "2.4.9", "6.0"], + ["gt_all", "float", "sqlite", "2.7.0", "4.2"], + ["gt_all", "float", "sqlite", "2.7.0", "5.2"], + ["gt_all", "float", "sqlite", "2.7.0", "6.0"], + ["gt_all", "float", "sqlite", "2.6.5", "4.2"], + ["gt_all", "float", "sqlite", "2.6.5", "5.2"], + ["gt_all", "float", "sqlite", "2.6.5", "6.0"], + ["gt_all", "float", "sqlite", "2.5.7", "4.2"], + ["gt_all", "float", "sqlite", "2.5.7", "5.2"], + ["gt_all", "float", "sqlite", "2.5.7", "6.0"], + ["gt_all", "float", "sqlite", "2.4.9", "4.2"], + ["gt_all", "float", "sqlite", "2.4.9", "5.2"], + ["gt_all", "float", "sqlite", "2.4.9", "6.0"], + ["gt_all", "integer", "postgresql", "2.7.0", "4.2"], + ["gt_all", "integer", "postgresql", "2.7.0", "5.2"], + ["gt_all", "integer", "postgresql", "2.7.0", "6.0"], + ["gt_all", "integer", "postgresql", "2.6.5", "4.2"], + ["gt_all", "integer", "postgresql", "2.6.5", "5.2"], + ["gt_all", "integer", "postgresql", "2.6.5", "6.0"], + ["gt_all", "integer", "postgresql", "2.5.7", "4.2"], + ["gt_all", "integer", "postgresql", "2.5.7", "5.2"], + ["gt_all", "integer", "postgresql", "2.5.7", "6.0"], + ["gt_all", "integer", "postgresql", "2.4.9", "4.2"], + ["gt_all", "integer", "postgresql", "2.4.9", "5.2"], + ["gt_all", "integer", "postgresql", "2.4.9", "6.0"], + ["gt_all", "integer", "mysql", "2.7.0", "4.2"], + ["gt_all", "integer", "mysql", "2.7.0", "5.2"], + ["gt_all", "integer", "mysql", "2.7.0", "6.0"], + ["gt_all", "integer", "mysql", "2.6.5", "4.2"], + ["gt_all", "integer", "mysql", "2.6.5", "5.2"], + ["gt_all", "integer", "mysql", "2.6.5", "6.0"], + ["gt_all", "integer", "mysql", "2.5.7", "4.2"], + ["gt_all", "integer", "mysql", "2.5.7", "5.2"], + ["gt_all", "integer", "mysql", "2.5.7", "6.0"], + ["gt_all", "integer", "mysql", "2.4.9", "4.2"], + ["gt_all", "integer", "mysql", "2.4.9", "5.2"], + ["gt_all", "integer", "mysql", "2.4.9", "6.0"], + ["gt_all", "integer", "sqlite", "2.7.0", "4.2"], + ["gt_all", "integer", "sqlite", "2.7.0", "5.2"], + ["gt_all", "integer", "sqlite", "2.7.0", "6.0"], + ["gt_all", "integer", "sqlite", "2.6.5", "4.2"], + ["gt_all", "integer", "sqlite", "2.6.5", "5.2"], + ["gt_all", "integer", "sqlite", "2.6.5", "6.0"], + ["gt_all", "integer", "sqlite", "2.5.7", "4.2"], + ["gt_all", "integer", "sqlite", "2.5.7", "5.2"], + ["gt_all", "integer", "sqlite", "2.5.7", "6.0"], + ["gt_all", "integer", "sqlite", "2.4.9", "4.2"], + ["gt_all", "integer", "sqlite", "2.4.9", "5.2"], + ["gt_all", "integer", "sqlite", "2.4.9", "6.0"], + ["gt_all", "string", "postgresql", "2.7.0", "4.2"], + ["gt_all", "string", "postgresql", "2.7.0", "5.2"], + ["gt_all", "string", "postgresql", "2.7.0", "6.0"], + ["gt_all", "string", "postgresql", "2.6.5", "4.2"], + ["gt_all", "string", "postgresql", "2.6.5", "5.2"], + ["gt_all", "string", "postgresql", "2.6.5", "6.0"], + ["gt_all", "string", "postgresql", "2.5.7", "4.2"], + ["gt_all", "string", "postgresql", "2.5.7", "5.2"], + ["gt_all", "string", "postgresql", "2.5.7", "6.0"], + ["gt_all", "string", "postgresql", "2.4.9", "4.2"], + ["gt_all", "string", "postgresql", "2.4.9", "5.2"], + ["gt_all", "string", "postgresql", "2.4.9", "6.0"], + ["gt_all", "string", "mysql", "2.7.0", "4.2"], + ["gt_all", "string", "mysql", "2.7.0", "5.2"], + ["gt_all", "string", "mysql", "2.7.0", "6.0"], + ["gt_all", "string", "mysql", "2.6.5", "4.2"], + ["gt_all", "string", "mysql", "2.6.5", "5.2"], + ["gt_all", "string", "mysql", "2.6.5", "6.0"], + ["gt_all", "string", "mysql", "2.5.7", "4.2"], + ["gt_all", "string", "mysql", "2.5.7", "5.2"], + ["gt_all", "string", "mysql", "2.5.7", "6.0"], + ["gt_all", "string", "mysql", "2.4.9", "4.2"], + ["gt_all", "string", "mysql", "2.4.9", "5.2"], + ["gt_all", "string", "mysql", "2.4.9", "6.0"], + ["gt_all", "string", "sqlite", "2.7.0", "4.2"], + ["gt_all", "string", "sqlite", "2.7.0", "5.2"], + ["gt_all", "string", "sqlite", "2.7.0", "6.0"], + ["gt_all", "string", "sqlite", "2.6.5", "4.2"], + ["gt_all", "string", "sqlite", "2.6.5", "5.2"], + ["gt_all", "string", "sqlite", "2.6.5", "6.0"], + ["gt_all", "string", "sqlite", "2.5.7", "4.2"], + ["gt_all", "string", "sqlite", "2.5.7", "5.2"], + ["gt_all", "string", "sqlite", "2.5.7", "6.0"], + ["gt_all", "string", "sqlite", "2.4.9", "4.2"], + ["gt_all", "string", "sqlite", "2.4.9", "5.2"], + ["gt_all", "string", "sqlite", "2.4.9", "6.0"], + ["gt_all", "text", "postgresql", "2.7.0", "4.2"], + ["gt_all", "text", "postgresql", "2.7.0", "5.2"], + ["gt_all", "text", "postgresql", "2.7.0", "6.0"], + ["gt_all", "text", "postgresql", "2.6.5", "4.2"], + ["gt_all", "text", "postgresql", "2.6.5", "5.2"], + ["gt_all", "text", "postgresql", "2.6.5", "6.0"], + ["gt_all", "text", "postgresql", "2.5.7", "4.2"], + ["gt_all", "text", "postgresql", "2.5.7", "5.2"], + ["gt_all", "text", "postgresql", "2.5.7", "6.0"], + ["gt_all", "text", "postgresql", "2.4.9", "4.2"], + ["gt_all", "text", "postgresql", "2.4.9", "5.2"], + ["gt_all", "text", "postgresql", "2.4.9", "6.0"], + ["gt_all", "text", "mysql", "2.7.0", "4.2"], + ["gt_all", "text", "mysql", "2.7.0", "5.2"], + ["gt_all", "text", "mysql", "2.7.0", "6.0"], + ["gt_all", "text", "mysql", "2.6.5", "4.2"], + ["gt_all", "text", "mysql", "2.6.5", "5.2"], + ["gt_all", "text", "mysql", "2.6.5", "6.0"], + ["gt_all", "text", "mysql", "2.5.7", "4.2"], + ["gt_all", "text", "mysql", "2.5.7", "5.2"], + ["gt_all", "text", "mysql", "2.5.7", "6.0"], + ["gt_all", "text", "mysql", "2.4.9", "4.2"], + ["gt_all", "text", "mysql", "2.4.9", "5.2"], + ["gt_all", "text", "mysql", "2.4.9", "6.0"], + ["gt_all", "text", "sqlite", "2.7.0", "4.2"], + ["gt_all", "text", "sqlite", "2.7.0", "5.2"], + ["gt_all", "text", "sqlite", "2.7.0", "6.0"], + ["gt_all", "text", "sqlite", "2.6.5", "4.2"], + ["gt_all", "text", "sqlite", "2.6.5", "5.2"], + ["gt_all", "text", "sqlite", "2.6.5", "6.0"], + ["gt_all", "text", "sqlite", "2.5.7", "4.2"], + ["gt_all", "text", "sqlite", "2.5.7", "5.2"], + ["gt_all", "text", "sqlite", "2.5.7", "6.0"], + ["gt_all", "text", "sqlite", "2.4.9", "4.2"], + ["gt_all", "text", "sqlite", "2.4.9", "5.2"], + ["gt_all", "text", "sqlite", "2.4.9", "6.0"], + ["gt_all", "time", "postgresql", "2.7.0", "4.2"], + ["gt_all", "time", "postgresql", "2.7.0", "5.2"], + ["gt_all", "time", "postgresql", "2.7.0", "6.0"], + ["gt_all", "time", "postgresql", "2.6.5", "4.2"], + ["gt_all", "time", "postgresql", "2.6.5", "5.2"], + ["gt_all", "time", "postgresql", "2.6.5", "6.0"], + ["gt_all", "time", "postgresql", "2.5.7", "4.2"], + ["gt_all", "time", "postgresql", "2.5.7", "5.2"], + ["gt_all", "time", "postgresql", "2.5.7", "6.0"], + ["gt_all", "time", "postgresql", "2.4.9", "4.2"], + ["gt_all", "time", "postgresql", "2.4.9", "5.2"], + ["gt_all", "time", "postgresql", "2.4.9", "6.0"], + ["gt_all", "time", "mysql", "2.7.0", "4.2"], + ["gt_all", "time", "mysql", "2.7.0", "5.2"], + ["gt_all", "time", "mysql", "2.7.0", "6.0"], + ["gt_all", "time", "mysql", "2.6.5", "4.2"], + ["gt_all", "time", "mysql", "2.6.5", "5.2"], + ["gt_all", "time", "mysql", "2.6.5", "6.0"], + ["gt_all", "time", "mysql", "2.5.7", "4.2"], + ["gt_all", "time", "mysql", "2.5.7", "5.2"], + ["gt_all", "time", "mysql", "2.5.7", "6.0"], + ["gt_all", "time", "mysql", "2.4.9", "4.2"], + ["gt_all", "time", "mysql", "2.4.9", "5.2"], + ["gt_all", "time", "mysql", "2.4.9", "6.0"], + ["gt_all", "time", "sqlite", "2.7.0", "4.2"], + ["gt_all", "time", "sqlite", "2.7.0", "5.2"], + ["gt_all", "time", "sqlite", "2.7.0", "6.0"], + ["gt_all", "time", "sqlite", "2.6.5", "4.2"], + ["gt_all", "time", "sqlite", "2.6.5", "5.2"], + ["gt_all", "time", "sqlite", "2.6.5", "6.0"], + ["gt_all", "time", "sqlite", "2.5.7", "4.2"], + ["gt_all", "time", "sqlite", "2.5.7", "5.2"], + ["gt_all", "time", "sqlite", "2.5.7", "6.0"], + ["gt_all", "time", "sqlite", "2.4.9", "4.2"], + ["gt_all", "time", "sqlite", "2.4.9", "5.2"], + ["gt_all", "time", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "binary", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "binary", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "binary", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "binary", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "binary", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "binary", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "binary", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "binary", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "binary", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "binary", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "binary", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "binary", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "binary", "mysql", "2.7.0", "4.2"], + ["gteq_any", "binary", "mysql", "2.7.0", "5.2"], + ["gteq_any", "binary", "mysql", "2.7.0", "6.0"], + ["gteq_any", "binary", "mysql", "2.6.5", "4.2"], + ["gteq_any", "binary", "mysql", "2.6.5", "5.2"], + ["gteq_any", "binary", "mysql", "2.6.5", "6.0"], + ["gteq_any", "binary", "mysql", "2.5.7", "4.2"], + ["gteq_any", "binary", "mysql", "2.5.7", "5.2"], + ["gteq_any", "binary", "mysql", "2.5.7", "6.0"], + ["gteq_any", "binary", "mysql", "2.4.9", "4.2"], + ["gteq_any", "binary", "mysql", "2.4.9", "5.2"], + ["gteq_any", "binary", "mysql", "2.4.9", "6.0"], + ["gteq_any", "binary", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "binary", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "binary", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "binary", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "binary", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "binary", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "binary", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "binary", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "binary", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "binary", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "binary", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "binary", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "boolean", "mysql", "2.7.0", "4.2"], + ["gteq_any", "boolean", "mysql", "2.7.0", "5.2"], + ["gteq_any", "boolean", "mysql", "2.7.0", "6.0"], + ["gteq_any", "boolean", "mysql", "2.6.5", "4.2"], + ["gteq_any", "boolean", "mysql", "2.6.5", "5.2"], + ["gteq_any", "boolean", "mysql", "2.6.5", "6.0"], + ["gteq_any", "boolean", "mysql", "2.5.7", "4.2"], + ["gteq_any", "boolean", "mysql", "2.5.7", "5.2"], + ["gteq_any", "boolean", "mysql", "2.5.7", "6.0"], + ["gteq_any", "boolean", "mysql", "2.4.9", "4.2"], + ["gteq_any", "boolean", "mysql", "2.4.9", "5.2"], + ["gteq_any", "boolean", "mysql", "2.4.9", "6.0"], + ["gteq_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "date", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "date", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "date", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "date", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "date", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "date", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "date", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "date", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "date", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "date", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "date", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "date", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "date", "mysql", "2.7.0", "4.2"], + ["gteq_any", "date", "mysql", "2.7.0", "5.2"], + ["gteq_any", "date", "mysql", "2.7.0", "6.0"], + ["gteq_any", "date", "mysql", "2.6.5", "4.2"], + ["gteq_any", "date", "mysql", "2.6.5", "5.2"], + ["gteq_any", "date", "mysql", "2.6.5", "6.0"], + ["gteq_any", "date", "mysql", "2.5.7", "4.2"], + ["gteq_any", "date", "mysql", "2.5.7", "5.2"], + ["gteq_any", "date", "mysql", "2.5.7", "6.0"], + ["gteq_any", "date", "mysql", "2.4.9", "4.2"], + ["gteq_any", "date", "mysql", "2.4.9", "5.2"], + ["gteq_any", "date", "mysql", "2.4.9", "6.0"], + ["gteq_any", "date", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "date", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "date", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "date", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "date", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "date", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "date", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "date", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "date", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "date", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "date", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "date", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "datetime", "mysql", "2.7.0", "4.2"], + ["gteq_any", "datetime", "mysql", "2.7.0", "5.2"], + ["gteq_any", "datetime", "mysql", "2.7.0", "6.0"], + ["gteq_any", "datetime", "mysql", "2.6.5", "4.2"], + ["gteq_any", "datetime", "mysql", "2.6.5", "5.2"], + ["gteq_any", "datetime", "mysql", "2.6.5", "6.0"], + ["gteq_any", "datetime", "mysql", "2.5.7", "4.2"], + ["gteq_any", "datetime", "mysql", "2.5.7", "5.2"], + ["gteq_any", "datetime", "mysql", "2.5.7", "6.0"], + ["gteq_any", "datetime", "mysql", "2.4.9", "4.2"], + ["gteq_any", "datetime", "mysql", "2.4.9", "5.2"], + ["gteq_any", "datetime", "mysql", "2.4.9", "6.0"], + ["gteq_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "decimal", "mysql", "2.7.0", "4.2"], + ["gteq_any", "decimal", "mysql", "2.7.0", "5.2"], + ["gteq_any", "decimal", "mysql", "2.7.0", "6.0"], + ["gteq_any", "decimal", "mysql", "2.6.5", "4.2"], + ["gteq_any", "decimal", "mysql", "2.6.5", "5.2"], + ["gteq_any", "decimal", "mysql", "2.6.5", "6.0"], + ["gteq_any", "decimal", "mysql", "2.5.7", "4.2"], + ["gteq_any", "decimal", "mysql", "2.5.7", "5.2"], + ["gteq_any", "decimal", "mysql", "2.5.7", "6.0"], + ["gteq_any", "decimal", "mysql", "2.4.9", "4.2"], + ["gteq_any", "decimal", "mysql", "2.4.9", "5.2"], + ["gteq_any", "decimal", "mysql", "2.4.9", "6.0"], + ["gteq_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "float", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "float", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "float", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "float", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "float", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "float", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "float", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "float", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "float", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "float", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "float", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "float", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "float", "mysql", "2.7.0", "4.2"], + ["gteq_any", "float", "mysql", "2.7.0", "5.2"], + ["gteq_any", "float", "mysql", "2.7.0", "6.0"], + ["gteq_any", "float", "mysql", "2.6.5", "4.2"], + ["gteq_any", "float", "mysql", "2.6.5", "5.2"], + ["gteq_any", "float", "mysql", "2.6.5", "6.0"], + ["gteq_any", "float", "mysql", "2.5.7", "4.2"], + ["gteq_any", "float", "mysql", "2.5.7", "5.2"], + ["gteq_any", "float", "mysql", "2.5.7", "6.0"], + ["gteq_any", "float", "mysql", "2.4.9", "4.2"], + ["gteq_any", "float", "mysql", "2.4.9", "5.2"], + ["gteq_any", "float", "mysql", "2.4.9", "6.0"], + ["gteq_any", "float", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "float", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "float", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "float", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "float", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "float", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "float", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "float", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "float", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "float", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "float", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "float", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "integer", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "integer", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "integer", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "integer", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "integer", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "integer", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "integer", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "integer", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "integer", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "integer", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "integer", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "integer", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "integer", "mysql", "2.7.0", "4.2"], + ["gteq_any", "integer", "mysql", "2.7.0", "5.2"], + ["gteq_any", "integer", "mysql", "2.7.0", "6.0"], + ["gteq_any", "integer", "mysql", "2.6.5", "4.2"], + ["gteq_any", "integer", "mysql", "2.6.5", "5.2"], + ["gteq_any", "integer", "mysql", "2.6.5", "6.0"], + ["gteq_any", "integer", "mysql", "2.5.7", "4.2"], + ["gteq_any", "integer", "mysql", "2.5.7", "5.2"], + ["gteq_any", "integer", "mysql", "2.5.7", "6.0"], + ["gteq_any", "integer", "mysql", "2.4.9", "4.2"], + ["gteq_any", "integer", "mysql", "2.4.9", "5.2"], + ["gteq_any", "integer", "mysql", "2.4.9", "6.0"], + ["gteq_any", "integer", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "integer", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "integer", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "integer", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "integer", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "integer", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "integer", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "integer", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "integer", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "integer", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "integer", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "integer", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "string", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "string", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "string", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "string", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "string", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "string", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "string", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "string", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "string", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "string", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "string", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "string", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "string", "mysql", "2.7.0", "4.2"], + ["gteq_any", "string", "mysql", "2.7.0", "5.2"], + ["gteq_any", "string", "mysql", "2.7.0", "6.0"], + ["gteq_any", "string", "mysql", "2.6.5", "4.2"], + ["gteq_any", "string", "mysql", "2.6.5", "5.2"], + ["gteq_any", "string", "mysql", "2.6.5", "6.0"], + ["gteq_any", "string", "mysql", "2.5.7", "4.2"], + ["gteq_any", "string", "mysql", "2.5.7", "5.2"], + ["gteq_any", "string", "mysql", "2.5.7", "6.0"], + ["gteq_any", "string", "mysql", "2.4.9", "4.2"], + ["gteq_any", "string", "mysql", "2.4.9", "5.2"], + ["gteq_any", "string", "mysql", "2.4.9", "6.0"], + ["gteq_any", "string", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "string", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "string", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "string", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "string", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "string", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "string", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "string", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "string", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "string", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "string", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "string", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "text", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "text", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "text", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "text", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "text", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "text", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "text", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "text", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "text", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "text", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "text", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "text", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "text", "mysql", "2.7.0", "4.2"], + ["gteq_any", "text", "mysql", "2.7.0", "5.2"], + ["gteq_any", "text", "mysql", "2.7.0", "6.0"], + ["gteq_any", "text", "mysql", "2.6.5", "4.2"], + ["gteq_any", "text", "mysql", "2.6.5", "5.2"], + ["gteq_any", "text", "mysql", "2.6.5", "6.0"], + ["gteq_any", "text", "mysql", "2.5.7", "4.2"], + ["gteq_any", "text", "mysql", "2.5.7", "5.2"], + ["gteq_any", "text", "mysql", "2.5.7", "6.0"], + ["gteq_any", "text", "mysql", "2.4.9", "4.2"], + ["gteq_any", "text", "mysql", "2.4.9", "5.2"], + ["gteq_any", "text", "mysql", "2.4.9", "6.0"], + ["gteq_any", "text", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "text", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "text", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "text", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "text", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "text", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "text", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "text", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "text", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "text", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "text", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "text", "sqlite", "2.4.9", "6.0"], + ["gteq_any", "time", "postgresql", "2.7.0", "4.2"], + ["gteq_any", "time", "postgresql", "2.7.0", "5.2"], + ["gteq_any", "time", "postgresql", "2.7.0", "6.0"], + ["gteq_any", "time", "postgresql", "2.6.5", "4.2"], + ["gteq_any", "time", "postgresql", "2.6.5", "5.2"], + ["gteq_any", "time", "postgresql", "2.6.5", "6.0"], + ["gteq_any", "time", "postgresql", "2.5.7", "4.2"], + ["gteq_any", "time", "postgresql", "2.5.7", "5.2"], + ["gteq_any", "time", "postgresql", "2.5.7", "6.0"], + ["gteq_any", "time", "postgresql", "2.4.9", "4.2"], + ["gteq_any", "time", "postgresql", "2.4.9", "5.2"], + ["gteq_any", "time", "postgresql", "2.4.9", "6.0"], + ["gteq_any", "time", "mysql", "2.7.0", "4.2"], + ["gteq_any", "time", "mysql", "2.7.0", "5.2"], + ["gteq_any", "time", "mysql", "2.7.0", "6.0"], + ["gteq_any", "time", "mysql", "2.6.5", "4.2"], + ["gteq_any", "time", "mysql", "2.6.5", "5.2"], + ["gteq_any", "time", "mysql", "2.6.5", "6.0"], + ["gteq_any", "time", "mysql", "2.5.7", "4.2"], + ["gteq_any", "time", "mysql", "2.5.7", "5.2"], + ["gteq_any", "time", "mysql", "2.5.7", "6.0"], + ["gteq_any", "time", "mysql", "2.4.9", "4.2"], + ["gteq_any", "time", "mysql", "2.4.9", "5.2"], + ["gteq_any", "time", "mysql", "2.4.9", "6.0"], + ["gteq_any", "time", "sqlite", "2.7.0", "4.2"], + ["gteq_any", "time", "sqlite", "2.7.0", "5.2"], + ["gteq_any", "time", "sqlite", "2.7.0", "6.0"], + ["gteq_any", "time", "sqlite", "2.6.5", "4.2"], + ["gteq_any", "time", "sqlite", "2.6.5", "5.2"], + ["gteq_any", "time", "sqlite", "2.6.5", "6.0"], + ["gteq_any", "time", "sqlite", "2.5.7", "4.2"], + ["gteq_any", "time", "sqlite", "2.5.7", "5.2"], + ["gteq_any", "time", "sqlite", "2.5.7", "6.0"], + ["gteq_any", "time", "sqlite", "2.4.9", "4.2"], + ["gteq_any", "time", "sqlite", "2.4.9", "5.2"], + ["gteq_any", "time", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "binary", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "binary", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "binary", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "binary", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "binary", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "binary", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "binary", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "binary", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "binary", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "binary", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "binary", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "binary", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "binary", "mysql", "2.7.0", "4.2"], + ["gteq_all", "binary", "mysql", "2.7.0", "5.2"], + ["gteq_all", "binary", "mysql", "2.7.0", "6.0"], + ["gteq_all", "binary", "mysql", "2.6.5", "4.2"], + ["gteq_all", "binary", "mysql", "2.6.5", "5.2"], + ["gteq_all", "binary", "mysql", "2.6.5", "6.0"], + ["gteq_all", "binary", "mysql", "2.5.7", "4.2"], + ["gteq_all", "binary", "mysql", "2.5.7", "5.2"], + ["gteq_all", "binary", "mysql", "2.5.7", "6.0"], + ["gteq_all", "binary", "mysql", "2.4.9", "4.2"], + ["gteq_all", "binary", "mysql", "2.4.9", "5.2"], + ["gteq_all", "binary", "mysql", "2.4.9", "6.0"], + ["gteq_all", "binary", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "binary", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "binary", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "binary", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "binary", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "binary", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "binary", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "binary", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "binary", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "binary", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "binary", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "binary", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "boolean", "mysql", "2.7.0", "4.2"], + ["gteq_all", "boolean", "mysql", "2.7.0", "5.2"], + ["gteq_all", "boolean", "mysql", "2.7.0", "6.0"], + ["gteq_all", "boolean", "mysql", "2.6.5", "4.2"], + ["gteq_all", "boolean", "mysql", "2.6.5", "5.2"], + ["gteq_all", "boolean", "mysql", "2.6.5", "6.0"], + ["gteq_all", "boolean", "mysql", "2.5.7", "4.2"], + ["gteq_all", "boolean", "mysql", "2.5.7", "5.2"], + ["gteq_all", "boolean", "mysql", "2.5.7", "6.0"], + ["gteq_all", "boolean", "mysql", "2.4.9", "4.2"], + ["gteq_all", "boolean", "mysql", "2.4.9", "5.2"], + ["gteq_all", "boolean", "mysql", "2.4.9", "6.0"], + ["gteq_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "date", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "date", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "date", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "date", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "date", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "date", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "date", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "date", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "date", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "date", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "date", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "date", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "date", "mysql", "2.7.0", "4.2"], + ["gteq_all", "date", "mysql", "2.7.0", "5.2"], + ["gteq_all", "date", "mysql", "2.7.0", "6.0"], + ["gteq_all", "date", "mysql", "2.6.5", "4.2"], + ["gteq_all", "date", "mysql", "2.6.5", "5.2"], + ["gteq_all", "date", "mysql", "2.6.5", "6.0"], + ["gteq_all", "date", "mysql", "2.5.7", "4.2"], + ["gteq_all", "date", "mysql", "2.5.7", "5.2"], + ["gteq_all", "date", "mysql", "2.5.7", "6.0"], + ["gteq_all", "date", "mysql", "2.4.9", "4.2"], + ["gteq_all", "date", "mysql", "2.4.9", "5.2"], + ["gteq_all", "date", "mysql", "2.4.9", "6.0"], + ["gteq_all", "date", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "date", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "date", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "date", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "date", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "date", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "date", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "date", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "date", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "date", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "date", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "date", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "datetime", "mysql", "2.7.0", "4.2"], + ["gteq_all", "datetime", "mysql", "2.7.0", "5.2"], + ["gteq_all", "datetime", "mysql", "2.7.0", "6.0"], + ["gteq_all", "datetime", "mysql", "2.6.5", "4.2"], + ["gteq_all", "datetime", "mysql", "2.6.5", "5.2"], + ["gteq_all", "datetime", "mysql", "2.6.5", "6.0"], + ["gteq_all", "datetime", "mysql", "2.5.7", "4.2"], + ["gteq_all", "datetime", "mysql", "2.5.7", "5.2"], + ["gteq_all", "datetime", "mysql", "2.5.7", "6.0"], + ["gteq_all", "datetime", "mysql", "2.4.9", "4.2"], + ["gteq_all", "datetime", "mysql", "2.4.9", "5.2"], + ["gteq_all", "datetime", "mysql", "2.4.9", "6.0"], + ["gteq_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "decimal", "mysql", "2.7.0", "4.2"], + ["gteq_all", "decimal", "mysql", "2.7.0", "5.2"], + ["gteq_all", "decimal", "mysql", "2.7.0", "6.0"], + ["gteq_all", "decimal", "mysql", "2.6.5", "4.2"], + ["gteq_all", "decimal", "mysql", "2.6.5", "5.2"], + ["gteq_all", "decimal", "mysql", "2.6.5", "6.0"], + ["gteq_all", "decimal", "mysql", "2.5.7", "4.2"], + ["gteq_all", "decimal", "mysql", "2.5.7", "5.2"], + ["gteq_all", "decimal", "mysql", "2.5.7", "6.0"], + ["gteq_all", "decimal", "mysql", "2.4.9", "4.2"], + ["gteq_all", "decimal", "mysql", "2.4.9", "5.2"], + ["gteq_all", "decimal", "mysql", "2.4.9", "6.0"], + ["gteq_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "float", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "float", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "float", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "float", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "float", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "float", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "float", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "float", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "float", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "float", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "float", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "float", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "float", "mysql", "2.7.0", "4.2"], + ["gteq_all", "float", "mysql", "2.7.0", "5.2"], + ["gteq_all", "float", "mysql", "2.7.0", "6.0"], + ["gteq_all", "float", "mysql", "2.6.5", "4.2"], + ["gteq_all", "float", "mysql", "2.6.5", "5.2"], + ["gteq_all", "float", "mysql", "2.6.5", "6.0"], + ["gteq_all", "float", "mysql", "2.5.7", "4.2"], + ["gteq_all", "float", "mysql", "2.5.7", "5.2"], + ["gteq_all", "float", "mysql", "2.5.7", "6.0"], + ["gteq_all", "float", "mysql", "2.4.9", "4.2"], + ["gteq_all", "float", "mysql", "2.4.9", "5.2"], + ["gteq_all", "float", "mysql", "2.4.9", "6.0"], + ["gteq_all", "float", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "float", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "float", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "float", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "float", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "float", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "float", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "float", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "float", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "float", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "float", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "float", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "integer", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "integer", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "integer", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "integer", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "integer", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "integer", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "integer", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "integer", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "integer", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "integer", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "integer", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "integer", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "integer", "mysql", "2.7.0", "4.2"], + ["gteq_all", "integer", "mysql", "2.7.0", "5.2"], + ["gteq_all", "integer", "mysql", "2.7.0", "6.0"], + ["gteq_all", "integer", "mysql", "2.6.5", "4.2"], + ["gteq_all", "integer", "mysql", "2.6.5", "5.2"], + ["gteq_all", "integer", "mysql", "2.6.5", "6.0"], + ["gteq_all", "integer", "mysql", "2.5.7", "4.2"], + ["gteq_all", "integer", "mysql", "2.5.7", "5.2"], + ["gteq_all", "integer", "mysql", "2.5.7", "6.0"], + ["gteq_all", "integer", "mysql", "2.4.9", "4.2"], + ["gteq_all", "integer", "mysql", "2.4.9", "5.2"], + ["gteq_all", "integer", "mysql", "2.4.9", "6.0"], + ["gteq_all", "integer", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "integer", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "integer", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "integer", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "integer", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "integer", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "integer", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "integer", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "integer", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "integer", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "integer", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "integer", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "string", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "string", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "string", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "string", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "string", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "string", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "string", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "string", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "string", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "string", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "string", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "string", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "string", "mysql", "2.7.0", "4.2"], + ["gteq_all", "string", "mysql", "2.7.0", "5.2"], + ["gteq_all", "string", "mysql", "2.7.0", "6.0"], + ["gteq_all", "string", "mysql", "2.6.5", "4.2"], + ["gteq_all", "string", "mysql", "2.6.5", "5.2"], + ["gteq_all", "string", "mysql", "2.6.5", "6.0"], + ["gteq_all", "string", "mysql", "2.5.7", "4.2"], + ["gteq_all", "string", "mysql", "2.5.7", "5.2"], + ["gteq_all", "string", "mysql", "2.5.7", "6.0"], + ["gteq_all", "string", "mysql", "2.4.9", "4.2"], + ["gteq_all", "string", "mysql", "2.4.9", "5.2"], + ["gteq_all", "string", "mysql", "2.4.9", "6.0"], + ["gteq_all", "string", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "string", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "string", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "string", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "string", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "string", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "string", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "string", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "string", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "string", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "string", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "string", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "text", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "text", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "text", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "text", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "text", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "text", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "text", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "text", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "text", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "text", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "text", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "text", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "text", "mysql", "2.7.0", "4.2"], + ["gteq_all", "text", "mysql", "2.7.0", "5.2"], + ["gteq_all", "text", "mysql", "2.7.0", "6.0"], + ["gteq_all", "text", "mysql", "2.6.5", "4.2"], + ["gteq_all", "text", "mysql", "2.6.5", "5.2"], + ["gteq_all", "text", "mysql", "2.6.5", "6.0"], + ["gteq_all", "text", "mysql", "2.5.7", "4.2"], + ["gteq_all", "text", "mysql", "2.5.7", "5.2"], + ["gteq_all", "text", "mysql", "2.5.7", "6.0"], + ["gteq_all", "text", "mysql", "2.4.9", "4.2"], + ["gteq_all", "text", "mysql", "2.4.9", "5.2"], + ["gteq_all", "text", "mysql", "2.4.9", "6.0"], + ["gteq_all", "text", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "text", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "text", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "text", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "text", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "text", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "text", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "text", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "text", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "text", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "text", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "text", "sqlite", "2.4.9", "6.0"], + ["gteq_all", "time", "postgresql", "2.7.0", "4.2"], + ["gteq_all", "time", "postgresql", "2.7.0", "5.2"], + ["gteq_all", "time", "postgresql", "2.7.0", "6.0"], + ["gteq_all", "time", "postgresql", "2.6.5", "4.2"], + ["gteq_all", "time", "postgresql", "2.6.5", "5.2"], + ["gteq_all", "time", "postgresql", "2.6.5", "6.0"], + ["gteq_all", "time", "postgresql", "2.5.7", "4.2"], + ["gteq_all", "time", "postgresql", "2.5.7", "5.2"], + ["gteq_all", "time", "postgresql", "2.5.7", "6.0"], + ["gteq_all", "time", "postgresql", "2.4.9", "4.2"], + ["gteq_all", "time", "postgresql", "2.4.9", "5.2"], + ["gteq_all", "time", "postgresql", "2.4.9", "6.0"], + ["gteq_all", "time", "mysql", "2.7.0", "4.2"], + ["gteq_all", "time", "mysql", "2.7.0", "5.2"], + ["gteq_all", "time", "mysql", "2.7.0", "6.0"], + ["gteq_all", "time", "mysql", "2.6.5", "4.2"], + ["gteq_all", "time", "mysql", "2.6.5", "5.2"], + ["gteq_all", "time", "mysql", "2.6.5", "6.0"], + ["gteq_all", "time", "mysql", "2.5.7", "4.2"], + ["gteq_all", "time", "mysql", "2.5.7", "5.2"], + ["gteq_all", "time", "mysql", "2.5.7", "6.0"], + ["gteq_all", "time", "mysql", "2.4.9", "4.2"], + ["gteq_all", "time", "mysql", "2.4.9", "5.2"], + ["gteq_all", "time", "mysql", "2.4.9", "6.0"], + ["gteq_all", "time", "sqlite", "2.7.0", "4.2"], + ["gteq_all", "time", "sqlite", "2.7.0", "5.2"], + ["gteq_all", "time", "sqlite", "2.7.0", "6.0"], + ["gteq_all", "time", "sqlite", "2.6.5", "4.2"], + ["gteq_all", "time", "sqlite", "2.6.5", "5.2"], + ["gteq_all", "time", "sqlite", "2.6.5", "6.0"], + ["gteq_all", "time", "sqlite", "2.5.7", "4.2"], + ["gteq_all", "time", "sqlite", "2.5.7", "5.2"], + ["gteq_all", "time", "sqlite", "2.5.7", "6.0"], + ["gteq_all", "time", "sqlite", "2.4.9", "4.2"], + ["gteq_all", "time", "sqlite", "2.4.9", "5.2"], + ["gteq_all", "time", "sqlite", "2.4.9", "6.0"], + ["between", "binary", "postgresql", "2.7.0", "4.2"], + ["between", "binary", "postgresql", "2.7.0", "5.2"], + ["between", "binary", "postgresql", "2.7.0", "6.0"], + ["between", "binary", "postgresql", "2.6.5", "4.2"], + ["between", "binary", "postgresql", "2.6.5", "5.2"], + ["between", "binary", "postgresql", "2.6.5", "6.0"], + ["between", "binary", "postgresql", "2.5.7", "4.2"], + ["between", "binary", "postgresql", "2.5.7", "5.2"], + ["between", "binary", "postgresql", "2.5.7", "6.0"], + ["between", "binary", "postgresql", "2.4.9", "4.2"], + ["between", "binary", "postgresql", "2.4.9", "5.2"], + ["between", "binary", "postgresql", "2.4.9", "6.0"], + ["between", "binary", "mysql", "2.7.0", "4.2"], + ["between", "binary", "mysql", "2.7.0", "5.2"], + ["between", "binary", "mysql", "2.7.0", "6.0"], + ["between", "binary", "mysql", "2.6.5", "4.2"], + ["between", "binary", "mysql", "2.6.5", "5.2"], + ["between", "binary", "mysql", "2.6.5", "6.0"], + ["between", "binary", "mysql", "2.5.7", "4.2"], + ["between", "binary", "mysql", "2.5.7", "5.2"], + ["between", "binary", "mysql", "2.5.7", "6.0"], + ["between", "binary", "mysql", "2.4.9", "4.2"], + ["between", "binary", "mysql", "2.4.9", "5.2"], + ["between", "binary", "mysql", "2.4.9", "6.0"], + ["between", "binary", "sqlite", "2.7.0", "4.2"], + ["between", "binary", "sqlite", "2.7.0", "5.2"], + ["between", "binary", "sqlite", "2.7.0", "6.0"], + ["between", "binary", "sqlite", "2.6.5", "4.2"], + ["between", "binary", "sqlite", "2.6.5", "5.2"], + ["between", "binary", "sqlite", "2.6.5", "6.0"], + ["between", "binary", "sqlite", "2.5.7", "4.2"], + ["between", "binary", "sqlite", "2.5.7", "5.2"], + ["between", "binary", "sqlite", "2.5.7", "6.0"], + ["between", "binary", "sqlite", "2.4.9", "4.2"], + ["between", "binary", "sqlite", "2.4.9", "5.2"], + ["between", "binary", "sqlite", "2.4.9", "6.0"], + ["between", "boolean", "postgresql", "2.7.0", "4.2"], + ["between", "boolean", "postgresql", "2.7.0", "5.2"], + ["between", "boolean", "postgresql", "2.7.0", "6.0"], + ["between", "boolean", "postgresql", "2.6.5", "4.2"], + ["between", "boolean", "postgresql", "2.6.5", "5.2"], + ["between", "boolean", "postgresql", "2.6.5", "6.0"], + ["between", "boolean", "postgresql", "2.5.7", "4.2"], + ["between", "boolean", "postgresql", "2.5.7", "5.2"], + ["between", "boolean", "postgresql", "2.5.7", "6.0"], + ["between", "boolean", "postgresql", "2.4.9", "4.2"], + ["between", "boolean", "postgresql", "2.4.9", "5.2"], + ["between", "boolean", "postgresql", "2.4.9", "6.0"], + ["between", "boolean", "mysql", "2.7.0", "4.2"], + ["between", "boolean", "mysql", "2.7.0", "5.2"], + ["between", "boolean", "mysql", "2.7.0", "6.0"], + ["between", "boolean", "mysql", "2.6.5", "4.2"], + ["between", "boolean", "mysql", "2.6.5", "5.2"], + ["between", "boolean", "mysql", "2.6.5", "6.0"], + ["between", "boolean", "mysql", "2.5.7", "4.2"], + ["between", "boolean", "mysql", "2.5.7", "5.2"], + ["between", "boolean", "mysql", "2.5.7", "6.0"], + ["between", "boolean", "mysql", "2.4.9", "4.2"], + ["between", "boolean", "mysql", "2.4.9", "5.2"], + ["between", "boolean", "mysql", "2.4.9", "6.0"], + ["between", "boolean", "sqlite", "2.7.0", "4.2"], + ["between", "boolean", "sqlite", "2.7.0", "5.2"], + ["between", "boolean", "sqlite", "2.7.0", "6.0"], + ["between", "boolean", "sqlite", "2.6.5", "4.2"], + ["between", "boolean", "sqlite", "2.6.5", "5.2"], + ["between", "boolean", "sqlite", "2.6.5", "6.0"], + ["between", "boolean", "sqlite", "2.5.7", "4.2"], + ["between", "boolean", "sqlite", "2.5.7", "5.2"], + ["between", "boolean", "sqlite", "2.5.7", "6.0"], + ["between", "boolean", "sqlite", "2.4.9", "4.2"], + ["between", "boolean", "sqlite", "2.4.9", "5.2"], + ["between", "boolean", "sqlite", "2.4.9", "6.0"], + ["between", "date", "postgresql", "2.7.0", "4.2"], + ["between", "date", "postgresql", "2.7.0", "5.2"], + ["between", "date", "postgresql", "2.7.0", "6.0"], + ["between", "date", "postgresql", "2.6.5", "4.2"], + ["between", "date", "postgresql", "2.6.5", "5.2"], + ["between", "date", "postgresql", "2.6.5", "6.0"], + ["between", "date", "postgresql", "2.5.7", "4.2"], + ["between", "date", "postgresql", "2.5.7", "5.2"], + ["between", "date", "postgresql", "2.5.7", "6.0"], + ["between", "date", "postgresql", "2.4.9", "4.2"], + ["between", "date", "postgresql", "2.4.9", "5.2"], + ["between", "date", "postgresql", "2.4.9", "6.0"], + ["between", "date", "mysql", "2.7.0", "4.2"], + ["between", "date", "mysql", "2.7.0", "5.2"], + ["between", "date", "mysql", "2.7.0", "6.0"], + ["between", "date", "mysql", "2.6.5", "4.2"], + ["between", "date", "mysql", "2.6.5", "5.2"], + ["between", "date", "mysql", "2.6.5", "6.0"], + ["between", "date", "mysql", "2.5.7", "4.2"], + ["between", "date", "mysql", "2.5.7", "5.2"], + ["between", "date", "mysql", "2.5.7", "6.0"], + ["between", "date", "mysql", "2.4.9", "4.2"], + ["between", "date", "mysql", "2.4.9", "5.2"], + ["between", "date", "mysql", "2.4.9", "6.0"], + ["between", "date", "sqlite", "2.7.0", "4.2"], + ["between", "date", "sqlite", "2.7.0", "5.2"], + ["between", "date", "sqlite", "2.7.0", "6.0"], + ["between", "date", "sqlite", "2.6.5", "4.2"], + ["between", "date", "sqlite", "2.6.5", "5.2"], + ["between", "date", "sqlite", "2.6.5", "6.0"], + ["between", "date", "sqlite", "2.5.7", "4.2"], + ["between", "date", "sqlite", "2.5.7", "5.2"], + ["between", "date", "sqlite", "2.5.7", "6.0"], + ["between", "date", "sqlite", "2.4.9", "4.2"], + ["between", "date", "sqlite", "2.4.9", "5.2"], + ["between", "date", "sqlite", "2.4.9", "6.0"], + ["between", "datetime", "postgresql", "2.7.0", "4.2"], + ["between", "datetime", "postgresql", "2.7.0", "5.2"], + ["between", "datetime", "postgresql", "2.7.0", "6.0"], + ["between", "datetime", "postgresql", "2.6.5", "4.2"], + ["between", "datetime", "postgresql", "2.6.5", "5.2"], + ["between", "datetime", "postgresql", "2.6.5", "6.0"], + ["between", "datetime", "postgresql", "2.5.7", "4.2"], + ["between", "datetime", "postgresql", "2.5.7", "5.2"], + ["between", "datetime", "postgresql", "2.5.7", "6.0"], + ["between", "datetime", "postgresql", "2.4.9", "4.2"], + ["between", "datetime", "postgresql", "2.4.9", "5.2"], + ["between", "datetime", "postgresql", "2.4.9", "6.0"], + ["between", "datetime", "mysql", "2.7.0", "4.2"], + ["between", "datetime", "mysql", "2.7.0", "5.2"], + ["between", "datetime", "mysql", "2.7.0", "6.0"], + ["between", "datetime", "mysql", "2.6.5", "4.2"], + ["between", "datetime", "mysql", "2.6.5", "5.2"], + ["between", "datetime", "mysql", "2.6.5", "6.0"], + ["between", "datetime", "mysql", "2.5.7", "4.2"], + ["between", "datetime", "mysql", "2.5.7", "5.2"], + ["between", "datetime", "mysql", "2.5.7", "6.0"], + ["between", "datetime", "mysql", "2.4.9", "4.2"], + ["between", "datetime", "mysql", "2.4.9", "5.2"], + ["between", "datetime", "mysql", "2.4.9", "6.0"], + ["between", "datetime", "sqlite", "2.7.0", "4.2"], + ["between", "datetime", "sqlite", "2.7.0", "5.2"], + ["between", "datetime", "sqlite", "2.7.0", "6.0"], + ["between", "datetime", "sqlite", "2.6.5", "4.2"], + ["between", "datetime", "sqlite", "2.6.5", "5.2"], + ["between", "datetime", "sqlite", "2.6.5", "6.0"], + ["between", "datetime", "sqlite", "2.5.7", "4.2"], + ["between", "datetime", "sqlite", "2.5.7", "5.2"], + ["between", "datetime", "sqlite", "2.5.7", "6.0"], + ["between", "datetime", "sqlite", "2.4.9", "4.2"], + ["between", "datetime", "sqlite", "2.4.9", "5.2"], + ["between", "datetime", "sqlite", "2.4.9", "6.0"], + ["between", "decimal", "postgresql", "2.7.0", "4.2"], + ["between", "decimal", "postgresql", "2.7.0", "5.2"], + ["between", "decimal", "postgresql", "2.7.0", "6.0"], + ["between", "decimal", "postgresql", "2.6.5", "4.2"], + ["between", "decimal", "postgresql", "2.6.5", "5.2"], + ["between", "decimal", "postgresql", "2.6.5", "6.0"], + ["between", "decimal", "postgresql", "2.5.7", "4.2"], + ["between", "decimal", "postgresql", "2.5.7", "5.2"], + ["between", "decimal", "postgresql", "2.5.7", "6.0"], + ["between", "decimal", "postgresql", "2.4.9", "4.2"], + ["between", "decimal", "postgresql", "2.4.9", "5.2"], + ["between", "decimal", "postgresql", "2.4.9", "6.0"], + ["between", "decimal", "mysql", "2.7.0", "4.2"], + ["between", "decimal", "mysql", "2.7.0", "5.2"], + ["between", "decimal", "mysql", "2.7.0", "6.0"], + ["between", "decimal", "mysql", "2.6.5", "4.2"], + ["between", "decimal", "mysql", "2.6.5", "5.2"], + ["between", "decimal", "mysql", "2.6.5", "6.0"], + ["between", "decimal", "mysql", "2.5.7", "4.2"], + ["between", "decimal", "mysql", "2.5.7", "5.2"], + ["between", "decimal", "mysql", "2.5.7", "6.0"], + ["between", "decimal", "mysql", "2.4.9", "4.2"], + ["between", "decimal", "mysql", "2.4.9", "5.2"], + ["between", "decimal", "mysql", "2.4.9", "6.0"], + ["between", "decimal", "sqlite", "2.7.0", "4.2"], + ["between", "decimal", "sqlite", "2.7.0", "5.2"], + ["between", "decimal", "sqlite", "2.7.0", "6.0"], + ["between", "decimal", "sqlite", "2.6.5", "4.2"], + ["between", "decimal", "sqlite", "2.6.5", "5.2"], + ["between", "decimal", "sqlite", "2.6.5", "6.0"], + ["between", "decimal", "sqlite", "2.5.7", "4.2"], + ["between", "decimal", "sqlite", "2.5.7", "5.2"], + ["between", "decimal", "sqlite", "2.5.7", "6.0"], + ["between", "decimal", "sqlite", "2.4.9", "4.2"], + ["between", "decimal", "sqlite", "2.4.9", "5.2"], + ["between", "decimal", "sqlite", "2.4.9", "6.0"], + ["between", "float", "postgresql", "2.7.0", "4.2"], + ["between", "float", "postgresql", "2.7.0", "5.2"], + ["between", "float", "postgresql", "2.7.0", "6.0"], + ["between", "float", "postgresql", "2.6.5", "4.2"], + ["between", "float", "postgresql", "2.6.5", "5.2"], + ["between", "float", "postgresql", "2.6.5", "6.0"], + ["between", "float", "postgresql", "2.5.7", "4.2"], + ["between", "float", "postgresql", "2.5.7", "5.2"], + ["between", "float", "postgresql", "2.5.7", "6.0"], + ["between", "float", "postgresql", "2.4.9", "4.2"], + ["between", "float", "postgresql", "2.4.9", "5.2"], + ["between", "float", "postgresql", "2.4.9", "6.0"], + ["between", "float", "mysql", "2.7.0", "4.2"], + ["between", "float", "mysql", "2.7.0", "5.2"], + ["between", "float", "mysql", "2.7.0", "6.0"], + ["between", "float", "mysql", "2.6.5", "4.2"], + ["between", "float", "mysql", "2.6.5", "5.2"], + ["between", "float", "mysql", "2.6.5", "6.0"], + ["between", "float", "mysql", "2.5.7", "4.2"], + ["between", "float", "mysql", "2.5.7", "5.2"], + ["between", "float", "mysql", "2.5.7", "6.0"], + ["between", "float", "mysql", "2.4.9", "4.2"], + ["between", "float", "mysql", "2.4.9", "5.2"], + ["between", "float", "mysql", "2.4.9", "6.0"], + ["between", "float", "sqlite", "2.7.0", "4.2"], + ["between", "float", "sqlite", "2.7.0", "5.2"], + ["between", "float", "sqlite", "2.7.0", "6.0"], + ["between", "float", "sqlite", "2.6.5", "4.2"], + ["between", "float", "sqlite", "2.6.5", "5.2"], + ["between", "float", "sqlite", "2.6.5", "6.0"], + ["between", "float", "sqlite", "2.5.7", "4.2"], + ["between", "float", "sqlite", "2.5.7", "5.2"], + ["between", "float", "sqlite", "2.5.7", "6.0"], + ["between", "float", "sqlite", "2.4.9", "4.2"], + ["between", "float", "sqlite", "2.4.9", "5.2"], + ["between", "float", "sqlite", "2.4.9", "6.0"], + ["between", "integer", "postgresql", "2.7.0", "4.2"], + ["between", "integer", "postgresql", "2.7.0", "5.2"], + ["between", "integer", "postgresql", "2.7.0", "6.0"], + ["between", "integer", "postgresql", "2.6.5", "4.2"], + ["between", "integer", "postgresql", "2.6.5", "5.2"], + ["between", "integer", "postgresql", "2.6.5", "6.0"], + ["between", "integer", "postgresql", "2.5.7", "4.2"], + ["between", "integer", "postgresql", "2.5.7", "5.2"], + ["between", "integer", "postgresql", "2.5.7", "6.0"], + ["between", "integer", "postgresql", "2.4.9", "4.2"], + ["between", "integer", "postgresql", "2.4.9", "5.2"], + ["between", "integer", "postgresql", "2.4.9", "6.0"], + ["between", "integer", "mysql", "2.7.0", "4.2"], + ["between", "integer", "mysql", "2.7.0", "5.2"], + ["between", "integer", "mysql", "2.7.0", "6.0"], + ["between", "integer", "mysql", "2.6.5", "4.2"], + ["between", "integer", "mysql", "2.6.5", "5.2"], + ["between", "integer", "mysql", "2.6.5", "6.0"], + ["between", "integer", "mysql", "2.5.7", "4.2"], + ["between", "integer", "mysql", "2.5.7", "5.2"], + ["between", "integer", "mysql", "2.5.7", "6.0"], + ["between", "integer", "mysql", "2.4.9", "4.2"], + ["between", "integer", "mysql", "2.4.9", "5.2"], + ["between", "integer", "mysql", "2.4.9", "6.0"], + ["between", "integer", "sqlite", "2.7.0", "4.2"], + ["between", "integer", "sqlite", "2.7.0", "5.2"], + ["between", "integer", "sqlite", "2.7.0", "6.0"], + ["between", "integer", "sqlite", "2.6.5", "4.2"], + ["between", "integer", "sqlite", "2.6.5", "5.2"], + ["between", "integer", "sqlite", "2.6.5", "6.0"], + ["between", "integer", "sqlite", "2.5.7", "4.2"], + ["between", "integer", "sqlite", "2.5.7", "5.2"], + ["between", "integer", "sqlite", "2.5.7", "6.0"], + ["between", "integer", "sqlite", "2.4.9", "4.2"], + ["between", "integer", "sqlite", "2.4.9", "5.2"], + ["between", "integer", "sqlite", "2.4.9", "6.0"], + ["between", "string", "postgresql", "2.7.0", "4.2"], + ["between", "string", "postgresql", "2.7.0", "5.2"], + ["between", "string", "postgresql", "2.7.0", "6.0"], + ["between", "string", "postgresql", "2.6.5", "4.2"], + ["between", "string", "postgresql", "2.6.5", "5.2"], + ["between", "string", "postgresql", "2.6.5", "6.0"], + ["between", "string", "postgresql", "2.5.7", "4.2"], + ["between", "string", "postgresql", "2.5.7", "5.2"], + ["between", "string", "postgresql", "2.5.7", "6.0"], + ["between", "string", "postgresql", "2.4.9", "4.2"], + ["between", "string", "postgresql", "2.4.9", "5.2"], + ["between", "string", "postgresql", "2.4.9", "6.0"], + ["between", "string", "mysql", "2.7.0", "4.2"], + ["between", "string", "mysql", "2.7.0", "5.2"], + ["between", "string", "mysql", "2.7.0", "6.0"], + ["between", "string", "mysql", "2.6.5", "4.2"], + ["between", "string", "mysql", "2.6.5", "5.2"], + ["between", "string", "mysql", "2.6.5", "6.0"], + ["between", "string", "mysql", "2.5.7", "4.2"], + ["between", "string", "mysql", "2.5.7", "5.2"], + ["between", "string", "mysql", "2.5.7", "6.0"], + ["between", "string", "mysql", "2.4.9", "4.2"], + ["between", "string", "mysql", "2.4.9", "5.2"], + ["between", "string", "mysql", "2.4.9", "6.0"], + ["between", "string", "sqlite", "2.7.0", "4.2"], + ["between", "string", "sqlite", "2.7.0", "5.2"], + ["between", "string", "sqlite", "2.7.0", "6.0"], + ["between", "string", "sqlite", "2.6.5", "4.2"], + ["between", "string", "sqlite", "2.6.5", "5.2"], + ["between", "string", "sqlite", "2.6.5", "6.0"], + ["between", "string", "sqlite", "2.5.7", "4.2"], + ["between", "string", "sqlite", "2.5.7", "5.2"], + ["between", "string", "sqlite", "2.5.7", "6.0"], + ["between", "string", "sqlite", "2.4.9", "4.2"], + ["between", "string", "sqlite", "2.4.9", "5.2"], + ["between", "string", "sqlite", "2.4.9", "6.0"], + ["between", "text", "postgresql", "2.7.0", "4.2"], + ["between", "text", "postgresql", "2.7.0", "5.2"], + ["between", "text", "postgresql", "2.7.0", "6.0"], + ["between", "text", "postgresql", "2.6.5", "4.2"], + ["between", "text", "postgresql", "2.6.5", "5.2"], + ["between", "text", "postgresql", "2.6.5", "6.0"], + ["between", "text", "postgresql", "2.5.7", "4.2"], + ["between", "text", "postgresql", "2.5.7", "5.2"], + ["between", "text", "postgresql", "2.5.7", "6.0"], + ["between", "text", "postgresql", "2.4.9", "4.2"], + ["between", "text", "postgresql", "2.4.9", "5.2"], + ["between", "text", "postgresql", "2.4.9", "6.0"], + ["between", "text", "mysql", "2.7.0", "4.2"], + ["between", "text", "mysql", "2.7.0", "5.2"], + ["between", "text", "mysql", "2.7.0", "6.0"], + ["between", "text", "mysql", "2.6.5", "4.2"], + ["between", "text", "mysql", "2.6.5", "5.2"], + ["between", "text", "mysql", "2.6.5", "6.0"], + ["between", "text", "mysql", "2.5.7", "4.2"], + ["between", "text", "mysql", "2.5.7", "5.2"], + ["between", "text", "mysql", "2.5.7", "6.0"], + ["between", "text", "mysql", "2.4.9", "4.2"], + ["between", "text", "mysql", "2.4.9", "5.2"], + ["between", "text", "mysql", "2.4.9", "6.0"], + ["between", "text", "sqlite", "2.7.0", "4.2"], + ["between", "text", "sqlite", "2.7.0", "5.2"], + ["between", "text", "sqlite", "2.7.0", "6.0"], + ["between", "text", "sqlite", "2.6.5", "4.2"], + ["between", "text", "sqlite", "2.6.5", "5.2"], + ["between", "text", "sqlite", "2.6.5", "6.0"], + ["between", "text", "sqlite", "2.5.7", "4.2"], + ["between", "text", "sqlite", "2.5.7", "5.2"], + ["between", "text", "sqlite", "2.5.7", "6.0"], + ["between", "text", "sqlite", "2.4.9", "4.2"], + ["between", "text", "sqlite", "2.4.9", "5.2"], + ["between", "text", "sqlite", "2.4.9", "6.0"], + ["between", "time", "postgresql", "2.7.0", "4.2"], + ["between", "time", "postgresql", "2.7.0", "5.2"], + ["between", "time", "postgresql", "2.7.0", "6.0"], + ["between", "time", "postgresql", "2.6.5", "4.2"], + ["between", "time", "postgresql", "2.6.5", "5.2"], + ["between", "time", "postgresql", "2.6.5", "6.0"], + ["between", "time", "postgresql", "2.5.7", "4.2"], + ["between", "time", "postgresql", "2.5.7", "5.2"], + ["between", "time", "postgresql", "2.5.7", "6.0"], + ["between", "time", "postgresql", "2.4.9", "4.2"], + ["between", "time", "postgresql", "2.4.9", "5.2"], + ["between", "time", "postgresql", "2.4.9", "6.0"], + ["between", "time", "mysql", "2.7.0", "4.2"], + ["between", "time", "mysql", "2.7.0", "5.2"], + ["between", "time", "mysql", "2.7.0", "6.0"], + ["between", "time", "mysql", "2.6.5", "4.2"], + ["between", "time", "mysql", "2.6.5", "5.2"], + ["between", "time", "mysql", "2.6.5", "6.0"], + ["between", "time", "mysql", "2.5.7", "4.2"], + ["between", "time", "mysql", "2.5.7", "5.2"], + ["between", "time", "mysql", "2.5.7", "6.0"], + ["between", "time", "mysql", "2.4.9", "4.2"], + ["between", "time", "mysql", "2.4.9", "5.2"], + ["between", "time", "mysql", "2.4.9", "6.0"], + ["between", "time", "sqlite", "2.7.0", "4.2"], + ["between", "time", "sqlite", "2.7.0", "5.2"], + ["between", "time", "sqlite", "2.7.0", "6.0"], + ["between", "time", "sqlite", "2.6.5", "4.2"], + ["between", "time", "sqlite", "2.6.5", "5.2"], + ["between", "time", "sqlite", "2.6.5", "6.0"], + ["between", "time", "sqlite", "2.5.7", "4.2"], + ["between", "time", "sqlite", "2.5.7", "5.2"], + ["between", "time", "sqlite", "2.5.7", "6.0"], + ["between", "time", "sqlite", "2.4.9", "4.2"], + ["between", "time", "sqlite", "2.4.9", "5.2"], + ["between", "time", "sqlite", "2.4.9", "6.0"], + ["not_between", "binary", "postgresql", "2.7.0", "4.2"], + ["not_between", "binary", "postgresql", "2.7.0", "5.2"], + ["not_between", "binary", "postgresql", "2.7.0", "6.0"], + ["not_between", "binary", "postgresql", "2.6.5", "4.2"], + ["not_between", "binary", "postgresql", "2.6.5", "5.2"], + ["not_between", "binary", "postgresql", "2.6.5", "6.0"], + ["not_between", "binary", "postgresql", "2.5.7", "4.2"], + ["not_between", "binary", "postgresql", "2.5.7", "5.2"], + ["not_between", "binary", "postgresql", "2.5.7", "6.0"], + ["not_between", "binary", "postgresql", "2.4.9", "4.2"], + ["not_between", "binary", "postgresql", "2.4.9", "5.2"], + ["not_between", "binary", "postgresql", "2.4.9", "6.0"], + ["not_between", "binary", "mysql", "2.7.0", "4.2"], + ["not_between", "binary", "mysql", "2.7.0", "5.2"], + ["not_between", "binary", "mysql", "2.7.0", "6.0"], + ["not_between", "binary", "mysql", "2.6.5", "4.2"], + ["not_between", "binary", "mysql", "2.6.5", "5.2"], + ["not_between", "binary", "mysql", "2.6.5", "6.0"], + ["not_between", "binary", "mysql", "2.5.7", "4.2"], + ["not_between", "binary", "mysql", "2.5.7", "5.2"], + ["not_between", "binary", "mysql", "2.5.7", "6.0"], + ["not_between", "binary", "mysql", "2.4.9", "4.2"], + ["not_between", "binary", "mysql", "2.4.9", "5.2"], + ["not_between", "binary", "mysql", "2.4.9", "6.0"], + ["not_between", "binary", "sqlite", "2.7.0", "4.2"], + ["not_between", "binary", "sqlite", "2.7.0", "5.2"], + ["not_between", "binary", "sqlite", "2.7.0", "6.0"], + ["not_between", "binary", "sqlite", "2.6.5", "4.2"], + ["not_between", "binary", "sqlite", "2.6.5", "5.2"], + ["not_between", "binary", "sqlite", "2.6.5", "6.0"], + ["not_between", "binary", "sqlite", "2.5.7", "4.2"], + ["not_between", "binary", "sqlite", "2.5.7", "5.2"], + ["not_between", "binary", "sqlite", "2.5.7", "6.0"], + ["not_between", "binary", "sqlite", "2.4.9", "4.2"], + ["not_between", "binary", "sqlite", "2.4.9", "5.2"], + ["not_between", "binary", "sqlite", "2.4.9", "6.0"], + ["not_between", "boolean", "postgresql", "2.7.0", "4.2"], + ["not_between", "boolean", "postgresql", "2.7.0", "5.2"], + ["not_between", "boolean", "postgresql", "2.7.0", "6.0"], + ["not_between", "boolean", "postgresql", "2.6.5", "4.2"], + ["not_between", "boolean", "postgresql", "2.6.5", "5.2"], + ["not_between", "boolean", "postgresql", "2.6.5", "6.0"], + ["not_between", "boolean", "postgresql", "2.5.7", "4.2"], + ["not_between", "boolean", "postgresql", "2.5.7", "5.2"], + ["not_between", "boolean", "postgresql", "2.5.7", "6.0"], + ["not_between", "boolean", "postgresql", "2.4.9", "4.2"], + ["not_between", "boolean", "postgresql", "2.4.9", "5.2"], + ["not_between", "boolean", "postgresql", "2.4.9", "6.0"], + ["not_between", "boolean", "mysql", "2.7.0", "4.2"], + ["not_between", "boolean", "mysql", "2.7.0", "5.2"], + ["not_between", "boolean", "mysql", "2.7.0", "6.0"], + ["not_between", "boolean", "mysql", "2.6.5", "4.2"], + ["not_between", "boolean", "mysql", "2.6.5", "5.2"], + ["not_between", "boolean", "mysql", "2.6.5", "6.0"], + ["not_between", "boolean", "mysql", "2.5.7", "4.2"], + ["not_between", "boolean", "mysql", "2.5.7", "5.2"], + ["not_between", "boolean", "mysql", "2.5.7", "6.0"], + ["not_between", "boolean", "mysql", "2.4.9", "4.2"], + ["not_between", "boolean", "mysql", "2.4.9", "5.2"], + ["not_between", "boolean", "mysql", "2.4.9", "6.0"], + ["not_between", "boolean", "sqlite", "2.7.0", "4.2"], + ["not_between", "boolean", "sqlite", "2.7.0", "5.2"], + ["not_between", "boolean", "sqlite", "2.7.0", "6.0"], + ["not_between", "boolean", "sqlite", "2.6.5", "4.2"], + ["not_between", "boolean", "sqlite", "2.6.5", "5.2"], + ["not_between", "boolean", "sqlite", "2.6.5", "6.0"], + ["not_between", "boolean", "sqlite", "2.5.7", "4.2"], + ["not_between", "boolean", "sqlite", "2.5.7", "5.2"], + ["not_between", "boolean", "sqlite", "2.5.7", "6.0"], + ["not_between", "boolean", "sqlite", "2.4.9", "4.2"], + ["not_between", "boolean", "sqlite", "2.4.9", "5.2"], + ["not_between", "boolean", "sqlite", "2.4.9", "6.0"], + ["not_between", "date", "postgresql", "2.7.0", "4.2"], + ["not_between", "date", "postgresql", "2.7.0", "5.2"], + ["not_between", "date", "postgresql", "2.7.0", "6.0"], + ["not_between", "date", "postgresql", "2.6.5", "4.2"], + ["not_between", "date", "postgresql", "2.6.5", "5.2"], + ["not_between", "date", "postgresql", "2.6.5", "6.0"], + ["not_between", "date", "postgresql", "2.5.7", "4.2"], + ["not_between", "date", "postgresql", "2.5.7", "5.2"], + ["not_between", "date", "postgresql", "2.5.7", "6.0"], + ["not_between", "date", "postgresql", "2.4.9", "4.2"], + ["not_between", "date", "postgresql", "2.4.9", "5.2"], + ["not_between", "date", "postgresql", "2.4.9", "6.0"], + ["not_between", "date", "mysql", "2.7.0", "4.2"], + ["not_between", "date", "mysql", "2.7.0", "5.2"], + ["not_between", "date", "mysql", "2.7.0", "6.0"], + ["not_between", "date", "mysql", "2.6.5", "4.2"], + ["not_between", "date", "mysql", "2.6.5", "5.2"], + ["not_between", "date", "mysql", "2.6.5", "6.0"], + ["not_between", "date", "mysql", "2.5.7", "4.2"], + ["not_between", "date", "mysql", "2.5.7", "5.2"], + ["not_between", "date", "mysql", "2.5.7", "6.0"], + ["not_between", "date", "mysql", "2.4.9", "4.2"], + ["not_between", "date", "mysql", "2.4.9", "5.2"], + ["not_between", "date", "mysql", "2.4.9", "6.0"], + ["not_between", "date", "sqlite", "2.7.0", "4.2"], + ["not_between", "date", "sqlite", "2.7.0", "5.2"], + ["not_between", "date", "sqlite", "2.7.0", "6.0"], + ["not_between", "date", "sqlite", "2.6.5", "4.2"], + ["not_between", "date", "sqlite", "2.6.5", "5.2"], + ["not_between", "date", "sqlite", "2.6.5", "6.0"], + ["not_between", "date", "sqlite", "2.5.7", "4.2"], + ["not_between", "date", "sqlite", "2.5.7", "5.2"], + ["not_between", "date", "sqlite", "2.5.7", "6.0"], + ["not_between", "date", "sqlite", "2.4.9", "4.2"], + ["not_between", "date", "sqlite", "2.4.9", "5.2"], + ["not_between", "date", "sqlite", "2.4.9", "6.0"], + ["not_between", "datetime", "postgresql", "2.7.0", "4.2"], + ["not_between", "datetime", "postgresql", "2.7.0", "5.2"], + ["not_between", "datetime", "postgresql", "2.7.0", "6.0"], + ["not_between", "datetime", "postgresql", "2.6.5", "4.2"], + ["not_between", "datetime", "postgresql", "2.6.5", "5.2"], + ["not_between", "datetime", "postgresql", "2.6.5", "6.0"], + ["not_between", "datetime", "postgresql", "2.5.7", "4.2"], + ["not_between", "datetime", "postgresql", "2.5.7", "5.2"], + ["not_between", "datetime", "postgresql", "2.5.7", "6.0"], + ["not_between", "datetime", "postgresql", "2.4.9", "4.2"], + ["not_between", "datetime", "postgresql", "2.4.9", "5.2"], + ["not_between", "datetime", "postgresql", "2.4.9", "6.0"], + ["not_between", "datetime", "mysql", "2.7.0", "4.2"], + ["not_between", "datetime", "mysql", "2.7.0", "5.2"], + ["not_between", "datetime", "mysql", "2.7.0", "6.0"], + ["not_between", "datetime", "mysql", "2.6.5", "4.2"], + ["not_between", "datetime", "mysql", "2.6.5", "5.2"], + ["not_between", "datetime", "mysql", "2.6.5", "6.0"], + ["not_between", "datetime", "mysql", "2.5.7", "4.2"], + ["not_between", "datetime", "mysql", "2.5.7", "5.2"], + ["not_between", "datetime", "mysql", "2.5.7", "6.0"], + ["not_between", "datetime", "mysql", "2.4.9", "4.2"], + ["not_between", "datetime", "mysql", "2.4.9", "5.2"], + ["not_between", "datetime", "mysql", "2.4.9", "6.0"], + ["not_between", "datetime", "sqlite", "2.7.0", "4.2"], + ["not_between", "datetime", "sqlite", "2.7.0", "5.2"], + ["not_between", "datetime", "sqlite", "2.7.0", "6.0"], + ["not_between", "datetime", "sqlite", "2.6.5", "4.2"], + ["not_between", "datetime", "sqlite", "2.6.5", "5.2"], + ["not_between", "datetime", "sqlite", "2.6.5", "6.0"], + ["not_between", "datetime", "sqlite", "2.5.7", "4.2"], + ["not_between", "datetime", "sqlite", "2.5.7", "5.2"], + ["not_between", "datetime", "sqlite", "2.5.7", "6.0"], + ["not_between", "datetime", "sqlite", "2.4.9", "4.2"], + ["not_between", "datetime", "sqlite", "2.4.9", "5.2"], + ["not_between", "datetime", "sqlite", "2.4.9", "6.0"], + ["not_between", "decimal", "postgresql", "2.7.0", "4.2"], + ["not_between", "decimal", "postgresql", "2.7.0", "5.2"], + ["not_between", "decimal", "postgresql", "2.7.0", "6.0"], + ["not_between", "decimal", "postgresql", "2.6.5", "4.2"], + ["not_between", "decimal", "postgresql", "2.6.5", "5.2"], + ["not_between", "decimal", "postgresql", "2.6.5", "6.0"], + ["not_between", "decimal", "postgresql", "2.5.7", "4.2"], + ["not_between", "decimal", "postgresql", "2.5.7", "5.2"], + ["not_between", "decimal", "postgresql", "2.5.7", "6.0"], + ["not_between", "decimal", "postgresql", "2.4.9", "4.2"], + ["not_between", "decimal", "postgresql", "2.4.9", "5.2"], + ["not_between", "decimal", "postgresql", "2.4.9", "6.0"], + ["not_between", "decimal", "mysql", "2.7.0", "4.2"], + ["not_between", "decimal", "mysql", "2.7.0", "5.2"], + ["not_between", "decimal", "mysql", "2.7.0", "6.0"], + ["not_between", "decimal", "mysql", "2.6.5", "4.2"], + ["not_between", "decimal", "mysql", "2.6.5", "5.2"], + ["not_between", "decimal", "mysql", "2.6.5", "6.0"], + ["not_between", "decimal", "mysql", "2.5.7", "4.2"], + ["not_between", "decimal", "mysql", "2.5.7", "5.2"], + ["not_between", "decimal", "mysql", "2.5.7", "6.0"], + ["not_between", "decimal", "mysql", "2.4.9", "4.2"], + ["not_between", "decimal", "mysql", "2.4.9", "5.2"], + ["not_between", "decimal", "mysql", "2.4.9", "6.0"], + ["not_between", "decimal", "sqlite", "2.7.0", "4.2"], + ["not_between", "decimal", "sqlite", "2.7.0", "5.2"], + ["not_between", "decimal", "sqlite", "2.7.0", "6.0"], + ["not_between", "decimal", "sqlite", "2.6.5", "4.2"], + ["not_between", "decimal", "sqlite", "2.6.5", "5.2"], + ["not_between", "decimal", "sqlite", "2.6.5", "6.0"], + ["not_between", "decimal", "sqlite", "2.5.7", "4.2"], + ["not_between", "decimal", "sqlite", "2.5.7", "5.2"], + ["not_between", "decimal", "sqlite", "2.5.7", "6.0"], + ["not_between", "decimal", "sqlite", "2.4.9", "4.2"], + ["not_between", "decimal", "sqlite", "2.4.9", "5.2"], + ["not_between", "decimal", "sqlite", "2.4.9", "6.0"], + ["not_between", "float", "postgresql", "2.7.0", "4.2"], + ["not_between", "float", "postgresql", "2.7.0", "5.2"], + ["not_between", "float", "postgresql", "2.7.0", "6.0"], + ["not_between", "float", "postgresql", "2.6.5", "4.2"], + ["not_between", "float", "postgresql", "2.6.5", "5.2"], + ["not_between", "float", "postgresql", "2.6.5", "6.0"], + ["not_between", "float", "postgresql", "2.5.7", "4.2"], + ["not_between", "float", "postgresql", "2.5.7", "5.2"], + ["not_between", "float", "postgresql", "2.5.7", "6.0"], + ["not_between", "float", "postgresql", "2.4.9", "4.2"], + ["not_between", "float", "postgresql", "2.4.9", "5.2"], + ["not_between", "float", "postgresql", "2.4.9", "6.0"], + ["not_between", "float", "mysql", "2.7.0", "4.2"], + ["not_between", "float", "mysql", "2.7.0", "5.2"], + ["not_between", "float", "mysql", "2.7.0", "6.0"], + ["not_between", "float", "mysql", "2.6.5", "4.2"], + ["not_between", "float", "mysql", "2.6.5", "5.2"], + ["not_between", "float", "mysql", "2.6.5", "6.0"], + ["not_between", "float", "mysql", "2.5.7", "4.2"], + ["not_between", "float", "mysql", "2.5.7", "5.2"], + ["not_between", "float", "mysql", "2.5.7", "6.0"], + ["not_between", "float", "mysql", "2.4.9", "4.2"], + ["not_between", "float", "mysql", "2.4.9", "5.2"], + ["not_between", "float", "mysql", "2.4.9", "6.0"], + ["not_between", "float", "sqlite", "2.7.0", "4.2"], + ["not_between", "float", "sqlite", "2.7.0", "5.2"], + ["not_between", "float", "sqlite", "2.7.0", "6.0"], + ["not_between", "float", "sqlite", "2.6.5", "4.2"], + ["not_between", "float", "sqlite", "2.6.5", "5.2"], + ["not_between", "float", "sqlite", "2.6.5", "6.0"], + ["not_between", "float", "sqlite", "2.5.7", "4.2"], + ["not_between", "float", "sqlite", "2.5.7", "5.2"], + ["not_between", "float", "sqlite", "2.5.7", "6.0"], + ["not_between", "float", "sqlite", "2.4.9", "4.2"], + ["not_between", "float", "sqlite", "2.4.9", "5.2"], + ["not_between", "float", "sqlite", "2.4.9", "6.0"], + ["not_between", "integer", "postgresql", "2.7.0", "4.2"], + ["not_between", "integer", "postgresql", "2.7.0", "5.2"], + ["not_between", "integer", "postgresql", "2.7.0", "6.0"], + ["not_between", "integer", "postgresql", "2.6.5", "4.2"], + ["not_between", "integer", "postgresql", "2.6.5", "5.2"], + ["not_between", "integer", "postgresql", "2.6.5", "6.0"], + ["not_between", "integer", "postgresql", "2.5.7", "4.2"], + ["not_between", "integer", "postgresql", "2.5.7", "5.2"], + ["not_between", "integer", "postgresql", "2.5.7", "6.0"], + ["not_between", "integer", "postgresql", "2.4.9", "4.2"], + ["not_between", "integer", "postgresql", "2.4.9", "5.2"], + ["not_between", "integer", "postgresql", "2.4.9", "6.0"], + ["not_between", "integer", "mysql", "2.7.0", "4.2"], + ["not_between", "integer", "mysql", "2.7.0", "5.2"], + ["not_between", "integer", "mysql", "2.7.0", "6.0"], + ["not_between", "integer", "mysql", "2.6.5", "4.2"], + ["not_between", "integer", "mysql", "2.6.5", "5.2"], + ["not_between", "integer", "mysql", "2.6.5", "6.0"], + ["not_between", "integer", "mysql", "2.5.7", "4.2"], + ["not_between", "integer", "mysql", "2.5.7", "5.2"], + ["not_between", "integer", "mysql", "2.5.7", "6.0"], + ["not_between", "integer", "mysql", "2.4.9", "4.2"], + ["not_between", "integer", "mysql", "2.4.9", "5.2"], + ["not_between", "integer", "mysql", "2.4.9", "6.0"], + ["not_between", "integer", "sqlite", "2.7.0", "4.2"], + ["not_between", "integer", "sqlite", "2.7.0", "5.2"], + ["not_between", "integer", "sqlite", "2.7.0", "6.0"], + ["not_between", "integer", "sqlite", "2.6.5", "4.2"], + ["not_between", "integer", "sqlite", "2.6.5", "5.2"], + ["not_between", "integer", "sqlite", "2.6.5", "6.0"], + ["not_between", "integer", "sqlite", "2.5.7", "4.2"], + ["not_between", "integer", "sqlite", "2.5.7", "5.2"], + ["not_between", "integer", "sqlite", "2.5.7", "6.0"], + ["not_between", "integer", "sqlite", "2.4.9", "4.2"], + ["not_between", "integer", "sqlite", "2.4.9", "5.2"], + ["not_between", "integer", "sqlite", "2.4.9", "6.0"], + ["not_between", "string", "postgresql", "2.7.0", "4.2"], + ["not_between", "string", "postgresql", "2.7.0", "5.2"], + ["not_between", "string", "postgresql", "2.7.0", "6.0"], + ["not_between", "string", "postgresql", "2.6.5", "4.2"], + ["not_between", "string", "postgresql", "2.6.5", "5.2"], + ["not_between", "string", "postgresql", "2.6.5", "6.0"], + ["not_between", "string", "postgresql", "2.5.7", "4.2"], + ["not_between", "string", "postgresql", "2.5.7", "5.2"], + ["not_between", "string", "postgresql", "2.5.7", "6.0"], + ["not_between", "string", "postgresql", "2.4.9", "4.2"], + ["not_between", "string", "postgresql", "2.4.9", "5.2"], + ["not_between", "string", "postgresql", "2.4.9", "6.0"], + ["not_between", "string", "mysql", "2.7.0", "4.2"], + ["not_between", "string", "mysql", "2.7.0", "5.2"], + ["not_between", "string", "mysql", "2.7.0", "6.0"], + ["not_between", "string", "mysql", "2.6.5", "4.2"], + ["not_between", "string", "mysql", "2.6.5", "5.2"], + ["not_between", "string", "mysql", "2.6.5", "6.0"], + ["not_between", "string", "mysql", "2.5.7", "4.2"], + ["not_between", "string", "mysql", "2.5.7", "5.2"], + ["not_between", "string", "mysql", "2.5.7", "6.0"], + ["not_between", "string", "mysql", "2.4.9", "4.2"], + ["not_between", "string", "mysql", "2.4.9", "5.2"], + ["not_between", "string", "mysql", "2.4.9", "6.0"], + ["not_between", "string", "sqlite", "2.7.0", "4.2"], + ["not_between", "string", "sqlite", "2.7.0", "5.2"], + ["not_between", "string", "sqlite", "2.7.0", "6.0"], + ["not_between", "string", "sqlite", "2.6.5", "4.2"], + ["not_between", "string", "sqlite", "2.6.5", "5.2"], + ["not_between", "string", "sqlite", "2.6.5", "6.0"], + ["not_between", "string", "sqlite", "2.5.7", "4.2"], + ["not_between", "string", "sqlite", "2.5.7", "5.2"], + ["not_between", "string", "sqlite", "2.5.7", "6.0"], + ["not_between", "string", "sqlite", "2.4.9", "4.2"], + ["not_between", "string", "sqlite", "2.4.9", "5.2"], + ["not_between", "string", "sqlite", "2.4.9", "6.0"], + ["not_between", "text", "postgresql", "2.7.0", "4.2"], + ["not_between", "text", "postgresql", "2.7.0", "5.2"], + ["not_between", "text", "postgresql", "2.7.0", "6.0"], + ["not_between", "text", "postgresql", "2.6.5", "4.2"], + ["not_between", "text", "postgresql", "2.6.5", "5.2"], + ["not_between", "text", "postgresql", "2.6.5", "6.0"], + ["not_between", "text", "postgresql", "2.5.7", "4.2"], + ["not_between", "text", "postgresql", "2.5.7", "5.2"], + ["not_between", "text", "postgresql", "2.5.7", "6.0"], + ["not_between", "text", "postgresql", "2.4.9", "4.2"], + ["not_between", "text", "postgresql", "2.4.9", "5.2"], + ["not_between", "text", "postgresql", "2.4.9", "6.0"], + ["not_between", "text", "mysql", "2.7.0", "4.2"], + ["not_between", "text", "mysql", "2.7.0", "5.2"], + ["not_between", "text", "mysql", "2.7.0", "6.0"], + ["not_between", "text", "mysql", "2.6.5", "4.2"], + ["not_between", "text", "mysql", "2.6.5", "5.2"], + ["not_between", "text", "mysql", "2.6.5", "6.0"], + ["not_between", "text", "mysql", "2.5.7", "4.2"], + ["not_between", "text", "mysql", "2.5.7", "5.2"], + ["not_between", "text", "mysql", "2.5.7", "6.0"], + ["not_between", "text", "mysql", "2.4.9", "4.2"], + ["not_between", "text", "mysql", "2.4.9", "5.2"], + ["not_between", "text", "mysql", "2.4.9", "6.0"], + ["not_between", "text", "sqlite", "2.7.0", "4.2"], + ["not_between", "text", "sqlite", "2.7.0", "5.2"], + ["not_between", "text", "sqlite", "2.7.0", "6.0"], + ["not_between", "text", "sqlite", "2.6.5", "4.2"], + ["not_between", "text", "sqlite", "2.6.5", "5.2"], + ["not_between", "text", "sqlite", "2.6.5", "6.0"], + ["not_between", "text", "sqlite", "2.5.7", "4.2"], + ["not_between", "text", "sqlite", "2.5.7", "5.2"], + ["not_between", "text", "sqlite", "2.5.7", "6.0"], + ["not_between", "text", "sqlite", "2.4.9", "4.2"], + ["not_between", "text", "sqlite", "2.4.9", "5.2"], + ["not_between", "text", "sqlite", "2.4.9", "6.0"], + ["not_between", "time", "postgresql", "2.7.0", "4.2"], + ["not_between", "time", "postgresql", "2.7.0", "5.2"], + ["not_between", "time", "postgresql", "2.7.0", "6.0"], + ["not_between", "time", "postgresql", "2.6.5", "4.2"], + ["not_between", "time", "postgresql", "2.6.5", "5.2"], + ["not_between", "time", "postgresql", "2.6.5", "6.0"], + ["not_between", "time", "postgresql", "2.5.7", "4.2"], + ["not_between", "time", "postgresql", "2.5.7", "5.2"], + ["not_between", "time", "postgresql", "2.5.7", "6.0"], + ["not_between", "time", "postgresql", "2.4.9", "4.2"], + ["not_between", "time", "postgresql", "2.4.9", "5.2"], + ["not_between", "time", "postgresql", "2.4.9", "6.0"], + ["not_between", "time", "mysql", "2.7.0", "4.2"], + ["not_between", "time", "mysql", "2.7.0", "5.2"], + ["not_between", "time", "mysql", "2.7.0", "6.0"], + ["not_between", "time", "mysql", "2.6.5", "4.2"], + ["not_between", "time", "mysql", "2.6.5", "5.2"], + ["not_between", "time", "mysql", "2.6.5", "6.0"], + ["not_between", "time", "mysql", "2.5.7", "4.2"], + ["not_between", "time", "mysql", "2.5.7", "5.2"], + ["not_between", "time", "mysql", "2.5.7", "6.0"], + ["not_between", "time", "mysql", "2.4.9", "4.2"], + ["not_between", "time", "mysql", "2.4.9", "5.2"], + ["not_between", "time", "mysql", "2.4.9", "6.0"], + ["not_between", "time", "sqlite", "2.7.0", "4.2"], + ["not_between", "time", "sqlite", "2.7.0", "5.2"], + ["not_between", "time", "sqlite", "2.7.0", "6.0"], + ["not_between", "time", "sqlite", "2.6.5", "4.2"], + ["not_between", "time", "sqlite", "2.6.5", "5.2"], + ["not_between", "time", "sqlite", "2.6.5", "6.0"], + ["not_between", "time", "sqlite", "2.5.7", "4.2"], + ["not_between", "time", "sqlite", "2.5.7", "5.2"], + ["not_between", "time", "sqlite", "2.5.7", "6.0"], + ["not_between", "time", "sqlite", "2.4.9", "4.2"], + ["not_between", "time", "sqlite", "2.4.9", "5.2"], + ["not_between", "time", "sqlite", "2.4.9", "6.0"], + ["is_true", "binary", "postgresql", "2.7.0", "4.2"], + ["is_true", "binary", "postgresql", "2.7.0", "5.2"], + ["is_true", "binary", "postgresql", "2.7.0", "6.0"], + ["is_true", "binary", "postgresql", "2.6.5", "4.2"], + ["is_true", "binary", "postgresql", "2.6.5", "5.2"], + ["is_true", "binary", "postgresql", "2.6.5", "6.0"], + ["is_true", "binary", "postgresql", "2.5.7", "4.2"], + ["is_true", "binary", "postgresql", "2.5.7", "5.2"], + ["is_true", "binary", "postgresql", "2.5.7", "6.0"], + ["is_true", "binary", "postgresql", "2.4.9", "4.2"], + ["is_true", "binary", "postgresql", "2.4.9", "5.2"], + ["is_true", "binary", "postgresql", "2.4.9", "6.0"], + ["is_true", "binary", "mysql", "2.7.0", "4.2"], + ["is_true", "binary", "mysql", "2.7.0", "5.2"], + ["is_true", "binary", "mysql", "2.7.0", "6.0"], + ["is_true", "binary", "mysql", "2.6.5", "4.2"], + ["is_true", "binary", "mysql", "2.6.5", "5.2"], + ["is_true", "binary", "mysql", "2.6.5", "6.0"], + ["is_true", "binary", "mysql", "2.5.7", "4.2"], + ["is_true", "binary", "mysql", "2.5.7", "5.2"], + ["is_true", "binary", "mysql", "2.5.7", "6.0"], + ["is_true", "binary", "mysql", "2.4.9", "4.2"], + ["is_true", "binary", "mysql", "2.4.9", "5.2"], + ["is_true", "binary", "mysql", "2.4.9", "6.0"], + ["is_true", "binary", "sqlite", "2.7.0", "4.2"], + ["is_true", "binary", "sqlite", "2.7.0", "5.2"], + ["is_true", "binary", "sqlite", "2.7.0", "6.0"], + ["is_true", "binary", "sqlite", "2.6.5", "4.2"], + ["is_true", "binary", "sqlite", "2.6.5", "5.2"], + ["is_true", "binary", "sqlite", "2.6.5", "6.0"], + ["is_true", "binary", "sqlite", "2.5.7", "4.2"], + ["is_true", "binary", "sqlite", "2.5.7", "5.2"], + ["is_true", "binary", "sqlite", "2.5.7", "6.0"], + ["is_true", "binary", "sqlite", "2.4.9", "4.2"], + ["is_true", "binary", "sqlite", "2.4.9", "5.2"], + ["is_true", "binary", "sqlite", "2.4.9", "6.0"], + ["is_true", "boolean", "postgresql", "2.7.0", "4.2"], + ["is_true", "boolean", "postgresql", "2.7.0", "5.2"], + ["is_true", "boolean", "postgresql", "2.7.0", "6.0"], + ["is_true", "boolean", "postgresql", "2.6.5", "4.2"], + ["is_true", "boolean", "postgresql", "2.6.5", "5.2"], + ["is_true", "boolean", "postgresql", "2.6.5", "6.0"], + ["is_true", "boolean", "postgresql", "2.5.7", "4.2"], + ["is_true", "boolean", "postgresql", "2.5.7", "5.2"], + ["is_true", "boolean", "postgresql", "2.5.7", "6.0"], + ["is_true", "boolean", "postgresql", "2.4.9", "4.2"], + ["is_true", "boolean", "postgresql", "2.4.9", "5.2"], + ["is_true", "boolean", "postgresql", "2.4.9", "6.0"], + ["is_true", "boolean", "mysql", "2.7.0", "4.2"], + ["is_true", "boolean", "mysql", "2.7.0", "5.2"], + ["is_true", "boolean", "mysql", "2.7.0", "6.0"], + ["is_true", "boolean", "mysql", "2.6.5", "4.2"], + ["is_true", "boolean", "mysql", "2.6.5", "5.2"], + ["is_true", "boolean", "mysql", "2.6.5", "6.0"], + ["is_true", "boolean", "mysql", "2.5.7", "4.2"], + ["is_true", "boolean", "mysql", "2.5.7", "5.2"], + ["is_true", "boolean", "mysql", "2.5.7", "6.0"], + ["is_true", "boolean", "mysql", "2.4.9", "4.2"], + ["is_true", "boolean", "mysql", "2.4.9", "5.2"], + ["is_true", "boolean", "mysql", "2.4.9", "6.0"], + ["is_true", "boolean", "sqlite", "2.7.0", "4.2"], + ["is_true", "boolean", "sqlite", "2.7.0", "5.2"], + ["is_true", "boolean", "sqlite", "2.7.0", "6.0"], + ["is_true", "boolean", "sqlite", "2.6.5", "4.2"], + ["is_true", "boolean", "sqlite", "2.6.5", "5.2"], + ["is_true", "boolean", "sqlite", "2.6.5", "6.0"], + ["is_true", "boolean", "sqlite", "2.5.7", "4.2"], + ["is_true", "boolean", "sqlite", "2.5.7", "5.2"], + ["is_true", "boolean", "sqlite", "2.5.7", "6.0"], + ["is_true", "boolean", "sqlite", "2.4.9", "4.2"], + ["is_true", "boolean", "sqlite", "2.4.9", "5.2"], + ["is_true", "boolean", "sqlite", "2.4.9", "6.0"], + ["is_true", "date", "postgresql", "2.7.0", "4.2"], + ["is_true", "date", "postgresql", "2.7.0", "5.2"], + ["is_true", "date", "postgresql", "2.7.0", "6.0"], + ["is_true", "date", "postgresql", "2.6.5", "4.2"], + ["is_true", "date", "postgresql", "2.6.5", "5.2"], + ["is_true", "date", "postgresql", "2.6.5", "6.0"], + ["is_true", "date", "postgresql", "2.5.7", "4.2"], + ["is_true", "date", "postgresql", "2.5.7", "5.2"], + ["is_true", "date", "postgresql", "2.5.7", "6.0"], + ["is_true", "date", "postgresql", "2.4.9", "4.2"], + ["is_true", "date", "postgresql", "2.4.9", "5.2"], + ["is_true", "date", "postgresql", "2.4.9", "6.0"], + ["is_true", "date", "mysql", "2.7.0", "4.2"], + ["is_true", "date", "mysql", "2.7.0", "5.2"], + ["is_true", "date", "mysql", "2.7.0", "6.0"], + ["is_true", "date", "mysql", "2.6.5", "4.2"], + ["is_true", "date", "mysql", "2.6.5", "5.2"], + ["is_true", "date", "mysql", "2.6.5", "6.0"], + ["is_true", "date", "mysql", "2.5.7", "4.2"], + ["is_true", "date", "mysql", "2.5.7", "5.2"], + ["is_true", "date", "mysql", "2.5.7", "6.0"], + ["is_true", "date", "mysql", "2.4.9", "4.2"], + ["is_true", "date", "mysql", "2.4.9", "5.2"], + ["is_true", "date", "mysql", "2.4.9", "6.0"], + ["is_true", "date", "sqlite", "2.7.0", "4.2"], + ["is_true", "date", "sqlite", "2.7.0", "5.2"], + ["is_true", "date", "sqlite", "2.7.0", "6.0"], + ["is_true", "date", "sqlite", "2.6.5", "4.2"], + ["is_true", "date", "sqlite", "2.6.5", "5.2"], + ["is_true", "date", "sqlite", "2.6.5", "6.0"], + ["is_true", "date", "sqlite", "2.5.7", "4.2"], + ["is_true", "date", "sqlite", "2.5.7", "5.2"], + ["is_true", "date", "sqlite", "2.5.7", "6.0"], + ["is_true", "date", "sqlite", "2.4.9", "4.2"], + ["is_true", "date", "sqlite", "2.4.9", "5.2"], + ["is_true", "date", "sqlite", "2.4.9", "6.0"], + ["is_true", "datetime", "postgresql", "2.7.0", "4.2"], + ["is_true", "datetime", "postgresql", "2.7.0", "5.2"], + ["is_true", "datetime", "postgresql", "2.7.0", "6.0"], + ["is_true", "datetime", "postgresql", "2.6.5", "4.2"], + ["is_true", "datetime", "postgresql", "2.6.5", "5.2"], + ["is_true", "datetime", "postgresql", "2.6.5", "6.0"], + ["is_true", "datetime", "postgresql", "2.5.7", "4.2"], + ["is_true", "datetime", "postgresql", "2.5.7", "5.2"], + ["is_true", "datetime", "postgresql", "2.5.7", "6.0"], + ["is_true", "datetime", "postgresql", "2.4.9", "4.2"], + ["is_true", "datetime", "postgresql", "2.4.9", "5.2"], + ["is_true", "datetime", "postgresql", "2.4.9", "6.0"], + ["is_true", "datetime", "mysql", "2.7.0", "4.2"], + ["is_true", "datetime", "mysql", "2.7.0", "5.2"], + ["is_true", "datetime", "mysql", "2.7.0", "6.0"], + ["is_true", "datetime", "mysql", "2.6.5", "4.2"], + ["is_true", "datetime", "mysql", "2.6.5", "5.2"], + ["is_true", "datetime", "mysql", "2.6.5", "6.0"], + ["is_true", "datetime", "mysql", "2.5.7", "4.2"], + ["is_true", "datetime", "mysql", "2.5.7", "5.2"], + ["is_true", "datetime", "mysql", "2.5.7", "6.0"], + ["is_true", "datetime", "mysql", "2.4.9", "4.2"], + ["is_true", "datetime", "mysql", "2.4.9", "5.2"], + ["is_true", "datetime", "mysql", "2.4.9", "6.0"], + ["is_true", "datetime", "sqlite", "2.7.0", "4.2"], + ["is_true", "datetime", "sqlite", "2.7.0", "5.2"], + ["is_true", "datetime", "sqlite", "2.7.0", "6.0"], + ["is_true", "datetime", "sqlite", "2.6.5", "4.2"], + ["is_true", "datetime", "sqlite", "2.6.5", "5.2"], + ["is_true", "datetime", "sqlite", "2.6.5", "6.0"], + ["is_true", "datetime", "sqlite", "2.5.7", "4.2"], + ["is_true", "datetime", "sqlite", "2.5.7", "5.2"], + ["is_true", "datetime", "sqlite", "2.5.7", "6.0"], + ["is_true", "datetime", "sqlite", "2.4.9", "4.2"], + ["is_true", "datetime", "sqlite", "2.4.9", "5.2"], + ["is_true", "datetime", "sqlite", "2.4.9", "6.0"], + ["is_true", "decimal", "postgresql", "2.7.0", "4.2"], + ["is_true", "decimal", "postgresql", "2.7.0", "5.2"], + ["is_true", "decimal", "postgresql", "2.7.0", "6.0"], + ["is_true", "decimal", "postgresql", "2.6.5", "4.2"], + ["is_true", "decimal", "postgresql", "2.6.5", "5.2"], + ["is_true", "decimal", "postgresql", "2.6.5", "6.0"], + ["is_true", "decimal", "postgresql", "2.5.7", "4.2"], + ["is_true", "decimal", "postgresql", "2.5.7", "5.2"], + ["is_true", "decimal", "postgresql", "2.5.7", "6.0"], + ["is_true", "decimal", "postgresql", "2.4.9", "4.2"], + ["is_true", "decimal", "postgresql", "2.4.9", "5.2"], + ["is_true", "decimal", "postgresql", "2.4.9", "6.0"], + ["is_true", "decimal", "mysql", "2.7.0", "4.2"], + ["is_true", "decimal", "mysql", "2.7.0", "5.2"], + ["is_true", "decimal", "mysql", "2.7.0", "6.0"], + ["is_true", "decimal", "mysql", "2.6.5", "4.2"], + ["is_true", "decimal", "mysql", "2.6.5", "5.2"], + ["is_true", "decimal", "mysql", "2.6.5", "6.0"], + ["is_true", "decimal", "mysql", "2.5.7", "4.2"], + ["is_true", "decimal", "mysql", "2.5.7", "5.2"], + ["is_true", "decimal", "mysql", "2.5.7", "6.0"], + ["is_true", "decimal", "mysql", "2.4.9", "4.2"], + ["is_true", "decimal", "mysql", "2.4.9", "5.2"], + ["is_true", "decimal", "mysql", "2.4.9", "6.0"], + ["is_true", "decimal", "sqlite", "2.7.0", "4.2"], + ["is_true", "decimal", "sqlite", "2.7.0", "5.2"], + ["is_true", "decimal", "sqlite", "2.7.0", "6.0"], + ["is_true", "decimal", "sqlite", "2.6.5", "4.2"], + ["is_true", "decimal", "sqlite", "2.6.5", "5.2"], + ["is_true", "decimal", "sqlite", "2.6.5", "6.0"], + ["is_true", "decimal", "sqlite", "2.5.7", "4.2"], + ["is_true", "decimal", "sqlite", "2.5.7", "5.2"], + ["is_true", "decimal", "sqlite", "2.5.7", "6.0"], + ["is_true", "decimal", "sqlite", "2.4.9", "4.2"], + ["is_true", "decimal", "sqlite", "2.4.9", "5.2"], + ["is_true", "decimal", "sqlite", "2.4.9", "6.0"], + ["is_true", "float", "postgresql", "2.7.0", "4.2"], + ["is_true", "float", "postgresql", "2.7.0", "5.2"], + ["is_true", "float", "postgresql", "2.7.0", "6.0"], + ["is_true", "float", "postgresql", "2.6.5", "4.2"], + ["is_true", "float", "postgresql", "2.6.5", "5.2"], + ["is_true", "float", "postgresql", "2.6.5", "6.0"], + ["is_true", "float", "postgresql", "2.5.7", "4.2"], + ["is_true", "float", "postgresql", "2.5.7", "5.2"], + ["is_true", "float", "postgresql", "2.5.7", "6.0"], + ["is_true", "float", "postgresql", "2.4.9", "4.2"], + ["is_true", "float", "postgresql", "2.4.9", "5.2"], + ["is_true", "float", "postgresql", "2.4.9", "6.0"], + ["is_true", "float", "mysql", "2.7.0", "4.2"], + ["is_true", "float", "mysql", "2.7.0", "5.2"], + ["is_true", "float", "mysql", "2.7.0", "6.0"], + ["is_true", "float", "mysql", "2.6.5", "4.2"], + ["is_true", "float", "mysql", "2.6.5", "5.2"], + ["is_true", "float", "mysql", "2.6.5", "6.0"], + ["is_true", "float", "mysql", "2.5.7", "4.2"], + ["is_true", "float", "mysql", "2.5.7", "5.2"], + ["is_true", "float", "mysql", "2.5.7", "6.0"], + ["is_true", "float", "mysql", "2.4.9", "4.2"], + ["is_true", "float", "mysql", "2.4.9", "5.2"], + ["is_true", "float", "mysql", "2.4.9", "6.0"], + ["is_true", "float", "sqlite", "2.7.0", "4.2"], + ["is_true", "float", "sqlite", "2.7.0", "5.2"], + ["is_true", "float", "sqlite", "2.7.0", "6.0"], + ["is_true", "float", "sqlite", "2.6.5", "4.2"], + ["is_true", "float", "sqlite", "2.6.5", "5.2"], + ["is_true", "float", "sqlite", "2.6.5", "6.0"], + ["is_true", "float", "sqlite", "2.5.7", "4.2"], + ["is_true", "float", "sqlite", "2.5.7", "5.2"], + ["is_true", "float", "sqlite", "2.5.7", "6.0"], + ["is_true", "float", "sqlite", "2.4.9", "4.2"], + ["is_true", "float", "sqlite", "2.4.9", "5.2"], + ["is_true", "float", "sqlite", "2.4.9", "6.0"], + ["is_true", "integer", "postgresql", "2.7.0", "4.2"], + ["is_true", "integer", "postgresql", "2.7.0", "5.2"], + ["is_true", "integer", "postgresql", "2.7.0", "6.0"], + ["is_true", "integer", "postgresql", "2.6.5", "4.2"], + ["is_true", "integer", "postgresql", "2.6.5", "5.2"], + ["is_true", "integer", "postgresql", "2.6.5", "6.0"], + ["is_true", "integer", "postgresql", "2.5.7", "4.2"], + ["is_true", "integer", "postgresql", "2.5.7", "5.2"], + ["is_true", "integer", "postgresql", "2.5.7", "6.0"], + ["is_true", "integer", "postgresql", "2.4.9", "4.2"], + ["is_true", "integer", "postgresql", "2.4.9", "5.2"], + ["is_true", "integer", "postgresql", "2.4.9", "6.0"], + ["is_true", "integer", "mysql", "2.7.0", "4.2"], + ["is_true", "integer", "mysql", "2.7.0", "5.2"], + ["is_true", "integer", "mysql", "2.7.0", "6.0"], + ["is_true", "integer", "mysql", "2.6.5", "4.2"], + ["is_true", "integer", "mysql", "2.6.5", "5.2"], + ["is_true", "integer", "mysql", "2.6.5", "6.0"], + ["is_true", "integer", "mysql", "2.5.7", "4.2"], + ["is_true", "integer", "mysql", "2.5.7", "5.2"], + ["is_true", "integer", "mysql", "2.5.7", "6.0"], + ["is_true", "integer", "mysql", "2.4.9", "4.2"], + ["is_true", "integer", "mysql", "2.4.9", "5.2"], + ["is_true", "integer", "mysql", "2.4.9", "6.0"], + ["is_true", "integer", "sqlite", "2.7.0", "4.2"], + ["is_true", "integer", "sqlite", "2.7.0", "5.2"], + ["is_true", "integer", "sqlite", "2.7.0", "6.0"], + ["is_true", "integer", "sqlite", "2.6.5", "4.2"], + ["is_true", "integer", "sqlite", "2.6.5", "5.2"], + ["is_true", "integer", "sqlite", "2.6.5", "6.0"], + ["is_true", "integer", "sqlite", "2.5.7", "4.2"], + ["is_true", "integer", "sqlite", "2.5.7", "5.2"], + ["is_true", "integer", "sqlite", "2.5.7", "6.0"], + ["is_true", "integer", "sqlite", "2.4.9", "4.2"], + ["is_true", "integer", "sqlite", "2.4.9", "5.2"], + ["is_true", "integer", "sqlite", "2.4.9", "6.0"], + ["is_true", "string", "postgresql", "2.7.0", "4.2"], + ["is_true", "string", "postgresql", "2.7.0", "5.2"], + ["is_true", "string", "postgresql", "2.7.0", "6.0"], + ["is_true", "string", "postgresql", "2.6.5", "4.2"], + ["is_true", "string", "postgresql", "2.6.5", "5.2"], + ["is_true", "string", "postgresql", "2.6.5", "6.0"], + ["is_true", "string", "postgresql", "2.5.7", "4.2"], + ["is_true", "string", "postgresql", "2.5.7", "5.2"], + ["is_true", "string", "postgresql", "2.5.7", "6.0"], + ["is_true", "string", "postgresql", "2.4.9", "4.2"], + ["is_true", "string", "postgresql", "2.4.9", "5.2"], + ["is_true", "string", "postgresql", "2.4.9", "6.0"], + ["is_true", "string", "mysql", "2.7.0", "4.2"], + ["is_true", "string", "mysql", "2.7.0", "5.2"], + ["is_true", "string", "mysql", "2.7.0", "6.0"], + ["is_true", "string", "mysql", "2.6.5", "4.2"], + ["is_true", "string", "mysql", "2.6.5", "5.2"], + ["is_true", "string", "mysql", "2.6.5", "6.0"], + ["is_true", "string", "mysql", "2.5.7", "4.2"], + ["is_true", "string", "mysql", "2.5.7", "5.2"], + ["is_true", "string", "mysql", "2.5.7", "6.0"], + ["is_true", "string", "mysql", "2.4.9", "4.2"], + ["is_true", "string", "mysql", "2.4.9", "5.2"], + ["is_true", "string", "mysql", "2.4.9", "6.0"], + ["is_true", "string", "sqlite", "2.7.0", "4.2"], + ["is_true", "string", "sqlite", "2.7.0", "5.2"], + ["is_true", "string", "sqlite", "2.7.0", "6.0"], + ["is_true", "string", "sqlite", "2.6.5", "4.2"], + ["is_true", "string", "sqlite", "2.6.5", "5.2"], + ["is_true", "string", "sqlite", "2.6.5", "6.0"], + ["is_true", "string", "sqlite", "2.5.7", "4.2"], + ["is_true", "string", "sqlite", "2.5.7", "5.2"], + ["is_true", "string", "sqlite", "2.5.7", "6.0"], + ["is_true", "string", "sqlite", "2.4.9", "4.2"], + ["is_true", "string", "sqlite", "2.4.9", "5.2"], + ["is_true", "string", "sqlite", "2.4.9", "6.0"], + ["is_true", "text", "postgresql", "2.7.0", "4.2"], + ["is_true", "text", "postgresql", "2.7.0", "5.2"], + ["is_true", "text", "postgresql", "2.7.0", "6.0"], + ["is_true", "text", "postgresql", "2.6.5", "4.2"], + ["is_true", "text", "postgresql", "2.6.5", "5.2"], + ["is_true", "text", "postgresql", "2.6.5", "6.0"], + ["is_true", "text", "postgresql", "2.5.7", "4.2"], + ["is_true", "text", "postgresql", "2.5.7", "5.2"], + ["is_true", "text", "postgresql", "2.5.7", "6.0"], + ["is_true", "text", "postgresql", "2.4.9", "4.2"], + ["is_true", "text", "postgresql", "2.4.9", "5.2"], + ["is_true", "text", "postgresql", "2.4.9", "6.0"], + ["is_true", "text", "mysql", "2.7.0", "4.2"], + ["is_true", "text", "mysql", "2.7.0", "5.2"], + ["is_true", "text", "mysql", "2.7.0", "6.0"], + ["is_true", "text", "mysql", "2.6.5", "4.2"], + ["is_true", "text", "mysql", "2.6.5", "5.2"], + ["is_true", "text", "mysql", "2.6.5", "6.0"], + ["is_true", "text", "mysql", "2.5.7", "4.2"], + ["is_true", "text", "mysql", "2.5.7", "5.2"], + ["is_true", "text", "mysql", "2.5.7", "6.0"], + ["is_true", "text", "mysql", "2.4.9", "4.2"], + ["is_true", "text", "mysql", "2.4.9", "5.2"], + ["is_true", "text", "mysql", "2.4.9", "6.0"], + ["is_true", "text", "sqlite", "2.7.0", "4.2"], + ["is_true", "text", "sqlite", "2.7.0", "5.2"], + ["is_true", "text", "sqlite", "2.7.0", "6.0"], + ["is_true", "text", "sqlite", "2.6.5", "4.2"], + ["is_true", "text", "sqlite", "2.6.5", "5.2"], + ["is_true", "text", "sqlite", "2.6.5", "6.0"], + ["is_true", "text", "sqlite", "2.5.7", "4.2"], + ["is_true", "text", "sqlite", "2.5.7", "5.2"], + ["is_true", "text", "sqlite", "2.5.7", "6.0"], + ["is_true", "text", "sqlite", "2.4.9", "4.2"], + ["is_true", "text", "sqlite", "2.4.9", "5.2"], + ["is_true", "text", "sqlite", "2.4.9", "6.0"], + ["is_true", "time", "postgresql", "2.7.0", "4.2"], + ["is_true", "time", "postgresql", "2.7.0", "5.2"], + ["is_true", "time", "postgresql", "2.7.0", "6.0"], + ["is_true", "time", "postgresql", "2.6.5", "4.2"], + ["is_true", "time", "postgresql", "2.6.5", "5.2"], + ["is_true", "time", "postgresql", "2.6.5", "6.0"], + ["is_true", "time", "postgresql", "2.5.7", "4.2"], + ["is_true", "time", "postgresql", "2.5.7", "5.2"], + ["is_true", "time", "postgresql", "2.5.7", "6.0"], + ["is_true", "time", "postgresql", "2.4.9", "4.2"], + ["is_true", "time", "postgresql", "2.4.9", "5.2"], + ["is_true", "time", "postgresql", "2.4.9", "6.0"], + ["is_true", "time", "mysql", "2.7.0", "4.2"], + ["is_true", "time", "mysql", "2.7.0", "5.2"], + ["is_true", "time", "mysql", "2.7.0", "6.0"], + ["is_true", "time", "mysql", "2.6.5", "4.2"], + ["is_true", "time", "mysql", "2.6.5", "5.2"], + ["is_true", "time", "mysql", "2.6.5", "6.0"], + ["is_true", "time", "mysql", "2.5.7", "4.2"], + ["is_true", "time", "mysql", "2.5.7", "5.2"], + ["is_true", "time", "mysql", "2.5.7", "6.0"], + ["is_true", "time", "mysql", "2.4.9", "4.2"], + ["is_true", "time", "mysql", "2.4.9", "5.2"], + ["is_true", "time", "mysql", "2.4.9", "6.0"], + ["is_true", "time", "sqlite", "2.7.0", "4.2"], + ["is_true", "time", "sqlite", "2.7.0", "5.2"], + ["is_true", "time", "sqlite", "2.7.0", "6.0"], + ["is_true", "time", "sqlite", "2.6.5", "4.2"], + ["is_true", "time", "sqlite", "2.6.5", "5.2"], + ["is_true", "time", "sqlite", "2.6.5", "6.0"], + ["is_true", "time", "sqlite", "2.5.7", "4.2"], + ["is_true", "time", "sqlite", "2.5.7", "5.2"], + ["is_true", "time", "sqlite", "2.5.7", "6.0"], + ["is_true", "time", "sqlite", "2.4.9", "4.2"], + ["is_true", "time", "sqlite", "2.4.9", "5.2"], + ["is_true", "time", "sqlite", "2.4.9", "6.0"], + ["is_false", "binary", "postgresql", "2.7.0", "4.2"], + ["is_false", "binary", "postgresql", "2.7.0", "5.2"], + ["is_false", "binary", "postgresql", "2.7.0", "6.0"], + ["is_false", "binary", "postgresql", "2.6.5", "4.2"], + ["is_false", "binary", "postgresql", "2.6.5", "5.2"], + ["is_false", "binary", "postgresql", "2.6.5", "6.0"], + ["is_false", "binary", "postgresql", "2.5.7", "4.2"], + ["is_false", "binary", "postgresql", "2.5.7", "5.2"], + ["is_false", "binary", "postgresql", "2.5.7", "6.0"], + ["is_false", "binary", "postgresql", "2.4.9", "4.2"], + ["is_false", "binary", "postgresql", "2.4.9", "5.2"], + ["is_false", "binary", "postgresql", "2.4.9", "6.0"], + ["is_false", "binary", "mysql", "2.7.0", "4.2"], + ["is_false", "binary", "mysql", "2.7.0", "5.2"], + ["is_false", "binary", "mysql", "2.7.0", "6.0"], + ["is_false", "binary", "mysql", "2.6.5", "4.2"], + ["is_false", "binary", "mysql", "2.6.5", "5.2"], + ["is_false", "binary", "mysql", "2.6.5", "6.0"], + ["is_false", "binary", "mysql", "2.5.7", "4.2"], + ["is_false", "binary", "mysql", "2.5.7", "5.2"], + ["is_false", "binary", "mysql", "2.5.7", "6.0"], + ["is_false", "binary", "mysql", "2.4.9", "4.2"], + ["is_false", "binary", "mysql", "2.4.9", "5.2"], + ["is_false", "binary", "mysql", "2.4.9", "6.0"], + ["is_false", "binary", "sqlite", "2.7.0", "4.2"], + ["is_false", "binary", "sqlite", "2.7.0", "5.2"], + ["is_false", "binary", "sqlite", "2.7.0", "6.0"], + ["is_false", "binary", "sqlite", "2.6.5", "4.2"], + ["is_false", "binary", "sqlite", "2.6.5", "5.2"], + ["is_false", "binary", "sqlite", "2.6.5", "6.0"], + ["is_false", "binary", "sqlite", "2.5.7", "4.2"], + ["is_false", "binary", "sqlite", "2.5.7", "5.2"], + ["is_false", "binary", "sqlite", "2.5.7", "6.0"], + ["is_false", "binary", "sqlite", "2.4.9", "4.2"], + ["is_false", "binary", "sqlite", "2.4.9", "5.2"], + ["is_false", "binary", "sqlite", "2.4.9", "6.0"], + ["is_false", "boolean", "postgresql", "2.7.0", "4.2"], + ["is_false", "boolean", "postgresql", "2.7.0", "5.2"], + ["is_false", "boolean", "postgresql", "2.7.0", "6.0"], + ["is_false", "boolean", "postgresql", "2.6.5", "4.2"], + ["is_false", "boolean", "postgresql", "2.6.5", "5.2"], + ["is_false", "boolean", "postgresql", "2.6.5", "6.0"], + ["is_false", "boolean", "postgresql", "2.5.7", "4.2"], + ["is_false", "boolean", "postgresql", "2.5.7", "5.2"], + ["is_false", "boolean", "postgresql", "2.5.7", "6.0"], + ["is_false", "boolean", "postgresql", "2.4.9", "4.2"], + ["is_false", "boolean", "postgresql", "2.4.9", "5.2"], + ["is_false", "boolean", "postgresql", "2.4.9", "6.0"], + ["is_false", "boolean", "mysql", "2.7.0", "4.2"], + ["is_false", "boolean", "mysql", "2.7.0", "5.2"], + ["is_false", "boolean", "mysql", "2.7.0", "6.0"], + ["is_false", "boolean", "mysql", "2.6.5", "4.2"], + ["is_false", "boolean", "mysql", "2.6.5", "5.2"], + ["is_false", "boolean", "mysql", "2.6.5", "6.0"], + ["is_false", "boolean", "mysql", "2.5.7", "4.2"], + ["is_false", "boolean", "mysql", "2.5.7", "5.2"], + ["is_false", "boolean", "mysql", "2.5.7", "6.0"], + ["is_false", "boolean", "mysql", "2.4.9", "4.2"], + ["is_false", "boolean", "mysql", "2.4.9", "5.2"], + ["is_false", "boolean", "mysql", "2.4.9", "6.0"], + ["is_false", "boolean", "sqlite", "2.7.0", "4.2"], + ["is_false", "boolean", "sqlite", "2.7.0", "5.2"], + ["is_false", "boolean", "sqlite", "2.7.0", "6.0"], + ["is_false", "boolean", "sqlite", "2.6.5", "4.2"], + ["is_false", "boolean", "sqlite", "2.6.5", "5.2"], + ["is_false", "boolean", "sqlite", "2.6.5", "6.0"], + ["is_false", "boolean", "sqlite", "2.5.7", "4.2"], + ["is_false", "boolean", "sqlite", "2.5.7", "5.2"], + ["is_false", "boolean", "sqlite", "2.5.7", "6.0"], + ["is_false", "boolean", "sqlite", "2.4.9", "4.2"], + ["is_false", "boolean", "sqlite", "2.4.9", "5.2"], + ["is_false", "boolean", "sqlite", "2.4.9", "6.0"], + ["is_false", "date", "postgresql", "2.7.0", "4.2"], + ["is_false", "date", "postgresql", "2.7.0", "5.2"], + ["is_false", "date", "postgresql", "2.7.0", "6.0"], + ["is_false", "date", "postgresql", "2.6.5", "4.2"], + ["is_false", "date", "postgresql", "2.6.5", "5.2"], + ["is_false", "date", "postgresql", "2.6.5", "6.0"], + ["is_false", "date", "postgresql", "2.5.7", "4.2"], + ["is_false", "date", "postgresql", "2.5.7", "5.2"], + ["is_false", "date", "postgresql", "2.5.7", "6.0"], + ["is_false", "date", "postgresql", "2.4.9", "4.2"], + ["is_false", "date", "postgresql", "2.4.9", "5.2"], + ["is_false", "date", "postgresql", "2.4.9", "6.0"], + ["is_false", "date", "mysql", "2.7.0", "4.2"], + ["is_false", "date", "mysql", "2.7.0", "5.2"], + ["is_false", "date", "mysql", "2.7.0", "6.0"], + ["is_false", "date", "mysql", "2.6.5", "4.2"], + ["is_false", "date", "mysql", "2.6.5", "5.2"], + ["is_false", "date", "mysql", "2.6.5", "6.0"], + ["is_false", "date", "mysql", "2.5.7", "4.2"], + ["is_false", "date", "mysql", "2.5.7", "5.2"], + ["is_false", "date", "mysql", "2.5.7", "6.0"], + ["is_false", "date", "mysql", "2.4.9", "4.2"], + ["is_false", "date", "mysql", "2.4.9", "5.2"], + ["is_false", "date", "mysql", "2.4.9", "6.0"], + ["is_false", "date", "sqlite", "2.7.0", "4.2"], + ["is_false", "date", "sqlite", "2.7.0", "5.2"], + ["is_false", "date", "sqlite", "2.7.0", "6.0"], + ["is_false", "date", "sqlite", "2.6.5", "4.2"], + ["is_false", "date", "sqlite", "2.6.5", "5.2"], + ["is_false", "date", "sqlite", "2.6.5", "6.0"], + ["is_false", "date", "sqlite", "2.5.7", "4.2"], + ["is_false", "date", "sqlite", "2.5.7", "5.2"], + ["is_false", "date", "sqlite", "2.5.7", "6.0"], + ["is_false", "date", "sqlite", "2.4.9", "4.2"], + ["is_false", "date", "sqlite", "2.4.9", "5.2"], + ["is_false", "date", "sqlite", "2.4.9", "6.0"], + ["is_false", "datetime", "postgresql", "2.7.0", "4.2"], + ["is_false", "datetime", "postgresql", "2.7.0", "5.2"], + ["is_false", "datetime", "postgresql", "2.7.0", "6.0"], + ["is_false", "datetime", "postgresql", "2.6.5", "4.2"], + ["is_false", "datetime", "postgresql", "2.6.5", "5.2"], + ["is_false", "datetime", "postgresql", "2.6.5", "6.0"], + ["is_false", "datetime", "postgresql", "2.5.7", "4.2"], + ["is_false", "datetime", "postgresql", "2.5.7", "5.2"], + ["is_false", "datetime", "postgresql", "2.5.7", "6.0"], + ["is_false", "datetime", "postgresql", "2.4.9", "4.2"], + ["is_false", "datetime", "postgresql", "2.4.9", "5.2"], + ["is_false", "datetime", "postgresql", "2.4.9", "6.0"], + ["is_false", "datetime", "mysql", "2.7.0", "4.2"], + ["is_false", "datetime", "mysql", "2.7.0", "5.2"], + ["is_false", "datetime", "mysql", "2.7.0", "6.0"], + ["is_false", "datetime", "mysql", "2.6.5", "4.2"], + ["is_false", "datetime", "mysql", "2.6.5", "5.2"], + ["is_false", "datetime", "mysql", "2.6.5", "6.0"], + ["is_false", "datetime", "mysql", "2.5.7", "4.2"], + ["is_false", "datetime", "mysql", "2.5.7", "5.2"], + ["is_false", "datetime", "mysql", "2.5.7", "6.0"], + ["is_false", "datetime", "mysql", "2.4.9", "4.2"], + ["is_false", "datetime", "mysql", "2.4.9", "5.2"], + ["is_false", "datetime", "mysql", "2.4.9", "6.0"], + ["is_false", "datetime", "sqlite", "2.7.0", "4.2"], + ["is_false", "datetime", "sqlite", "2.7.0", "5.2"], + ["is_false", "datetime", "sqlite", "2.7.0", "6.0"], + ["is_false", "datetime", "sqlite", "2.6.5", "4.2"], + ["is_false", "datetime", "sqlite", "2.6.5", "5.2"], + ["is_false", "datetime", "sqlite", "2.6.5", "6.0"], + ["is_false", "datetime", "sqlite", "2.5.7", "4.2"], + ["is_false", "datetime", "sqlite", "2.5.7", "5.2"], + ["is_false", "datetime", "sqlite", "2.5.7", "6.0"], + ["is_false", "datetime", "sqlite", "2.4.9", "4.2"], + ["is_false", "datetime", "sqlite", "2.4.9", "5.2"], + ["is_false", "datetime", "sqlite", "2.4.9", "6.0"], + ["is_false", "decimal", "postgresql", "2.7.0", "4.2"], + ["is_false", "decimal", "postgresql", "2.7.0", "5.2"], + ["is_false", "decimal", "postgresql", "2.7.0", "6.0"], + ["is_false", "decimal", "postgresql", "2.6.5", "4.2"], + ["is_false", "decimal", "postgresql", "2.6.5", "5.2"], + ["is_false", "decimal", "postgresql", "2.6.5", "6.0"], + ["is_false", "decimal", "postgresql", "2.5.7", "4.2"], + ["is_false", "decimal", "postgresql", "2.5.7", "5.2"], + ["is_false", "decimal", "postgresql", "2.5.7", "6.0"], + ["is_false", "decimal", "postgresql", "2.4.9", "4.2"], + ["is_false", "decimal", "postgresql", "2.4.9", "5.2"], + ["is_false", "decimal", "postgresql", "2.4.9", "6.0"], + ["is_false", "decimal", "mysql", "2.7.0", "4.2"], + ["is_false", "decimal", "mysql", "2.7.0", "5.2"], + ["is_false", "decimal", "mysql", "2.7.0", "6.0"], + ["is_false", "decimal", "mysql", "2.6.5", "4.2"], + ["is_false", "decimal", "mysql", "2.6.5", "5.2"], + ["is_false", "decimal", "mysql", "2.6.5", "6.0"], + ["is_false", "decimal", "mysql", "2.5.7", "4.2"], + ["is_false", "decimal", "mysql", "2.5.7", "5.2"], + ["is_false", "decimal", "mysql", "2.5.7", "6.0"], + ["is_false", "decimal", "mysql", "2.4.9", "4.2"], + ["is_false", "decimal", "mysql", "2.4.9", "5.2"], + ["is_false", "decimal", "mysql", "2.4.9", "6.0"], + ["is_false", "decimal", "sqlite", "2.7.0", "4.2"], + ["is_false", "decimal", "sqlite", "2.7.0", "5.2"], + ["is_false", "decimal", "sqlite", "2.7.0", "6.0"], + ["is_false", "decimal", "sqlite", "2.6.5", "4.2"], + ["is_false", "decimal", "sqlite", "2.6.5", "5.2"], + ["is_false", "decimal", "sqlite", "2.6.5", "6.0"], + ["is_false", "decimal", "sqlite", "2.5.7", "4.2"], + ["is_false", "decimal", "sqlite", "2.5.7", "5.2"], + ["is_false", "decimal", "sqlite", "2.5.7", "6.0"], + ["is_false", "decimal", "sqlite", "2.4.9", "4.2"], + ["is_false", "decimal", "sqlite", "2.4.9", "5.2"], + ["is_false", "decimal", "sqlite", "2.4.9", "6.0"], + ["is_false", "float", "postgresql", "2.7.0", "4.2"], + ["is_false", "float", "postgresql", "2.7.0", "5.2"], + ["is_false", "float", "postgresql", "2.7.0", "6.0"], + ["is_false", "float", "postgresql", "2.6.5", "4.2"], + ["is_false", "float", "postgresql", "2.6.5", "5.2"], + ["is_false", "float", "postgresql", "2.6.5", "6.0"], + ["is_false", "float", "postgresql", "2.5.7", "4.2"], + ["is_false", "float", "postgresql", "2.5.7", "5.2"], + ["is_false", "float", "postgresql", "2.5.7", "6.0"], + ["is_false", "float", "postgresql", "2.4.9", "4.2"], + ["is_false", "float", "postgresql", "2.4.9", "5.2"], + ["is_false", "float", "postgresql", "2.4.9", "6.0"], + ["is_false", "float", "mysql", "2.7.0", "4.2"], + ["is_false", "float", "mysql", "2.7.0", "5.2"], + ["is_false", "float", "mysql", "2.7.0", "6.0"], + ["is_false", "float", "mysql", "2.6.5", "4.2"], + ["is_false", "float", "mysql", "2.6.5", "5.2"], + ["is_false", "float", "mysql", "2.6.5", "6.0"], + ["is_false", "float", "mysql", "2.5.7", "4.2"], + ["is_false", "float", "mysql", "2.5.7", "5.2"], + ["is_false", "float", "mysql", "2.5.7", "6.0"], + ["is_false", "float", "mysql", "2.4.9", "4.2"], + ["is_false", "float", "mysql", "2.4.9", "5.2"], + ["is_false", "float", "mysql", "2.4.9", "6.0"], + ["is_false", "float", "sqlite", "2.7.0", "4.2"], + ["is_false", "float", "sqlite", "2.7.0", "5.2"], + ["is_false", "float", "sqlite", "2.7.0", "6.0"], + ["is_false", "float", "sqlite", "2.6.5", "4.2"], + ["is_false", "float", "sqlite", "2.6.5", "5.2"], + ["is_false", "float", "sqlite", "2.6.5", "6.0"], + ["is_false", "float", "sqlite", "2.5.7", "4.2"], + ["is_false", "float", "sqlite", "2.5.7", "5.2"], + ["is_false", "float", "sqlite", "2.5.7", "6.0"], + ["is_false", "float", "sqlite", "2.4.9", "4.2"], + ["is_false", "float", "sqlite", "2.4.9", "5.2"], + ["is_false", "float", "sqlite", "2.4.9", "6.0"], + ["is_false", "integer", "postgresql", "2.7.0", "4.2"], + ["is_false", "integer", "postgresql", "2.7.0", "5.2"], + ["is_false", "integer", "postgresql", "2.7.0", "6.0"], + ["is_false", "integer", "postgresql", "2.6.5", "4.2"], + ["is_false", "integer", "postgresql", "2.6.5", "5.2"], + ["is_false", "integer", "postgresql", "2.6.5", "6.0"], + ["is_false", "integer", "postgresql", "2.5.7", "4.2"], + ["is_false", "integer", "postgresql", "2.5.7", "5.2"], + ["is_false", "integer", "postgresql", "2.5.7", "6.0"], + ["is_false", "integer", "postgresql", "2.4.9", "4.2"], + ["is_false", "integer", "postgresql", "2.4.9", "5.2"], + ["is_false", "integer", "postgresql", "2.4.9", "6.0"], + ["is_false", "integer", "mysql", "2.7.0", "4.2"], + ["is_false", "integer", "mysql", "2.7.0", "5.2"], + ["is_false", "integer", "mysql", "2.7.0", "6.0"], + ["is_false", "integer", "mysql", "2.6.5", "4.2"], + ["is_false", "integer", "mysql", "2.6.5", "5.2"], + ["is_false", "integer", "mysql", "2.6.5", "6.0"], + ["is_false", "integer", "mysql", "2.5.7", "4.2"], + ["is_false", "integer", "mysql", "2.5.7", "5.2"], + ["is_false", "integer", "mysql", "2.5.7", "6.0"], + ["is_false", "integer", "mysql", "2.4.9", "4.2"], + ["is_false", "integer", "mysql", "2.4.9", "5.2"], + ["is_false", "integer", "mysql", "2.4.9", "6.0"], + ["is_false", "integer", "sqlite", "2.7.0", "4.2"], + ["is_false", "integer", "sqlite", "2.7.0", "5.2"], + ["is_false", "integer", "sqlite", "2.7.0", "6.0"], + ["is_false", "integer", "sqlite", "2.6.5", "4.2"], + ["is_false", "integer", "sqlite", "2.6.5", "5.2"], + ["is_false", "integer", "sqlite", "2.6.5", "6.0"], + ["is_false", "integer", "sqlite", "2.5.7", "4.2"], + ["is_false", "integer", "sqlite", "2.5.7", "5.2"], + ["is_false", "integer", "sqlite", "2.5.7", "6.0"], + ["is_false", "integer", "sqlite", "2.4.9", "4.2"], + ["is_false", "integer", "sqlite", "2.4.9", "5.2"], + ["is_false", "integer", "sqlite", "2.4.9", "6.0"], + ["is_false", "string", "postgresql", "2.7.0", "4.2"], + ["is_false", "string", "postgresql", "2.7.0", "5.2"], + ["is_false", "string", "postgresql", "2.7.0", "6.0"], + ["is_false", "string", "postgresql", "2.6.5", "4.2"], + ["is_false", "string", "postgresql", "2.6.5", "5.2"], + ["is_false", "string", "postgresql", "2.6.5", "6.0"], + ["is_false", "string", "postgresql", "2.5.7", "4.2"], + ["is_false", "string", "postgresql", "2.5.7", "5.2"], + ["is_false", "string", "postgresql", "2.5.7", "6.0"], + ["is_false", "string", "postgresql", "2.4.9", "4.2"], + ["is_false", "string", "postgresql", "2.4.9", "5.2"], + ["is_false", "string", "postgresql", "2.4.9", "6.0"], + ["is_false", "string", "mysql", "2.7.0", "4.2"], + ["is_false", "string", "mysql", "2.7.0", "5.2"], + ["is_false", "string", "mysql", "2.7.0", "6.0"], + ["is_false", "string", "mysql", "2.6.5", "4.2"], + ["is_false", "string", "mysql", "2.6.5", "5.2"], + ["is_false", "string", "mysql", "2.6.5", "6.0"], + ["is_false", "string", "mysql", "2.5.7", "4.2"], + ["is_false", "string", "mysql", "2.5.7", "5.2"], + ["is_false", "string", "mysql", "2.5.7", "6.0"], + ["is_false", "string", "mysql", "2.4.9", "4.2"], + ["is_false", "string", "mysql", "2.4.9", "5.2"], + ["is_false", "string", "mysql", "2.4.9", "6.0"], + ["is_false", "string", "sqlite", "2.7.0", "4.2"], + ["is_false", "string", "sqlite", "2.7.0", "5.2"], + ["is_false", "string", "sqlite", "2.7.0", "6.0"], + ["is_false", "string", "sqlite", "2.6.5", "4.2"], + ["is_false", "string", "sqlite", "2.6.5", "5.2"], + ["is_false", "string", "sqlite", "2.6.5", "6.0"], + ["is_false", "string", "sqlite", "2.5.7", "4.2"], + ["is_false", "string", "sqlite", "2.5.7", "5.2"], + ["is_false", "string", "sqlite", "2.5.7", "6.0"], + ["is_false", "string", "sqlite", "2.4.9", "4.2"], + ["is_false", "string", "sqlite", "2.4.9", "5.2"], + ["is_false", "string", "sqlite", "2.4.9", "6.0"], + ["is_false", "text", "postgresql", "2.7.0", "4.2"], + ["is_false", "text", "postgresql", "2.7.0", "5.2"], + ["is_false", "text", "postgresql", "2.7.0", "6.0"], + ["is_false", "text", "postgresql", "2.6.5", "4.2"], + ["is_false", "text", "postgresql", "2.6.5", "5.2"], + ["is_false", "text", "postgresql", "2.6.5", "6.0"], + ["is_false", "text", "postgresql", "2.5.7", "4.2"], + ["is_false", "text", "postgresql", "2.5.7", "5.2"], + ["is_false", "text", "postgresql", "2.5.7", "6.0"], + ["is_false", "text", "postgresql", "2.4.9", "4.2"], + ["is_false", "text", "postgresql", "2.4.9", "5.2"], + ["is_false", "text", "postgresql", "2.4.9", "6.0"], + ["is_false", "text", "mysql", "2.7.0", "4.2"], + ["is_false", "text", "mysql", "2.7.0", "5.2"], + ["is_false", "text", "mysql", "2.7.0", "6.0"], + ["is_false", "text", "mysql", "2.6.5", "4.2"], + ["is_false", "text", "mysql", "2.6.5", "5.2"], + ["is_false", "text", "mysql", "2.6.5", "6.0"], + ["is_false", "text", "mysql", "2.5.7", "4.2"], + ["is_false", "text", "mysql", "2.5.7", "5.2"], + ["is_false", "text", "mysql", "2.5.7", "6.0"], + ["is_false", "text", "mysql", "2.4.9", "4.2"], + ["is_false", "text", "mysql", "2.4.9", "5.2"], + ["is_false", "text", "mysql", "2.4.9", "6.0"], + ["is_false", "text", "sqlite", "2.7.0", "4.2"], + ["is_false", "text", "sqlite", "2.7.0", "5.2"], + ["is_false", "text", "sqlite", "2.7.0", "6.0"], + ["is_false", "text", "sqlite", "2.6.5", "4.2"], + ["is_false", "text", "sqlite", "2.6.5", "5.2"], + ["is_false", "text", "sqlite", "2.6.5", "6.0"], + ["is_false", "text", "sqlite", "2.5.7", "4.2"], + ["is_false", "text", "sqlite", "2.5.7", "5.2"], + ["is_false", "text", "sqlite", "2.5.7", "6.0"], + ["is_false", "text", "sqlite", "2.4.9", "4.2"], + ["is_false", "text", "sqlite", "2.4.9", "5.2"], + ["is_false", "text", "sqlite", "2.4.9", "6.0"], + ["is_false", "time", "postgresql", "2.7.0", "4.2"], + ["is_false", "time", "postgresql", "2.7.0", "5.2"], + ["is_false", "time", "postgresql", "2.7.0", "6.0"], + ["is_false", "time", "postgresql", "2.6.5", "4.2"], + ["is_false", "time", "postgresql", "2.6.5", "5.2"], + ["is_false", "time", "postgresql", "2.6.5", "6.0"], + ["is_false", "time", "postgresql", "2.5.7", "4.2"], + ["is_false", "time", "postgresql", "2.5.7", "5.2"], + ["is_false", "time", "postgresql", "2.5.7", "6.0"], + ["is_false", "time", "postgresql", "2.4.9", "4.2"], + ["is_false", "time", "postgresql", "2.4.9", "5.2"], + ["is_false", "time", "postgresql", "2.4.9", "6.0"], + ["is_false", "time", "mysql", "2.7.0", "4.2"], + ["is_false", "time", "mysql", "2.7.0", "5.2"], + ["is_false", "time", "mysql", "2.7.0", "6.0"], + ["is_false", "time", "mysql", "2.6.5", "4.2"], + ["is_false", "time", "mysql", "2.6.5", "5.2"], + ["is_false", "time", "mysql", "2.6.5", "6.0"], + ["is_false", "time", "mysql", "2.5.7", "4.2"], + ["is_false", "time", "mysql", "2.5.7", "5.2"], + ["is_false", "time", "mysql", "2.5.7", "6.0"], + ["is_false", "time", "mysql", "2.4.9", "4.2"], + ["is_false", "time", "mysql", "2.4.9", "5.2"], + ["is_false", "time", "mysql", "2.4.9", "6.0"], + ["is_false", "time", "sqlite", "2.7.0", "4.2"], + ["is_false", "time", "sqlite", "2.7.0", "5.2"], + ["is_false", "time", "sqlite", "2.7.0", "6.0"], + ["is_false", "time", "sqlite", "2.6.5", "4.2"], + ["is_false", "time", "sqlite", "2.6.5", "5.2"], + ["is_false", "time", "sqlite", "2.6.5", "6.0"], + ["is_false", "time", "sqlite", "2.5.7", "4.2"], + ["is_false", "time", "sqlite", "2.5.7", "5.2"], + ["is_false", "time", "sqlite", "2.5.7", "6.0"], + ["is_false", "time", "sqlite", "2.4.9", "4.2"], + ["is_false", "time", "sqlite", "2.4.9", "5.2"], + ["is_false", "time", "sqlite", "2.4.9", "6.0"], + ["is_null", "binary", "postgresql", "2.7.0", "4.2"], + ["is_null", "binary", "postgresql", "2.7.0", "5.2"], + ["is_null", "binary", "postgresql", "2.7.0", "6.0"], + ["is_null", "binary", "postgresql", "2.6.5", "4.2"], + ["is_null", "binary", "postgresql", "2.6.5", "5.2"], + ["is_null", "binary", "postgresql", "2.6.5", "6.0"], + ["is_null", "binary", "postgresql", "2.5.7", "4.2"], + ["is_null", "binary", "postgresql", "2.5.7", "5.2"], + ["is_null", "binary", "postgresql", "2.5.7", "6.0"], + ["is_null", "binary", "postgresql", "2.4.9", "4.2"], + ["is_null", "binary", "postgresql", "2.4.9", "5.2"], + ["is_null", "binary", "postgresql", "2.4.9", "6.0"], + ["is_null", "binary", "mysql", "2.7.0", "4.2"], + ["is_null", "binary", "mysql", "2.7.0", "5.2"], + ["is_null", "binary", "mysql", "2.7.0", "6.0"], + ["is_null", "binary", "mysql", "2.6.5", "4.2"], + ["is_null", "binary", "mysql", "2.6.5", "5.2"], + ["is_null", "binary", "mysql", "2.6.5", "6.0"], + ["is_null", "binary", "mysql", "2.5.7", "4.2"], + ["is_null", "binary", "mysql", "2.5.7", "5.2"], + ["is_null", "binary", "mysql", "2.5.7", "6.0"], + ["is_null", "binary", "mysql", "2.4.9", "4.2"], + ["is_null", "binary", "mysql", "2.4.9", "5.2"], + ["is_null", "binary", "mysql", "2.4.9", "6.0"], + ["is_null", "binary", "sqlite", "2.7.0", "4.2"], + ["is_null", "binary", "sqlite", "2.7.0", "5.2"], + ["is_null", "binary", "sqlite", "2.7.0", "6.0"], + ["is_null", "binary", "sqlite", "2.6.5", "4.2"], + ["is_null", "binary", "sqlite", "2.6.5", "5.2"], + ["is_null", "binary", "sqlite", "2.6.5", "6.0"], + ["is_null", "binary", "sqlite", "2.5.7", "4.2"], + ["is_null", "binary", "sqlite", "2.5.7", "5.2"], + ["is_null", "binary", "sqlite", "2.5.7", "6.0"], + ["is_null", "binary", "sqlite", "2.4.9", "4.2"], + ["is_null", "binary", "sqlite", "2.4.9", "5.2"], + ["is_null", "binary", "sqlite", "2.4.9", "6.0"], + ["is_null", "boolean", "postgresql", "2.7.0", "4.2"], + ["is_null", "boolean", "postgresql", "2.7.0", "5.2"], + ["is_null", "boolean", "postgresql", "2.7.0", "6.0"], + ["is_null", "boolean", "postgresql", "2.6.5", "4.2"], + ["is_null", "boolean", "postgresql", "2.6.5", "5.2"], + ["is_null", "boolean", "postgresql", "2.6.5", "6.0"], + ["is_null", "boolean", "postgresql", "2.5.7", "4.2"], + ["is_null", "boolean", "postgresql", "2.5.7", "5.2"], + ["is_null", "boolean", "postgresql", "2.5.7", "6.0"], + ["is_null", "boolean", "postgresql", "2.4.9", "4.2"], + ["is_null", "boolean", "postgresql", "2.4.9", "5.2"], + ["is_null", "boolean", "postgresql", "2.4.9", "6.0"], + ["is_null", "boolean", "mysql", "2.7.0", "4.2"], + ["is_null", "boolean", "mysql", "2.7.0", "5.2"], + ["is_null", "boolean", "mysql", "2.7.0", "6.0"], + ["is_null", "boolean", "mysql", "2.6.5", "4.2"], + ["is_null", "boolean", "mysql", "2.6.5", "5.2"], + ["is_null", "boolean", "mysql", "2.6.5", "6.0"], + ["is_null", "boolean", "mysql", "2.5.7", "4.2"], + ["is_null", "boolean", "mysql", "2.5.7", "5.2"], + ["is_null", "boolean", "mysql", "2.5.7", "6.0"], + ["is_null", "boolean", "mysql", "2.4.9", "4.2"], + ["is_null", "boolean", "mysql", "2.4.9", "5.2"], + ["is_null", "boolean", "mysql", "2.4.9", "6.0"], + ["is_null", "boolean", "sqlite", "2.7.0", "4.2"], + ["is_null", "boolean", "sqlite", "2.7.0", "5.2"], + ["is_null", "boolean", "sqlite", "2.7.0", "6.0"], + ["is_null", "boolean", "sqlite", "2.6.5", "4.2"], + ["is_null", "boolean", "sqlite", "2.6.5", "5.2"], + ["is_null", "boolean", "sqlite", "2.6.5", "6.0"], + ["is_null", "boolean", "sqlite", "2.5.7", "4.2"], + ["is_null", "boolean", "sqlite", "2.5.7", "5.2"], + ["is_null", "boolean", "sqlite", "2.5.7", "6.0"], + ["is_null", "boolean", "sqlite", "2.4.9", "4.2"], + ["is_null", "boolean", "sqlite", "2.4.9", "5.2"], + ["is_null", "boolean", "sqlite", "2.4.9", "6.0"], + ["is_null", "date", "postgresql", "2.7.0", "4.2"], + ["is_null", "date", "postgresql", "2.7.0", "5.2"], + ["is_null", "date", "postgresql", "2.7.0", "6.0"], + ["is_null", "date", "postgresql", "2.6.5", "4.2"], + ["is_null", "date", "postgresql", "2.6.5", "5.2"], + ["is_null", "date", "postgresql", "2.6.5", "6.0"], + ["is_null", "date", "postgresql", "2.5.7", "4.2"], + ["is_null", "date", "postgresql", "2.5.7", "5.2"], + ["is_null", "date", "postgresql", "2.5.7", "6.0"], + ["is_null", "date", "postgresql", "2.4.9", "4.2"], + ["is_null", "date", "postgresql", "2.4.9", "5.2"], + ["is_null", "date", "postgresql", "2.4.9", "6.0"], + ["is_null", "date", "mysql", "2.7.0", "4.2"], + ["is_null", "date", "mysql", "2.7.0", "5.2"], + ["is_null", "date", "mysql", "2.7.0", "6.0"], + ["is_null", "date", "mysql", "2.6.5", "4.2"], + ["is_null", "date", "mysql", "2.6.5", "5.2"], + ["is_null", "date", "mysql", "2.6.5", "6.0"], + ["is_null", "date", "mysql", "2.5.7", "4.2"], + ["is_null", "date", "mysql", "2.5.7", "5.2"], + ["is_null", "date", "mysql", "2.5.7", "6.0"], + ["is_null", "date", "mysql", "2.4.9", "4.2"], + ["is_null", "date", "mysql", "2.4.9", "5.2"], + ["is_null", "date", "mysql", "2.4.9", "6.0"], + ["is_null", "date", "sqlite", "2.7.0", "4.2"], + ["is_null", "date", "sqlite", "2.7.0", "5.2"], + ["is_null", "date", "sqlite", "2.7.0", "6.0"], + ["is_null", "date", "sqlite", "2.6.5", "4.2"], + ["is_null", "date", "sqlite", "2.6.5", "5.2"], + ["is_null", "date", "sqlite", "2.6.5", "6.0"], + ["is_null", "date", "sqlite", "2.5.7", "4.2"], + ["is_null", "date", "sqlite", "2.5.7", "5.2"], + ["is_null", "date", "sqlite", "2.5.7", "6.0"], + ["is_null", "date", "sqlite", "2.4.9", "4.2"], + ["is_null", "date", "sqlite", "2.4.9", "5.2"], + ["is_null", "date", "sqlite", "2.4.9", "6.0"], + ["is_null", "datetime", "postgresql", "2.7.0", "4.2"], + ["is_null", "datetime", "postgresql", "2.7.0", "5.2"], + ["is_null", "datetime", "postgresql", "2.7.0", "6.0"], + ["is_null", "datetime", "postgresql", "2.6.5", "4.2"], + ["is_null", "datetime", "postgresql", "2.6.5", "5.2"], + ["is_null", "datetime", "postgresql", "2.6.5", "6.0"], + ["is_null", "datetime", "postgresql", "2.5.7", "4.2"], + ["is_null", "datetime", "postgresql", "2.5.7", "5.2"], + ["is_null", "datetime", "postgresql", "2.5.7", "6.0"], + ["is_null", "datetime", "postgresql", "2.4.9", "4.2"], + ["is_null", "datetime", "postgresql", "2.4.9", "5.2"], + ["is_null", "datetime", "postgresql", "2.4.9", "6.0"], + ["is_null", "datetime", "mysql", "2.7.0", "4.2"], + ["is_null", "datetime", "mysql", "2.7.0", "5.2"], + ["is_null", "datetime", "mysql", "2.7.0", "6.0"], + ["is_null", "datetime", "mysql", "2.6.5", "4.2"], + ["is_null", "datetime", "mysql", "2.6.5", "5.2"], + ["is_null", "datetime", "mysql", "2.6.5", "6.0"], + ["is_null", "datetime", "mysql", "2.5.7", "4.2"], + ["is_null", "datetime", "mysql", "2.5.7", "5.2"], + ["is_null", "datetime", "mysql", "2.5.7", "6.0"], + ["is_null", "datetime", "mysql", "2.4.9", "4.2"], + ["is_null", "datetime", "mysql", "2.4.9", "5.2"], + ["is_null", "datetime", "mysql", "2.4.9", "6.0"], + ["is_null", "datetime", "sqlite", "2.7.0", "4.2"], + ["is_null", "datetime", "sqlite", "2.7.0", "5.2"], + ["is_null", "datetime", "sqlite", "2.7.0", "6.0"], + ["is_null", "datetime", "sqlite", "2.6.5", "4.2"], + ["is_null", "datetime", "sqlite", "2.6.5", "5.2"], + ["is_null", "datetime", "sqlite", "2.6.5", "6.0"], + ["is_null", "datetime", "sqlite", "2.5.7", "4.2"], + ["is_null", "datetime", "sqlite", "2.5.7", "5.2"], + ["is_null", "datetime", "sqlite", "2.5.7", "6.0"], + ["is_null", "datetime", "sqlite", "2.4.9", "4.2"], + ["is_null", "datetime", "sqlite", "2.4.9", "5.2"], + ["is_null", "datetime", "sqlite", "2.4.9", "6.0"], + ["is_null", "decimal", "postgresql", "2.7.0", "4.2"], + ["is_null", "decimal", "postgresql", "2.7.0", "5.2"], + ["is_null", "decimal", "postgresql", "2.7.0", "6.0"], + ["is_null", "decimal", "postgresql", "2.6.5", "4.2"], + ["is_null", "decimal", "postgresql", "2.6.5", "5.2"], + ["is_null", "decimal", "postgresql", "2.6.5", "6.0"], + ["is_null", "decimal", "postgresql", "2.5.7", "4.2"], + ["is_null", "decimal", "postgresql", "2.5.7", "5.2"], + ["is_null", "decimal", "postgresql", "2.5.7", "6.0"], + ["is_null", "decimal", "postgresql", "2.4.9", "4.2"], + ["is_null", "decimal", "postgresql", "2.4.9", "5.2"], + ["is_null", "decimal", "postgresql", "2.4.9", "6.0"], + ["is_null", "decimal", "mysql", "2.7.0", "4.2"], + ["is_null", "decimal", "mysql", "2.7.0", "5.2"], + ["is_null", "decimal", "mysql", "2.7.0", "6.0"], + ["is_null", "decimal", "mysql", "2.6.5", "4.2"], + ["is_null", "decimal", "mysql", "2.6.5", "5.2"], + ["is_null", "decimal", "mysql", "2.6.5", "6.0"], + ["is_null", "decimal", "mysql", "2.5.7", "4.2"], + ["is_null", "decimal", "mysql", "2.5.7", "5.2"], + ["is_null", "decimal", "mysql", "2.5.7", "6.0"], + ["is_null", "decimal", "mysql", "2.4.9", "4.2"], + ["is_null", "decimal", "mysql", "2.4.9", "5.2"], + ["is_null", "decimal", "mysql", "2.4.9", "6.0"], + ["is_null", "decimal", "sqlite", "2.7.0", "4.2"], + ["is_null", "decimal", "sqlite", "2.7.0", "5.2"], + ["is_null", "decimal", "sqlite", "2.7.0", "6.0"], + ["is_null", "decimal", "sqlite", "2.6.5", "4.2"], + ["is_null", "decimal", "sqlite", "2.6.5", "5.2"], + ["is_null", "decimal", "sqlite", "2.6.5", "6.0"], + ["is_null", "decimal", "sqlite", "2.5.7", "4.2"], + ["is_null", "decimal", "sqlite", "2.5.7", "5.2"], + ["is_null", "decimal", "sqlite", "2.5.7", "6.0"], + ["is_null", "decimal", "sqlite", "2.4.9", "4.2"], + ["is_null", "decimal", "sqlite", "2.4.9", "5.2"], + ["is_null", "decimal", "sqlite", "2.4.9", "6.0"], + ["is_null", "float", "postgresql", "2.7.0", "4.2"], + ["is_null", "float", "postgresql", "2.7.0", "5.2"], + ["is_null", "float", "postgresql", "2.7.0", "6.0"], + ["is_null", "float", "postgresql", "2.6.5", "4.2"], + ["is_null", "float", "postgresql", "2.6.5", "5.2"], + ["is_null", "float", "postgresql", "2.6.5", "6.0"], + ["is_null", "float", "postgresql", "2.5.7", "4.2"], + ["is_null", "float", "postgresql", "2.5.7", "5.2"], + ["is_null", "float", "postgresql", "2.5.7", "6.0"], + ["is_null", "float", "postgresql", "2.4.9", "4.2"], + ["is_null", "float", "postgresql", "2.4.9", "5.2"], + ["is_null", "float", "postgresql", "2.4.9", "6.0"], + ["is_null", "float", "mysql", "2.7.0", "4.2"], + ["is_null", "float", "mysql", "2.7.0", "5.2"], + ["is_null", "float", "mysql", "2.7.0", "6.0"], + ["is_null", "float", "mysql", "2.6.5", "4.2"], + ["is_null", "float", "mysql", "2.6.5", "5.2"], + ["is_null", "float", "mysql", "2.6.5", "6.0"], + ["is_null", "float", "mysql", "2.5.7", "4.2"], + ["is_null", "float", "mysql", "2.5.7", "5.2"], + ["is_null", "float", "mysql", "2.5.7", "6.0"], + ["is_null", "float", "mysql", "2.4.9", "4.2"], + ["is_null", "float", "mysql", "2.4.9", "5.2"], + ["is_null", "float", "mysql", "2.4.9", "6.0"], + ["is_null", "float", "sqlite", "2.7.0", "4.2"], + ["is_null", "float", "sqlite", "2.7.0", "5.2"], + ["is_null", "float", "sqlite", "2.7.0", "6.0"], + ["is_null", "float", "sqlite", "2.6.5", "4.2"], + ["is_null", "float", "sqlite", "2.6.5", "5.2"], + ["is_null", "float", "sqlite", "2.6.5", "6.0"], + ["is_null", "float", "sqlite", "2.5.7", "4.2"], + ["is_null", "float", "sqlite", "2.5.7", "5.2"], + ["is_null", "float", "sqlite", "2.5.7", "6.0"], + ["is_null", "float", "sqlite", "2.4.9", "4.2"], + ["is_null", "float", "sqlite", "2.4.9", "5.2"], + ["is_null", "float", "sqlite", "2.4.9", "6.0"], + ["is_null", "integer", "postgresql", "2.7.0", "4.2"], + ["is_null", "integer", "postgresql", "2.7.0", "5.2"], + ["is_null", "integer", "postgresql", "2.7.0", "6.0"], + ["is_null", "integer", "postgresql", "2.6.5", "4.2"], + ["is_null", "integer", "postgresql", "2.6.5", "5.2"], + ["is_null", "integer", "postgresql", "2.6.5", "6.0"], + ["is_null", "integer", "postgresql", "2.5.7", "4.2"], + ["is_null", "integer", "postgresql", "2.5.7", "5.2"], + ["is_null", "integer", "postgresql", "2.5.7", "6.0"], + ["is_null", "integer", "postgresql", "2.4.9", "4.2"], + ["is_null", "integer", "postgresql", "2.4.9", "5.2"], + ["is_null", "integer", "postgresql", "2.4.9", "6.0"], + ["is_null", "integer", "mysql", "2.7.0", "4.2"], + ["is_null", "integer", "mysql", "2.7.0", "5.2"], + ["is_null", "integer", "mysql", "2.7.0", "6.0"], + ["is_null", "integer", "mysql", "2.6.5", "4.2"], + ["is_null", "integer", "mysql", "2.6.5", "5.2"], + ["is_null", "integer", "mysql", "2.6.5", "6.0"], + ["is_null", "integer", "mysql", "2.5.7", "4.2"], + ["is_null", "integer", "mysql", "2.5.7", "5.2"], + ["is_null", "integer", "mysql", "2.5.7", "6.0"], + ["is_null", "integer", "mysql", "2.4.9", "4.2"], + ["is_null", "integer", "mysql", "2.4.9", "5.2"], + ["is_null", "integer", "mysql", "2.4.9", "6.0"], + ["is_null", "integer", "sqlite", "2.7.0", "4.2"], + ["is_null", "integer", "sqlite", "2.7.0", "5.2"], + ["is_null", "integer", "sqlite", "2.7.0", "6.0"], + ["is_null", "integer", "sqlite", "2.6.5", "4.2"], + ["is_null", "integer", "sqlite", "2.6.5", "5.2"], + ["is_null", "integer", "sqlite", "2.6.5", "6.0"], + ["is_null", "integer", "sqlite", "2.5.7", "4.2"], + ["is_null", "integer", "sqlite", "2.5.7", "5.2"], + ["is_null", "integer", "sqlite", "2.5.7", "6.0"], + ["is_null", "integer", "sqlite", "2.4.9", "4.2"], + ["is_null", "integer", "sqlite", "2.4.9", "5.2"], + ["is_null", "integer", "sqlite", "2.4.9", "6.0"], + ["is_null", "string", "postgresql", "2.7.0", "4.2"], + ["is_null", "string", "postgresql", "2.7.0", "5.2"], + ["is_null", "string", "postgresql", "2.7.0", "6.0"], + ["is_null", "string", "postgresql", "2.6.5", "4.2"], + ["is_null", "string", "postgresql", "2.6.5", "5.2"], + ["is_null", "string", "postgresql", "2.6.5", "6.0"], + ["is_null", "string", "postgresql", "2.5.7", "4.2"], + ["is_null", "string", "postgresql", "2.5.7", "5.2"], + ["is_null", "string", "postgresql", "2.5.7", "6.0"], + ["is_null", "string", "postgresql", "2.4.9", "4.2"], + ["is_null", "string", "postgresql", "2.4.9", "5.2"], + ["is_null", "string", "postgresql", "2.4.9", "6.0"], + ["is_null", "string", "mysql", "2.7.0", "4.2"], + ["is_null", "string", "mysql", "2.7.0", "5.2"], + ["is_null", "string", "mysql", "2.7.0", "6.0"], + ["is_null", "string", "mysql", "2.6.5", "4.2"], + ["is_null", "string", "mysql", "2.6.5", "5.2"], + ["is_null", "string", "mysql", "2.6.5", "6.0"], + ["is_null", "string", "mysql", "2.5.7", "4.2"], + ["is_null", "string", "mysql", "2.5.7", "5.2"], + ["is_null", "string", "mysql", "2.5.7", "6.0"], + ["is_null", "string", "mysql", "2.4.9", "4.2"], + ["is_null", "string", "mysql", "2.4.9", "5.2"], + ["is_null", "string", "mysql", "2.4.9", "6.0"], + ["is_null", "string", "sqlite", "2.7.0", "4.2"], + ["is_null", "string", "sqlite", "2.7.0", "5.2"], + ["is_null", "string", "sqlite", "2.7.0", "6.0"], + ["is_null", "string", "sqlite", "2.6.5", "4.2"], + ["is_null", "string", "sqlite", "2.6.5", "5.2"], + ["is_null", "string", "sqlite", "2.6.5", "6.0"], + ["is_null", "string", "sqlite", "2.5.7", "4.2"], + ["is_null", "string", "sqlite", "2.5.7", "5.2"], + ["is_null", "string", "sqlite", "2.5.7", "6.0"], + ["is_null", "string", "sqlite", "2.4.9", "4.2"], + ["is_null", "string", "sqlite", "2.4.9", "5.2"], + ["is_null", "string", "sqlite", "2.4.9", "6.0"], + ["is_null", "text", "postgresql", "2.7.0", "4.2"], + ["is_null", "text", "postgresql", "2.7.0", "5.2"], + ["is_null", "text", "postgresql", "2.7.0", "6.0"], + ["is_null", "text", "postgresql", "2.6.5", "4.2"], + ["is_null", "text", "postgresql", "2.6.5", "5.2"], + ["is_null", "text", "postgresql", "2.6.5", "6.0"], + ["is_null", "text", "postgresql", "2.5.7", "4.2"], + ["is_null", "text", "postgresql", "2.5.7", "5.2"], + ["is_null", "text", "postgresql", "2.5.7", "6.0"], + ["is_null", "text", "postgresql", "2.4.9", "4.2"], + ["is_null", "text", "postgresql", "2.4.9", "5.2"], + ["is_null", "text", "postgresql", "2.4.9", "6.0"], + ["is_null", "text", "mysql", "2.7.0", "4.2"], + ["is_null", "text", "mysql", "2.7.0", "5.2"], + ["is_null", "text", "mysql", "2.7.0", "6.0"], + ["is_null", "text", "mysql", "2.6.5", "4.2"], + ["is_null", "text", "mysql", "2.6.5", "5.2"], + ["is_null", "text", "mysql", "2.6.5", "6.0"], + ["is_null", "text", "mysql", "2.5.7", "4.2"], + ["is_null", "text", "mysql", "2.5.7", "5.2"], + ["is_null", "text", "mysql", "2.5.7", "6.0"], + ["is_null", "text", "mysql", "2.4.9", "4.2"], + ["is_null", "text", "mysql", "2.4.9", "5.2"], + ["is_null", "text", "mysql", "2.4.9", "6.0"], + ["is_null", "text", "sqlite", "2.7.0", "4.2"], + ["is_null", "text", "sqlite", "2.7.0", "5.2"], + ["is_null", "text", "sqlite", "2.7.0", "6.0"], + ["is_null", "text", "sqlite", "2.6.5", "4.2"], + ["is_null", "text", "sqlite", "2.6.5", "5.2"], + ["is_null", "text", "sqlite", "2.6.5", "6.0"], + ["is_null", "text", "sqlite", "2.5.7", "4.2"], + ["is_null", "text", "sqlite", "2.5.7", "5.2"], + ["is_null", "text", "sqlite", "2.5.7", "6.0"], + ["is_null", "text", "sqlite", "2.4.9", "4.2"], + ["is_null", "text", "sqlite", "2.4.9", "5.2"], + ["is_null", "text", "sqlite", "2.4.9", "6.0"], + ["is_null", "time", "postgresql", "2.7.0", "4.2"], + ["is_null", "time", "postgresql", "2.7.0", "5.2"], + ["is_null", "time", "postgresql", "2.7.0", "6.0"], + ["is_null", "time", "postgresql", "2.6.5", "4.2"], + ["is_null", "time", "postgresql", "2.6.5", "5.2"], + ["is_null", "time", "postgresql", "2.6.5", "6.0"], + ["is_null", "time", "postgresql", "2.5.7", "4.2"], + ["is_null", "time", "postgresql", "2.5.7", "5.2"], + ["is_null", "time", "postgresql", "2.5.7", "6.0"], + ["is_null", "time", "postgresql", "2.4.9", "4.2"], + ["is_null", "time", "postgresql", "2.4.9", "5.2"], + ["is_null", "time", "postgresql", "2.4.9", "6.0"], + ["is_null", "time", "mysql", "2.7.0", "4.2"], + ["is_null", "time", "mysql", "2.7.0", "5.2"], + ["is_null", "time", "mysql", "2.7.0", "6.0"], + ["is_null", "time", "mysql", "2.6.5", "4.2"], + ["is_null", "time", "mysql", "2.6.5", "5.2"], + ["is_null", "time", "mysql", "2.6.5", "6.0"], + ["is_null", "time", "mysql", "2.5.7", "4.2"], + ["is_null", "time", "mysql", "2.5.7", "5.2"], + ["is_null", "time", "mysql", "2.5.7", "6.0"], + ["is_null", "time", "mysql", "2.4.9", "4.2"], + ["is_null", "time", "mysql", "2.4.9", "5.2"], + ["is_null", "time", "mysql", "2.4.9", "6.0"], + ["is_null", "time", "sqlite", "2.7.0", "4.2"], + ["is_null", "time", "sqlite", "2.7.0", "5.2"], + ["is_null", "time", "sqlite", "2.7.0", "6.0"], + ["is_null", "time", "sqlite", "2.6.5", "4.2"], + ["is_null", "time", "sqlite", "2.6.5", "5.2"], + ["is_null", "time", "sqlite", "2.6.5", "6.0"], + ["is_null", "time", "sqlite", "2.5.7", "4.2"], + ["is_null", "time", "sqlite", "2.5.7", "5.2"], + ["is_null", "time", "sqlite", "2.5.7", "6.0"], + ["is_null", "time", "sqlite", "2.4.9", "4.2"], + ["is_null", "time", "sqlite", "2.4.9", "5.2"], + ["is_null", "time", "sqlite", "2.4.9", "6.0"], + ["not_null", "binary", "postgresql", "2.7.0", "4.2"], + ["not_null", "binary", "postgresql", "2.7.0", "5.2"], + ["not_null", "binary", "postgresql", "2.7.0", "6.0"], + ["not_null", "binary", "postgresql", "2.6.5", "4.2"], + ["not_null", "binary", "postgresql", "2.6.5", "5.2"], + ["not_null", "binary", "postgresql", "2.6.5", "6.0"], + ["not_null", "binary", "postgresql", "2.5.7", "4.2"], + ["not_null", "binary", "postgresql", "2.5.7", "5.2"], + ["not_null", "binary", "postgresql", "2.5.7", "6.0"], + ["not_null", "binary", "postgresql", "2.4.9", "4.2"], + ["not_null", "binary", "postgresql", "2.4.9", "5.2"], + ["not_null", "binary", "postgresql", "2.4.9", "6.0"], + ["not_null", "binary", "mysql", "2.7.0", "4.2"], + ["not_null", "binary", "mysql", "2.7.0", "5.2"], + ["not_null", "binary", "mysql", "2.7.0", "6.0"], + ["not_null", "binary", "mysql", "2.6.5", "4.2"], + ["not_null", "binary", "mysql", "2.6.5", "5.2"], + ["not_null", "binary", "mysql", "2.6.5", "6.0"], + ["not_null", "binary", "mysql", "2.5.7", "4.2"], + ["not_null", "binary", "mysql", "2.5.7", "5.2"], + ["not_null", "binary", "mysql", "2.5.7", "6.0"], + ["not_null", "binary", "mysql", "2.4.9", "4.2"], + ["not_null", "binary", "mysql", "2.4.9", "5.2"], + ["not_null", "binary", "mysql", "2.4.9", "6.0"], + ["not_null", "binary", "sqlite", "2.7.0", "4.2"], + ["not_null", "binary", "sqlite", "2.7.0", "5.2"], + ["not_null", "binary", "sqlite", "2.7.0", "6.0"], + ["not_null", "binary", "sqlite", "2.6.5", "4.2"], + ["not_null", "binary", "sqlite", "2.6.5", "5.2"], + ["not_null", "binary", "sqlite", "2.6.5", "6.0"], + ["not_null", "binary", "sqlite", "2.5.7", "4.2"], + ["not_null", "binary", "sqlite", "2.5.7", "5.2"], + ["not_null", "binary", "sqlite", "2.5.7", "6.0"], + ["not_null", "binary", "sqlite", "2.4.9", "4.2"], + ["not_null", "binary", "sqlite", "2.4.9", "5.2"], + ["not_null", "binary", "sqlite", "2.4.9", "6.0"], + ["not_null", "boolean", "postgresql", "2.7.0", "4.2"], + ["not_null", "boolean", "postgresql", "2.7.0", "5.2"], + ["not_null", "boolean", "postgresql", "2.7.0", "6.0"], + ["not_null", "boolean", "postgresql", "2.6.5", "4.2"], + ["not_null", "boolean", "postgresql", "2.6.5", "5.2"], + ["not_null", "boolean", "postgresql", "2.6.5", "6.0"], + ["not_null", "boolean", "postgresql", "2.5.7", "4.2"], + ["not_null", "boolean", "postgresql", "2.5.7", "5.2"], + ["not_null", "boolean", "postgresql", "2.5.7", "6.0"], + ["not_null", "boolean", "postgresql", "2.4.9", "4.2"], + ["not_null", "boolean", "postgresql", "2.4.9", "5.2"], + ["not_null", "boolean", "postgresql", "2.4.9", "6.0"], + ["not_null", "boolean", "mysql", "2.7.0", "4.2"], + ["not_null", "boolean", "mysql", "2.7.0", "5.2"], + ["not_null", "boolean", "mysql", "2.7.0", "6.0"], + ["not_null", "boolean", "mysql", "2.6.5", "4.2"], + ["not_null", "boolean", "mysql", "2.6.5", "5.2"], + ["not_null", "boolean", "mysql", "2.6.5", "6.0"], + ["not_null", "boolean", "mysql", "2.5.7", "4.2"], + ["not_null", "boolean", "mysql", "2.5.7", "5.2"], + ["not_null", "boolean", "mysql", "2.5.7", "6.0"], + ["not_null", "boolean", "mysql", "2.4.9", "4.2"], + ["not_null", "boolean", "mysql", "2.4.9", "5.2"], + ["not_null", "boolean", "mysql", "2.4.9", "6.0"], + ["not_null", "boolean", "sqlite", "2.7.0", "4.2"], + ["not_null", "boolean", "sqlite", "2.7.0", "5.2"], + ["not_null", "boolean", "sqlite", "2.7.0", "6.0"], + ["not_null", "boolean", "sqlite", "2.6.5", "4.2"], + ["not_null", "boolean", "sqlite", "2.6.5", "5.2"], + ["not_null", "boolean", "sqlite", "2.6.5", "6.0"], + ["not_null", "boolean", "sqlite", "2.5.7", "4.2"], + ["not_null", "boolean", "sqlite", "2.5.7", "5.2"], + ["not_null", "boolean", "sqlite", "2.5.7", "6.0"], + ["not_null", "boolean", "sqlite", "2.4.9", "4.2"], + ["not_null", "boolean", "sqlite", "2.4.9", "5.2"], + ["not_null", "boolean", "sqlite", "2.4.9", "6.0"], + ["not_null", "date", "postgresql", "2.7.0", "4.2"], + ["not_null", "date", "postgresql", "2.7.0", "5.2"], + ["not_null", "date", "postgresql", "2.7.0", "6.0"], + ["not_null", "date", "postgresql", "2.6.5", "4.2"], + ["not_null", "date", "postgresql", "2.6.5", "5.2"], + ["not_null", "date", "postgresql", "2.6.5", "6.0"], + ["not_null", "date", "postgresql", "2.5.7", "4.2"], + ["not_null", "date", "postgresql", "2.5.7", "5.2"], + ["not_null", "date", "postgresql", "2.5.7", "6.0"], + ["not_null", "date", "postgresql", "2.4.9", "4.2"], + ["not_null", "date", "postgresql", "2.4.9", "5.2"], + ["not_null", "date", "postgresql", "2.4.9", "6.0"], + ["not_null", "date", "mysql", "2.7.0", "4.2"], + ["not_null", "date", "mysql", "2.7.0", "5.2"], + ["not_null", "date", "mysql", "2.7.0", "6.0"], + ["not_null", "date", "mysql", "2.6.5", "4.2"], + ["not_null", "date", "mysql", "2.6.5", "5.2"], + ["not_null", "date", "mysql", "2.6.5", "6.0"], + ["not_null", "date", "mysql", "2.5.7", "4.2"], + ["not_null", "date", "mysql", "2.5.7", "5.2"], + ["not_null", "date", "mysql", "2.5.7", "6.0"], + ["not_null", "date", "mysql", "2.4.9", "4.2"], + ["not_null", "date", "mysql", "2.4.9", "5.2"], + ["not_null", "date", "mysql", "2.4.9", "6.0"], + ["not_null", "date", "sqlite", "2.7.0", "4.2"], + ["not_null", "date", "sqlite", "2.7.0", "5.2"], + ["not_null", "date", "sqlite", "2.7.0", "6.0"], + ["not_null", "date", "sqlite", "2.6.5", "4.2"], + ["not_null", "date", "sqlite", "2.6.5", "5.2"], + ["not_null", "date", "sqlite", "2.6.5", "6.0"], + ["not_null", "date", "sqlite", "2.5.7", "4.2"], + ["not_null", "date", "sqlite", "2.5.7", "5.2"], + ["not_null", "date", "sqlite", "2.5.7", "6.0"], + ["not_null", "date", "sqlite", "2.4.9", "4.2"], + ["not_null", "date", "sqlite", "2.4.9", "5.2"], + ["not_null", "date", "sqlite", "2.4.9", "6.0"], + ["not_null", "datetime", "postgresql", "2.7.0", "4.2"], + ["not_null", "datetime", "postgresql", "2.7.0", "5.2"], + ["not_null", "datetime", "postgresql", "2.7.0", "6.0"], + ["not_null", "datetime", "postgresql", "2.6.5", "4.2"], + ["not_null", "datetime", "postgresql", "2.6.5", "5.2"], + ["not_null", "datetime", "postgresql", "2.6.5", "6.0"], + ["not_null", "datetime", "postgresql", "2.5.7", "4.2"], + ["not_null", "datetime", "postgresql", "2.5.7", "5.2"], + ["not_null", "datetime", "postgresql", "2.5.7", "6.0"], + ["not_null", "datetime", "postgresql", "2.4.9", "4.2"], + ["not_null", "datetime", "postgresql", "2.4.9", "5.2"], + ["not_null", "datetime", "postgresql", "2.4.9", "6.0"], + ["not_null", "datetime", "mysql", "2.7.0", "4.2"], + ["not_null", "datetime", "mysql", "2.7.0", "5.2"], + ["not_null", "datetime", "mysql", "2.7.0", "6.0"], + ["not_null", "datetime", "mysql", "2.6.5", "4.2"], + ["not_null", "datetime", "mysql", "2.6.5", "5.2"], + ["not_null", "datetime", "mysql", "2.6.5", "6.0"], + ["not_null", "datetime", "mysql", "2.5.7", "4.2"], + ["not_null", "datetime", "mysql", "2.5.7", "5.2"], + ["not_null", "datetime", "mysql", "2.5.7", "6.0"], + ["not_null", "datetime", "mysql", "2.4.9", "4.2"], + ["not_null", "datetime", "mysql", "2.4.9", "5.2"], + ["not_null", "datetime", "mysql", "2.4.9", "6.0"], + ["not_null", "datetime", "sqlite", "2.7.0", "4.2"], + ["not_null", "datetime", "sqlite", "2.7.0", "5.2"], + ["not_null", "datetime", "sqlite", "2.7.0", "6.0"], + ["not_null", "datetime", "sqlite", "2.6.5", "4.2"], + ["not_null", "datetime", "sqlite", "2.6.5", "5.2"], + ["not_null", "datetime", "sqlite", "2.6.5", "6.0"], + ["not_null", "datetime", "sqlite", "2.5.7", "4.2"], + ["not_null", "datetime", "sqlite", "2.5.7", "5.2"], + ["not_null", "datetime", "sqlite", "2.5.7", "6.0"], + ["not_null", "datetime", "sqlite", "2.4.9", "4.2"], + ["not_null", "datetime", "sqlite", "2.4.9", "5.2"], + ["not_null", "datetime", "sqlite", "2.4.9", "6.0"], + ["not_null", "decimal", "postgresql", "2.7.0", "4.2"], + ["not_null", "decimal", "postgresql", "2.7.0", "5.2"], + ["not_null", "decimal", "postgresql", "2.7.0", "6.0"], + ["not_null", "decimal", "postgresql", "2.6.5", "4.2"], + ["not_null", "decimal", "postgresql", "2.6.5", "5.2"], + ["not_null", "decimal", "postgresql", "2.6.5", "6.0"], + ["not_null", "decimal", "postgresql", "2.5.7", "4.2"], + ["not_null", "decimal", "postgresql", "2.5.7", "5.2"], + ["not_null", "decimal", "postgresql", "2.5.7", "6.0"], + ["not_null", "decimal", "postgresql", "2.4.9", "4.2"], + ["not_null", "decimal", "postgresql", "2.4.9", "5.2"], + ["not_null", "decimal", "postgresql", "2.4.9", "6.0"], + ["not_null", "decimal", "mysql", "2.7.0", "4.2"], + ["not_null", "decimal", "mysql", "2.7.0", "5.2"], + ["not_null", "decimal", "mysql", "2.7.0", "6.0"], + ["not_null", "decimal", "mysql", "2.6.5", "4.2"], + ["not_null", "decimal", "mysql", "2.6.5", "5.2"], + ["not_null", "decimal", "mysql", "2.6.5", "6.0"], + ["not_null", "decimal", "mysql", "2.5.7", "4.2"], + ["not_null", "decimal", "mysql", "2.5.7", "5.2"], + ["not_null", "decimal", "mysql", "2.5.7", "6.0"], + ["not_null", "decimal", "mysql", "2.4.9", "4.2"], + ["not_null", "decimal", "mysql", "2.4.9", "5.2"], + ["not_null", "decimal", "mysql", "2.4.9", "6.0"], + ["not_null", "decimal", "sqlite", "2.7.0", "4.2"], + ["not_null", "decimal", "sqlite", "2.7.0", "5.2"], + ["not_null", "decimal", "sqlite", "2.7.0", "6.0"], + ["not_null", "decimal", "sqlite", "2.6.5", "4.2"], + ["not_null", "decimal", "sqlite", "2.6.5", "5.2"], + ["not_null", "decimal", "sqlite", "2.6.5", "6.0"], + ["not_null", "decimal", "sqlite", "2.5.7", "4.2"], + ["not_null", "decimal", "sqlite", "2.5.7", "5.2"], + ["not_null", "decimal", "sqlite", "2.5.7", "6.0"], + ["not_null", "decimal", "sqlite", "2.4.9", "4.2"], + ["not_null", "decimal", "sqlite", "2.4.9", "5.2"], + ["not_null", "decimal", "sqlite", "2.4.9", "6.0"], + ["not_null", "float", "postgresql", "2.7.0", "4.2"], + ["not_null", "float", "postgresql", "2.7.0", "5.2"], + ["not_null", "float", "postgresql", "2.7.0", "6.0"], + ["not_null", "float", "postgresql", "2.6.5", "4.2"], + ["not_null", "float", "postgresql", "2.6.5", "5.2"], + ["not_null", "float", "postgresql", "2.6.5", "6.0"], + ["not_null", "float", "postgresql", "2.5.7", "4.2"], + ["not_null", "float", "postgresql", "2.5.7", "5.2"], + ["not_null", "float", "postgresql", "2.5.7", "6.0"], + ["not_null", "float", "postgresql", "2.4.9", "4.2"], + ["not_null", "float", "postgresql", "2.4.9", "5.2"], + ["not_null", "float", "postgresql", "2.4.9", "6.0"], + ["not_null", "float", "mysql", "2.7.0", "4.2"], + ["not_null", "float", "mysql", "2.7.0", "5.2"], + ["not_null", "float", "mysql", "2.7.0", "6.0"], + ["not_null", "float", "mysql", "2.6.5", "4.2"], + ["not_null", "float", "mysql", "2.6.5", "5.2"], + ["not_null", "float", "mysql", "2.6.5", "6.0"], + ["not_null", "float", "mysql", "2.5.7", "4.2"], + ["not_null", "float", "mysql", "2.5.7", "5.2"], + ["not_null", "float", "mysql", "2.5.7", "6.0"], + ["not_null", "float", "mysql", "2.4.9", "4.2"], + ["not_null", "float", "mysql", "2.4.9", "5.2"], + ["not_null", "float", "mysql", "2.4.9", "6.0"], + ["not_null", "float", "sqlite", "2.7.0", "4.2"], + ["not_null", "float", "sqlite", "2.7.0", "5.2"], + ["not_null", "float", "sqlite", "2.7.0", "6.0"], + ["not_null", "float", "sqlite", "2.6.5", "4.2"], + ["not_null", "float", "sqlite", "2.6.5", "5.2"], + ["not_null", "float", "sqlite", "2.6.5", "6.0"], + ["not_null", "float", "sqlite", "2.5.7", "4.2"], + ["not_null", "float", "sqlite", "2.5.7", "5.2"], + ["not_null", "float", "sqlite", "2.5.7", "6.0"], + ["not_null", "float", "sqlite", "2.4.9", "4.2"], + ["not_null", "float", "sqlite", "2.4.9", "5.2"], + ["not_null", "float", "sqlite", "2.4.9", "6.0"], + ["not_null", "integer", "postgresql", "2.7.0", "4.2"], + ["not_null", "integer", "postgresql", "2.7.0", "5.2"], + ["not_null", "integer", "postgresql", "2.7.0", "6.0"], + ["not_null", "integer", "postgresql", "2.6.5", "4.2"], + ["not_null", "integer", "postgresql", "2.6.5", "5.2"], + ["not_null", "integer", "postgresql", "2.6.5", "6.0"], + ["not_null", "integer", "postgresql", "2.5.7", "4.2"], + ["not_null", "integer", "postgresql", "2.5.7", "5.2"], + ["not_null", "integer", "postgresql", "2.5.7", "6.0"], + ["not_null", "integer", "postgresql", "2.4.9", "4.2"], + ["not_null", "integer", "postgresql", "2.4.9", "5.2"], + ["not_null", "integer", "postgresql", "2.4.9", "6.0"], + ["not_null", "integer", "mysql", "2.7.0", "4.2"], + ["not_null", "integer", "mysql", "2.7.0", "5.2"], + ["not_null", "integer", "mysql", "2.7.0", "6.0"], + ["not_null", "integer", "mysql", "2.6.5", "4.2"], + ["not_null", "integer", "mysql", "2.6.5", "5.2"], + ["not_null", "integer", "mysql", "2.6.5", "6.0"], + ["not_null", "integer", "mysql", "2.5.7", "4.2"], + ["not_null", "integer", "mysql", "2.5.7", "5.2"], + ["not_null", "integer", "mysql", "2.5.7", "6.0"], + ["not_null", "integer", "mysql", "2.4.9", "4.2"], + ["not_null", "integer", "mysql", "2.4.9", "5.2"], + ["not_null", "integer", "mysql", "2.4.9", "6.0"], + ["not_null", "integer", "sqlite", "2.7.0", "4.2"], + ["not_null", "integer", "sqlite", "2.7.0", "5.2"], + ["not_null", "integer", "sqlite", "2.7.0", "6.0"], + ["not_null", "integer", "sqlite", "2.6.5", "4.2"], + ["not_null", "integer", "sqlite", "2.6.5", "5.2"], + ["not_null", "integer", "sqlite", "2.6.5", "6.0"], + ["not_null", "integer", "sqlite", "2.5.7", "4.2"], + ["not_null", "integer", "sqlite", "2.5.7", "5.2"], + ["not_null", "integer", "sqlite", "2.5.7", "6.0"], + ["not_null", "integer", "sqlite", "2.4.9", "4.2"], + ["not_null", "integer", "sqlite", "2.4.9", "5.2"], + ["not_null", "integer", "sqlite", "2.4.9", "6.0"], + ["not_null", "string", "postgresql", "2.7.0", "4.2"], + ["not_null", "string", "postgresql", "2.7.0", "5.2"], + ["not_null", "string", "postgresql", "2.7.0", "6.0"], + ["not_null", "string", "postgresql", "2.6.5", "4.2"], + ["not_null", "string", "postgresql", "2.6.5", "5.2"], + ["not_null", "string", "postgresql", "2.6.5", "6.0"], + ["not_null", "string", "postgresql", "2.5.7", "4.2"], + ["not_null", "string", "postgresql", "2.5.7", "5.2"], + ["not_null", "string", "postgresql", "2.5.7", "6.0"], + ["not_null", "string", "postgresql", "2.4.9", "4.2"], + ["not_null", "string", "postgresql", "2.4.9", "5.2"], + ["not_null", "string", "postgresql", "2.4.9", "6.0"], + ["not_null", "string", "mysql", "2.7.0", "4.2"], + ["not_null", "string", "mysql", "2.7.0", "5.2"], + ["not_null", "string", "mysql", "2.7.0", "6.0"], + ["not_null", "string", "mysql", "2.6.5", "4.2"], + ["not_null", "string", "mysql", "2.6.5", "5.2"], + ["not_null", "string", "mysql", "2.6.5", "6.0"], + ["not_null", "string", "mysql", "2.5.7", "4.2"], + ["not_null", "string", "mysql", "2.5.7", "5.2"], + ["not_null", "string", "mysql", "2.5.7", "6.0"], + ["not_null", "string", "mysql", "2.4.9", "4.2"], + ["not_null", "string", "mysql", "2.4.9", "5.2"], + ["not_null", "string", "mysql", "2.4.9", "6.0"], + ["not_null", "string", "sqlite", "2.7.0", "4.2"], + ["not_null", "string", "sqlite", "2.7.0", "5.2"], + ["not_null", "string", "sqlite", "2.7.0", "6.0"], + ["not_null", "string", "sqlite", "2.6.5", "4.2"], + ["not_null", "string", "sqlite", "2.6.5", "5.2"], + ["not_null", "string", "sqlite", "2.6.5", "6.0"], + ["not_null", "string", "sqlite", "2.5.7", "4.2"], + ["not_null", "string", "sqlite", "2.5.7", "5.2"], + ["not_null", "string", "sqlite", "2.5.7", "6.0"], + ["not_null", "string", "sqlite", "2.4.9", "4.2"], + ["not_null", "string", "sqlite", "2.4.9", "5.2"], + ["not_null", "string", "sqlite", "2.4.9", "6.0"], + ["not_null", "text", "postgresql", "2.7.0", "4.2"], + ["not_null", "text", "postgresql", "2.7.0", "5.2"], + ["not_null", "text", "postgresql", "2.7.0", "6.0"], + ["not_null", "text", "postgresql", "2.6.5", "4.2"], + ["not_null", "text", "postgresql", "2.6.5", "5.2"], + ["not_null", "text", "postgresql", "2.6.5", "6.0"], + ["not_null", "text", "postgresql", "2.5.7", "4.2"], + ["not_null", "text", "postgresql", "2.5.7", "5.2"], + ["not_null", "text", "postgresql", "2.5.7", "6.0"], + ["not_null", "text", "postgresql", "2.4.9", "4.2"], + ["not_null", "text", "postgresql", "2.4.9", "5.2"], + ["not_null", "text", "postgresql", "2.4.9", "6.0"], + ["not_null", "text", "mysql", "2.7.0", "4.2"], + ["not_null", "text", "mysql", "2.7.0", "5.2"], + ["not_null", "text", "mysql", "2.7.0", "6.0"], + ["not_null", "text", "mysql", "2.6.5", "4.2"], + ["not_null", "text", "mysql", "2.6.5", "5.2"], + ["not_null", "text", "mysql", "2.6.5", "6.0"], + ["not_null", "text", "mysql", "2.5.7", "4.2"], + ["not_null", "text", "mysql", "2.5.7", "5.2"], + ["not_null", "text", "mysql", "2.5.7", "6.0"], + ["not_null", "text", "mysql", "2.4.9", "4.2"], + ["not_null", "text", "mysql", "2.4.9", "5.2"], + ["not_null", "text", "mysql", "2.4.9", "6.0"], + ["not_null", "text", "sqlite", "2.7.0", "4.2"], + ["not_null", "text", "sqlite", "2.7.0", "5.2"], + ["not_null", "text", "sqlite", "2.7.0", "6.0"], + ["not_null", "text", "sqlite", "2.6.5", "4.2"], + ["not_null", "text", "sqlite", "2.6.5", "5.2"], + ["not_null", "text", "sqlite", "2.6.5", "6.0"], + ["not_null", "text", "sqlite", "2.5.7", "4.2"], + ["not_null", "text", "sqlite", "2.5.7", "5.2"], + ["not_null", "text", "sqlite", "2.5.7", "6.0"], + ["not_null", "text", "sqlite", "2.4.9", "4.2"], + ["not_null", "text", "sqlite", "2.4.9", "5.2"], + ["not_null", "text", "sqlite", "2.4.9", "6.0"], + ["not_null", "time", "postgresql", "2.7.0", "4.2"], + ["not_null", "time", "postgresql", "2.7.0", "5.2"], + ["not_null", "time", "postgresql", "2.7.0", "6.0"], + ["not_null", "time", "postgresql", "2.6.5", "4.2"], + ["not_null", "time", "postgresql", "2.6.5", "5.2"], + ["not_null", "time", "postgresql", "2.6.5", "6.0"], + ["not_null", "time", "postgresql", "2.5.7", "4.2"], + ["not_null", "time", "postgresql", "2.5.7", "5.2"], + ["not_null", "time", "postgresql", "2.5.7", "6.0"], + ["not_null", "time", "postgresql", "2.4.9", "4.2"], + ["not_null", "time", "postgresql", "2.4.9", "5.2"], + ["not_null", "time", "postgresql", "2.4.9", "6.0"], + ["not_null", "time", "mysql", "2.7.0", "4.2"], + ["not_null", "time", "mysql", "2.7.0", "5.2"], + ["not_null", "time", "mysql", "2.7.0", "6.0"], + ["not_null", "time", "mysql", "2.6.5", "4.2"], + ["not_null", "time", "mysql", "2.6.5", "5.2"], + ["not_null", "time", "mysql", "2.6.5", "6.0"], + ["not_null", "time", "mysql", "2.5.7", "4.2"], + ["not_null", "time", "mysql", "2.5.7", "5.2"], + ["not_null", "time", "mysql", "2.5.7", "6.0"], + ["not_null", "time", "mysql", "2.4.9", "4.2"], + ["not_null", "time", "mysql", "2.4.9", "5.2"], + ["not_null", "time", "mysql", "2.4.9", "6.0"], + ["not_null", "time", "sqlite", "2.7.0", "4.2"], + ["not_null", "time", "sqlite", "2.7.0", "5.2"], + ["not_null", "time", "sqlite", "2.7.0", "6.0"], + ["not_null", "time", "sqlite", "2.6.5", "4.2"], + ["not_null", "time", "sqlite", "2.6.5", "5.2"], + ["not_null", "time", "sqlite", "2.6.5", "6.0"], + ["not_null", "time", "sqlite", "2.5.7", "4.2"], + ["not_null", "time", "sqlite", "2.5.7", "5.2"], + ["not_null", "time", "sqlite", "2.5.7", "6.0"], + ["not_null", "time", "sqlite", "2.4.9", "4.2"], + ["not_null", "time", "sqlite", "2.4.9", "5.2"], + ["not_null", "time", "sqlite", "2.4.9", "6.0"], + ["is_present", "binary", "postgresql", "2.7.0", "4.2"], + ["is_present", "binary", "postgresql", "2.7.0", "5.2"], + ["is_present", "binary", "postgresql", "2.7.0", "6.0"], + ["is_present", "binary", "postgresql", "2.6.5", "4.2"], + ["is_present", "binary", "postgresql", "2.6.5", "5.2"], + ["is_present", "binary", "postgresql", "2.6.5", "6.0"], + ["is_present", "binary", "postgresql", "2.5.7", "4.2"], + ["is_present", "binary", "postgresql", "2.5.7", "5.2"], + ["is_present", "binary", "postgresql", "2.5.7", "6.0"], + ["is_present", "binary", "postgresql", "2.4.9", "4.2"], + ["is_present", "binary", "postgresql", "2.4.9", "5.2"], + ["is_present", "binary", "postgresql", "2.4.9", "6.0"], + ["is_present", "binary", "mysql", "2.7.0", "4.2"], + ["is_present", "binary", "mysql", "2.7.0", "5.2"], + ["is_present", "binary", "mysql", "2.7.0", "6.0"], + ["is_present", "binary", "mysql", "2.6.5", "4.2"], + ["is_present", "binary", "mysql", "2.6.5", "5.2"], + ["is_present", "binary", "mysql", "2.6.5", "6.0"], + ["is_present", "binary", "mysql", "2.5.7", "4.2"], + ["is_present", "binary", "mysql", "2.5.7", "5.2"], + ["is_present", "binary", "mysql", "2.5.7", "6.0"], + ["is_present", "binary", "mysql", "2.4.9", "4.2"], + ["is_present", "binary", "mysql", "2.4.9", "5.2"], + ["is_present", "binary", "mysql", "2.4.9", "6.0"], + ["is_present", "binary", "sqlite", "2.7.0", "4.2"], + ["is_present", "binary", "sqlite", "2.7.0", "5.2"], + ["is_present", "binary", "sqlite", "2.7.0", "6.0"], + ["is_present", "binary", "sqlite", "2.6.5", "4.2"], + ["is_present", "binary", "sqlite", "2.6.5", "5.2"], + ["is_present", "binary", "sqlite", "2.6.5", "6.0"], + ["is_present", "binary", "sqlite", "2.5.7", "4.2"], + ["is_present", "binary", "sqlite", "2.5.7", "5.2"], + ["is_present", "binary", "sqlite", "2.5.7", "6.0"], + ["is_present", "binary", "sqlite", "2.4.9", "4.2"], + ["is_present", "binary", "sqlite", "2.4.9", "5.2"], + ["is_present", "binary", "sqlite", "2.4.9", "6.0"], + ["is_present", "boolean", "postgresql", "2.7.0", "4.2"], + ["is_present", "boolean", "postgresql", "2.7.0", "5.2"], + ["is_present", "boolean", "postgresql", "2.7.0", "6.0"], + ["is_present", "boolean", "postgresql", "2.6.5", "4.2"], + ["is_present", "boolean", "postgresql", "2.6.5", "5.2"], + ["is_present", "boolean", "postgresql", "2.6.5", "6.0"], + ["is_present", "boolean", "postgresql", "2.5.7", "4.2"], + ["is_present", "boolean", "postgresql", "2.5.7", "5.2"], + ["is_present", "boolean", "postgresql", "2.5.7", "6.0"], + ["is_present", "boolean", "postgresql", "2.4.9", "4.2"], + ["is_present", "boolean", "postgresql", "2.4.9", "5.2"], + ["is_present", "boolean", "postgresql", "2.4.9", "6.0"], + ["is_present", "boolean", "mysql", "2.7.0", "4.2"], + ["is_present", "boolean", "mysql", "2.7.0", "5.2"], + ["is_present", "boolean", "mysql", "2.7.0", "6.0"], + ["is_present", "boolean", "mysql", "2.6.5", "4.2"], + ["is_present", "boolean", "mysql", "2.6.5", "5.2"], + ["is_present", "boolean", "mysql", "2.6.5", "6.0"], + ["is_present", "boolean", "mysql", "2.5.7", "4.2"], + ["is_present", "boolean", "mysql", "2.5.7", "5.2"], + ["is_present", "boolean", "mysql", "2.5.7", "6.0"], + ["is_present", "boolean", "mysql", "2.4.9", "4.2"], + ["is_present", "boolean", "mysql", "2.4.9", "5.2"], + ["is_present", "boolean", "mysql", "2.4.9", "6.0"], + ["is_present", "boolean", "sqlite", "2.7.0", "4.2"], + ["is_present", "boolean", "sqlite", "2.7.0", "5.2"], + ["is_present", "boolean", "sqlite", "2.7.0", "6.0"], + ["is_present", "boolean", "sqlite", "2.6.5", "4.2"], + ["is_present", "boolean", "sqlite", "2.6.5", "5.2"], + ["is_present", "boolean", "sqlite", "2.6.5", "6.0"], + ["is_present", "boolean", "sqlite", "2.5.7", "4.2"], + ["is_present", "boolean", "sqlite", "2.5.7", "5.2"], + ["is_present", "boolean", "sqlite", "2.5.7", "6.0"], + ["is_present", "boolean", "sqlite", "2.4.9", "4.2"], + ["is_present", "boolean", "sqlite", "2.4.9", "5.2"], + ["is_present", "boolean", "sqlite", "2.4.9", "6.0"], + ["is_present", "date", "postgresql", "2.7.0", "4.2"], + ["is_present", "date", "postgresql", "2.7.0", "5.2"], + ["is_present", "date", "postgresql", "2.7.0", "6.0"], + ["is_present", "date", "postgresql", "2.6.5", "4.2"], + ["is_present", "date", "postgresql", "2.6.5", "5.2"], + ["is_present", "date", "postgresql", "2.6.5", "6.0"], + ["is_present", "date", "postgresql", "2.5.7", "4.2"], + ["is_present", "date", "postgresql", "2.5.7", "5.2"], + ["is_present", "date", "postgresql", "2.5.7", "6.0"], + ["is_present", "date", "postgresql", "2.4.9", "4.2"], + ["is_present", "date", "postgresql", "2.4.9", "5.2"], + ["is_present", "date", "postgresql", "2.4.9", "6.0"], + ["is_present", "date", "mysql", "2.7.0", "4.2"], + ["is_present", "date", "mysql", "2.7.0", "5.2"], + ["is_present", "date", "mysql", "2.7.0", "6.0"], + ["is_present", "date", "mysql", "2.6.5", "4.2"], + ["is_present", "date", "mysql", "2.6.5", "5.2"], + ["is_present", "date", "mysql", "2.6.5", "6.0"], + ["is_present", "date", "mysql", "2.5.7", "4.2"], + ["is_present", "date", "mysql", "2.5.7", "5.2"], + ["is_present", "date", "mysql", "2.5.7", "6.0"], + ["is_present", "date", "mysql", "2.4.9", "4.2"], + ["is_present", "date", "mysql", "2.4.9", "5.2"], + ["is_present", "date", "mysql", "2.4.9", "6.0"], + ["is_present", "date", "sqlite", "2.7.0", "4.2"], + ["is_present", "date", "sqlite", "2.7.0", "5.2"], + ["is_present", "date", "sqlite", "2.7.0", "6.0"], + ["is_present", "date", "sqlite", "2.6.5", "4.2"], + ["is_present", "date", "sqlite", "2.6.5", "5.2"], + ["is_present", "date", "sqlite", "2.6.5", "6.0"], + ["is_present", "date", "sqlite", "2.5.7", "4.2"], + ["is_present", "date", "sqlite", "2.5.7", "5.2"], + ["is_present", "date", "sqlite", "2.5.7", "6.0"], + ["is_present", "date", "sqlite", "2.4.9", "4.2"], + ["is_present", "date", "sqlite", "2.4.9", "5.2"], + ["is_present", "date", "sqlite", "2.4.9", "6.0"], + ["is_present", "datetime", "postgresql", "2.7.0", "4.2"], + ["is_present", "datetime", "postgresql", "2.7.0", "5.2"], + ["is_present", "datetime", "postgresql", "2.7.0", "6.0"], + ["is_present", "datetime", "postgresql", "2.6.5", "4.2"], + ["is_present", "datetime", "postgresql", "2.6.5", "5.2"], + ["is_present", "datetime", "postgresql", "2.6.5", "6.0"], + ["is_present", "datetime", "postgresql", "2.5.7", "4.2"], + ["is_present", "datetime", "postgresql", "2.5.7", "5.2"], + ["is_present", "datetime", "postgresql", "2.5.7", "6.0"], + ["is_present", "datetime", "postgresql", "2.4.9", "4.2"], + ["is_present", "datetime", "postgresql", "2.4.9", "5.2"], + ["is_present", "datetime", "postgresql", "2.4.9", "6.0"], + ["is_present", "datetime", "mysql", "2.7.0", "4.2"], + ["is_present", "datetime", "mysql", "2.7.0", "5.2"], + ["is_present", "datetime", "mysql", "2.7.0", "6.0"], + ["is_present", "datetime", "mysql", "2.6.5", "4.2"], + ["is_present", "datetime", "mysql", "2.6.5", "5.2"], + ["is_present", "datetime", "mysql", "2.6.5", "6.0"], + ["is_present", "datetime", "mysql", "2.5.7", "4.2"], + ["is_present", "datetime", "mysql", "2.5.7", "5.2"], + ["is_present", "datetime", "mysql", "2.5.7", "6.0"], + ["is_present", "datetime", "mysql", "2.4.9", "4.2"], + ["is_present", "datetime", "mysql", "2.4.9", "5.2"], + ["is_present", "datetime", "mysql", "2.4.9", "6.0"], + ["is_present", "datetime", "sqlite", "2.7.0", "4.2"], + ["is_present", "datetime", "sqlite", "2.7.0", "5.2"], + ["is_present", "datetime", "sqlite", "2.7.0", "6.0"], + ["is_present", "datetime", "sqlite", "2.6.5", "4.2"], + ["is_present", "datetime", "sqlite", "2.6.5", "5.2"], + ["is_present", "datetime", "sqlite", "2.6.5", "6.0"], + ["is_present", "datetime", "sqlite", "2.5.7", "4.2"], + ["is_present", "datetime", "sqlite", "2.5.7", "5.2"], + ["is_present", "datetime", "sqlite", "2.5.7", "6.0"], + ["is_present", "datetime", "sqlite", "2.4.9", "4.2"], + ["is_present", "datetime", "sqlite", "2.4.9", "5.2"], + ["is_present", "datetime", "sqlite", "2.4.9", "6.0"], + ["is_present", "decimal", "postgresql", "2.7.0", "4.2"], + ["is_present", "decimal", "postgresql", "2.7.0", "5.2"], + ["is_present", "decimal", "postgresql", "2.7.0", "6.0"], + ["is_present", "decimal", "postgresql", "2.6.5", "4.2"], + ["is_present", "decimal", "postgresql", "2.6.5", "5.2"], + ["is_present", "decimal", "postgresql", "2.6.5", "6.0"], + ["is_present", "decimal", "postgresql", "2.5.7", "4.2"], + ["is_present", "decimal", "postgresql", "2.5.7", "5.2"], + ["is_present", "decimal", "postgresql", "2.5.7", "6.0"], + ["is_present", "decimal", "postgresql", "2.4.9", "4.2"], + ["is_present", "decimal", "postgresql", "2.4.9", "5.2"], + ["is_present", "decimal", "postgresql", "2.4.9", "6.0"], + ["is_present", "decimal", "mysql", "2.7.0", "4.2"], + ["is_present", "decimal", "mysql", "2.7.0", "5.2"], + ["is_present", "decimal", "mysql", "2.7.0", "6.0"], + ["is_present", "decimal", "mysql", "2.6.5", "4.2"], + ["is_present", "decimal", "mysql", "2.6.5", "5.2"], + ["is_present", "decimal", "mysql", "2.6.5", "6.0"], + ["is_present", "decimal", "mysql", "2.5.7", "4.2"], + ["is_present", "decimal", "mysql", "2.5.7", "5.2"], + ["is_present", "decimal", "mysql", "2.5.7", "6.0"], + ["is_present", "decimal", "mysql", "2.4.9", "4.2"], + ["is_present", "decimal", "mysql", "2.4.9", "5.2"], + ["is_present", "decimal", "mysql", "2.4.9", "6.0"], + ["is_present", "decimal", "sqlite", "2.7.0", "4.2"], + ["is_present", "decimal", "sqlite", "2.7.0", "5.2"], + ["is_present", "decimal", "sqlite", "2.7.0", "6.0"], + ["is_present", "decimal", "sqlite", "2.6.5", "4.2"], + ["is_present", "decimal", "sqlite", "2.6.5", "5.2"], + ["is_present", "decimal", "sqlite", "2.6.5", "6.0"], + ["is_present", "decimal", "sqlite", "2.5.7", "4.2"], + ["is_present", "decimal", "sqlite", "2.5.7", "5.2"], + ["is_present", "decimal", "sqlite", "2.5.7", "6.0"], + ["is_present", "decimal", "sqlite", "2.4.9", "4.2"], + ["is_present", "decimal", "sqlite", "2.4.9", "5.2"], + ["is_present", "decimal", "sqlite", "2.4.9", "6.0"], + ["is_present", "float", "postgresql", "2.7.0", "4.2"], + ["is_present", "float", "postgresql", "2.7.0", "5.2"], + ["is_present", "float", "postgresql", "2.7.0", "6.0"], + ["is_present", "float", "postgresql", "2.6.5", "4.2"], + ["is_present", "float", "postgresql", "2.6.5", "5.2"], + ["is_present", "float", "postgresql", "2.6.5", "6.0"], + ["is_present", "float", "postgresql", "2.5.7", "4.2"], + ["is_present", "float", "postgresql", "2.5.7", "5.2"], + ["is_present", "float", "postgresql", "2.5.7", "6.0"], + ["is_present", "float", "postgresql", "2.4.9", "4.2"], + ["is_present", "float", "postgresql", "2.4.9", "5.2"], + ["is_present", "float", "postgresql", "2.4.9", "6.0"], + ["is_present", "float", "mysql", "2.7.0", "4.2"], + ["is_present", "float", "mysql", "2.7.0", "5.2"], + ["is_present", "float", "mysql", "2.7.0", "6.0"], + ["is_present", "float", "mysql", "2.6.5", "4.2"], + ["is_present", "float", "mysql", "2.6.5", "5.2"], + ["is_present", "float", "mysql", "2.6.5", "6.0"], + ["is_present", "float", "mysql", "2.5.7", "4.2"], + ["is_present", "float", "mysql", "2.5.7", "5.2"], + ["is_present", "float", "mysql", "2.5.7", "6.0"], + ["is_present", "float", "mysql", "2.4.9", "4.2"], + ["is_present", "float", "mysql", "2.4.9", "5.2"], + ["is_present", "float", "mysql", "2.4.9", "6.0"], + ["is_present", "float", "sqlite", "2.7.0", "4.2"], + ["is_present", "float", "sqlite", "2.7.0", "5.2"], + ["is_present", "float", "sqlite", "2.7.0", "6.0"], + ["is_present", "float", "sqlite", "2.6.5", "4.2"], + ["is_present", "float", "sqlite", "2.6.5", "5.2"], + ["is_present", "float", "sqlite", "2.6.5", "6.0"], + ["is_present", "float", "sqlite", "2.5.7", "4.2"], + ["is_present", "float", "sqlite", "2.5.7", "5.2"], + ["is_present", "float", "sqlite", "2.5.7", "6.0"], + ["is_present", "float", "sqlite", "2.4.9", "4.2"], + ["is_present", "float", "sqlite", "2.4.9", "5.2"], + ["is_present", "float", "sqlite", "2.4.9", "6.0"], + ["is_present", "integer", "postgresql", "2.7.0", "4.2"], + ["is_present", "integer", "postgresql", "2.7.0", "5.2"], + ["is_present", "integer", "postgresql", "2.7.0", "6.0"], + ["is_present", "integer", "postgresql", "2.6.5", "4.2"], + ["is_present", "integer", "postgresql", "2.6.5", "5.2"], + ["is_present", "integer", "postgresql", "2.6.5", "6.0"], + ["is_present", "integer", "postgresql", "2.5.7", "4.2"], + ["is_present", "integer", "postgresql", "2.5.7", "5.2"], + ["is_present", "integer", "postgresql", "2.5.7", "6.0"], + ["is_present", "integer", "postgresql", "2.4.9", "4.2"], + ["is_present", "integer", "postgresql", "2.4.9", "5.2"], + ["is_present", "integer", "postgresql", "2.4.9", "6.0"], + ["is_present", "integer", "mysql", "2.7.0", "4.2"], + ["is_present", "integer", "mysql", "2.7.0", "5.2"], + ["is_present", "integer", "mysql", "2.7.0", "6.0"], + ["is_present", "integer", "mysql", "2.6.5", "4.2"], + ["is_present", "integer", "mysql", "2.6.5", "5.2"], + ["is_present", "integer", "mysql", "2.6.5", "6.0"], + ["is_present", "integer", "mysql", "2.5.7", "4.2"], + ["is_present", "integer", "mysql", "2.5.7", "5.2"], + ["is_present", "integer", "mysql", "2.5.7", "6.0"], + ["is_present", "integer", "mysql", "2.4.9", "4.2"], + ["is_present", "integer", "mysql", "2.4.9", "5.2"], + ["is_present", "integer", "mysql", "2.4.9", "6.0"], + ["is_present", "integer", "sqlite", "2.7.0", "4.2"], + ["is_present", "integer", "sqlite", "2.7.0", "5.2"], + ["is_present", "integer", "sqlite", "2.7.0", "6.0"], + ["is_present", "integer", "sqlite", "2.6.5", "4.2"], + ["is_present", "integer", "sqlite", "2.6.5", "5.2"], + ["is_present", "integer", "sqlite", "2.6.5", "6.0"], + ["is_present", "integer", "sqlite", "2.5.7", "4.2"], + ["is_present", "integer", "sqlite", "2.5.7", "5.2"], + ["is_present", "integer", "sqlite", "2.5.7", "6.0"], + ["is_present", "integer", "sqlite", "2.4.9", "4.2"], + ["is_present", "integer", "sqlite", "2.4.9", "5.2"], + ["is_present", "integer", "sqlite", "2.4.9", "6.0"], + ["is_present", "string", "postgresql", "2.7.0", "4.2"], + ["is_present", "string", "postgresql", "2.7.0", "5.2"], + ["is_present", "string", "postgresql", "2.7.0", "6.0"], + ["is_present", "string", "postgresql", "2.6.5", "4.2"], + ["is_present", "string", "postgresql", "2.6.5", "5.2"], + ["is_present", "string", "postgresql", "2.6.5", "6.0"], + ["is_present", "string", "postgresql", "2.5.7", "4.2"], + ["is_present", "string", "postgresql", "2.5.7", "5.2"], + ["is_present", "string", "postgresql", "2.5.7", "6.0"], + ["is_present", "string", "postgresql", "2.4.9", "4.2"], + ["is_present", "string", "postgresql", "2.4.9", "5.2"], + ["is_present", "string", "postgresql", "2.4.9", "6.0"], + ["is_present", "string", "mysql", "2.7.0", "4.2"], + ["is_present", "string", "mysql", "2.7.0", "5.2"], + ["is_present", "string", "mysql", "2.7.0", "6.0"], + ["is_present", "string", "mysql", "2.6.5", "4.2"], + ["is_present", "string", "mysql", "2.6.5", "5.2"], + ["is_present", "string", "mysql", "2.6.5", "6.0"], + ["is_present", "string", "mysql", "2.5.7", "4.2"], + ["is_present", "string", "mysql", "2.5.7", "5.2"], + ["is_present", "string", "mysql", "2.5.7", "6.0"], + ["is_present", "string", "mysql", "2.4.9", "4.2"], + ["is_present", "string", "mysql", "2.4.9", "5.2"], + ["is_present", "string", "mysql", "2.4.9", "6.0"], + ["is_present", "string", "sqlite", "2.7.0", "4.2"], + ["is_present", "string", "sqlite", "2.7.0", "5.2"], + ["is_present", "string", "sqlite", "2.7.0", "6.0"], + ["is_present", "string", "sqlite", "2.6.5", "4.2"], + ["is_present", "string", "sqlite", "2.6.5", "5.2"], + ["is_present", "string", "sqlite", "2.6.5", "6.0"], + ["is_present", "string", "sqlite", "2.5.7", "4.2"], + ["is_present", "string", "sqlite", "2.5.7", "5.2"], + ["is_present", "string", "sqlite", "2.5.7", "6.0"], + ["is_present", "string", "sqlite", "2.4.9", "4.2"], + ["is_present", "string", "sqlite", "2.4.9", "5.2"], + ["is_present", "string", "sqlite", "2.4.9", "6.0"], + ["is_present", "text", "postgresql", "2.7.0", "4.2"], + ["is_present", "text", "postgresql", "2.7.0", "5.2"], + ["is_present", "text", "postgresql", "2.7.0", "6.0"], + ["is_present", "text", "postgresql", "2.6.5", "4.2"], + ["is_present", "text", "postgresql", "2.6.5", "5.2"], + ["is_present", "text", "postgresql", "2.6.5", "6.0"], + ["is_present", "text", "postgresql", "2.5.7", "4.2"], + ["is_present", "text", "postgresql", "2.5.7", "5.2"], + ["is_present", "text", "postgresql", "2.5.7", "6.0"], + ["is_present", "text", "postgresql", "2.4.9", "4.2"], + ["is_present", "text", "postgresql", "2.4.9", "5.2"], + ["is_present", "text", "postgresql", "2.4.9", "6.0"], + ["is_present", "text", "mysql", "2.7.0", "4.2"], + ["is_present", "text", "mysql", "2.7.0", "5.2"], + ["is_present", "text", "mysql", "2.7.0", "6.0"], + ["is_present", "text", "mysql", "2.6.5", "4.2"], + ["is_present", "text", "mysql", "2.6.5", "5.2"], + ["is_present", "text", "mysql", "2.6.5", "6.0"], + ["is_present", "text", "mysql", "2.5.7", "4.2"], + ["is_present", "text", "mysql", "2.5.7", "5.2"], + ["is_present", "text", "mysql", "2.5.7", "6.0"], + ["is_present", "text", "mysql", "2.4.9", "4.2"], + ["is_present", "text", "mysql", "2.4.9", "5.2"], + ["is_present", "text", "mysql", "2.4.9", "6.0"], + ["is_present", "text", "sqlite", "2.7.0", "4.2"], + ["is_present", "text", "sqlite", "2.7.0", "5.2"], + ["is_present", "text", "sqlite", "2.7.0", "6.0"], + ["is_present", "text", "sqlite", "2.6.5", "4.2"], + ["is_present", "text", "sqlite", "2.6.5", "5.2"], + ["is_present", "text", "sqlite", "2.6.5", "6.0"], + ["is_present", "text", "sqlite", "2.5.7", "4.2"], + ["is_present", "text", "sqlite", "2.5.7", "5.2"], + ["is_present", "text", "sqlite", "2.5.7", "6.0"], + ["is_present", "text", "sqlite", "2.4.9", "4.2"], + ["is_present", "text", "sqlite", "2.4.9", "5.2"], + ["is_present", "text", "sqlite", "2.4.9", "6.0"], + ["is_present", "time", "postgresql", "2.7.0", "4.2"], + ["is_present", "time", "postgresql", "2.7.0", "5.2"], + ["is_present", "time", "postgresql", "2.7.0", "6.0"], + ["is_present", "time", "postgresql", "2.6.5", "4.2"], + ["is_present", "time", "postgresql", "2.6.5", "5.2"], + ["is_present", "time", "postgresql", "2.6.5", "6.0"], + ["is_present", "time", "postgresql", "2.5.7", "4.2"], + ["is_present", "time", "postgresql", "2.5.7", "5.2"], + ["is_present", "time", "postgresql", "2.5.7", "6.0"], + ["is_present", "time", "postgresql", "2.4.9", "4.2"], + ["is_present", "time", "postgresql", "2.4.9", "5.2"], + ["is_present", "time", "postgresql", "2.4.9", "6.0"], + ["is_present", "time", "mysql", "2.7.0", "4.2"], + ["is_present", "time", "mysql", "2.7.0", "5.2"], + ["is_present", "time", "mysql", "2.7.0", "6.0"], + ["is_present", "time", "mysql", "2.6.5", "4.2"], + ["is_present", "time", "mysql", "2.6.5", "5.2"], + ["is_present", "time", "mysql", "2.6.5", "6.0"], + ["is_present", "time", "mysql", "2.5.7", "4.2"], + ["is_present", "time", "mysql", "2.5.7", "5.2"], + ["is_present", "time", "mysql", "2.5.7", "6.0"], + ["is_present", "time", "mysql", "2.4.9", "4.2"], + ["is_present", "time", "mysql", "2.4.9", "5.2"], + ["is_present", "time", "mysql", "2.4.9", "6.0"], + ["is_present", "time", "sqlite", "2.7.0", "4.2"], + ["is_present", "time", "sqlite", "2.7.0", "5.2"], + ["is_present", "time", "sqlite", "2.7.0", "6.0"], + ["is_present", "time", "sqlite", "2.6.5", "4.2"], + ["is_present", "time", "sqlite", "2.6.5", "5.2"], + ["is_present", "time", "sqlite", "2.6.5", "6.0"], + ["is_present", "time", "sqlite", "2.5.7", "4.2"], + ["is_present", "time", "sqlite", "2.5.7", "5.2"], + ["is_present", "time", "sqlite", "2.5.7", "6.0"], + ["is_present", "time", "sqlite", "2.4.9", "4.2"], + ["is_present", "time", "sqlite", "2.4.9", "5.2"], + ["is_present", "time", "sqlite", "2.4.9", "6.0"], + ["is_blank", "binary", "postgresql", "2.7.0", "4.2"], + ["is_blank", "binary", "postgresql", "2.7.0", "5.2"], + ["is_blank", "binary", "postgresql", "2.7.0", "6.0"], + ["is_blank", "binary", "postgresql", "2.6.5", "4.2"], + ["is_blank", "binary", "postgresql", "2.6.5", "5.2"], + ["is_blank", "binary", "postgresql", "2.6.5", "6.0"], + ["is_blank", "binary", "postgresql", "2.5.7", "4.2"], + ["is_blank", "binary", "postgresql", "2.5.7", "5.2"], + ["is_blank", "binary", "postgresql", "2.5.7", "6.0"], + ["is_blank", "binary", "postgresql", "2.4.9", "4.2"], + ["is_blank", "binary", "postgresql", "2.4.9", "5.2"], + ["is_blank", "binary", "postgresql", "2.4.9", "6.0"], + ["is_blank", "binary", "mysql", "2.7.0", "4.2"], + ["is_blank", "binary", "mysql", "2.7.0", "5.2"], + ["is_blank", "binary", "mysql", "2.7.0", "6.0"], + ["is_blank", "binary", "mysql", "2.6.5", "4.2"], + ["is_blank", "binary", "mysql", "2.6.5", "5.2"], + ["is_blank", "binary", "mysql", "2.6.5", "6.0"], + ["is_blank", "binary", "mysql", "2.5.7", "4.2"], + ["is_blank", "binary", "mysql", "2.5.7", "5.2"], + ["is_blank", "binary", "mysql", "2.5.7", "6.0"], + ["is_blank", "binary", "mysql", "2.4.9", "4.2"], + ["is_blank", "binary", "mysql", "2.4.9", "5.2"], + ["is_blank", "binary", "mysql", "2.4.9", "6.0"], + ["is_blank", "binary", "sqlite", "2.7.0", "4.2"], + ["is_blank", "binary", "sqlite", "2.7.0", "5.2"], + ["is_blank", "binary", "sqlite", "2.7.0", "6.0"], + ["is_blank", "binary", "sqlite", "2.6.5", "4.2"], + ["is_blank", "binary", "sqlite", "2.6.5", "5.2"], + ["is_blank", "binary", "sqlite", "2.6.5", "6.0"], + ["is_blank", "binary", "sqlite", "2.5.7", "4.2"], + ["is_blank", "binary", "sqlite", "2.5.7", "5.2"], + ["is_blank", "binary", "sqlite", "2.5.7", "6.0"], + ["is_blank", "binary", "sqlite", "2.4.9", "4.2"], + ["is_blank", "binary", "sqlite", "2.4.9", "5.2"], + ["is_blank", "binary", "sqlite", "2.4.9", "6.0"], + ["is_blank", "boolean", "postgresql", "2.7.0", "4.2"], + ["is_blank", "boolean", "postgresql", "2.7.0", "5.2"], + ["is_blank", "boolean", "postgresql", "2.7.0", "6.0"], + ["is_blank", "boolean", "postgresql", "2.6.5", "4.2"], + ["is_blank", "boolean", "postgresql", "2.6.5", "5.2"], + ["is_blank", "boolean", "postgresql", "2.6.5", "6.0"], + ["is_blank", "boolean", "postgresql", "2.5.7", "4.2"], + ["is_blank", "boolean", "postgresql", "2.5.7", "5.2"], + ["is_blank", "boolean", "postgresql", "2.5.7", "6.0"], + ["is_blank", "boolean", "postgresql", "2.4.9", "4.2"], + ["is_blank", "boolean", "postgresql", "2.4.9", "5.2"], + ["is_blank", "boolean", "postgresql", "2.4.9", "6.0"], + ["is_blank", "boolean", "mysql", "2.7.0", "4.2"], + ["is_blank", "boolean", "mysql", "2.7.0", "5.2"], + ["is_blank", "boolean", "mysql", "2.7.0", "6.0"], + ["is_blank", "boolean", "mysql", "2.6.5", "4.2"], + ["is_blank", "boolean", "mysql", "2.6.5", "5.2"], + ["is_blank", "boolean", "mysql", "2.6.5", "6.0"], + ["is_blank", "boolean", "mysql", "2.5.7", "4.2"], + ["is_blank", "boolean", "mysql", "2.5.7", "5.2"], + ["is_blank", "boolean", "mysql", "2.5.7", "6.0"], + ["is_blank", "boolean", "mysql", "2.4.9", "4.2"], + ["is_blank", "boolean", "mysql", "2.4.9", "5.2"], + ["is_blank", "boolean", "mysql", "2.4.9", "6.0"], + ["is_blank", "boolean", "sqlite", "2.7.0", "4.2"], + ["is_blank", "boolean", "sqlite", "2.7.0", "5.2"], + ["is_blank", "boolean", "sqlite", "2.7.0", "6.0"], + ["is_blank", "boolean", "sqlite", "2.6.5", "4.2"], + ["is_blank", "boolean", "sqlite", "2.6.5", "5.2"], + ["is_blank", "boolean", "sqlite", "2.6.5", "6.0"], + ["is_blank", "boolean", "sqlite", "2.5.7", "4.2"], + ["is_blank", "boolean", "sqlite", "2.5.7", "5.2"], + ["is_blank", "boolean", "sqlite", "2.5.7", "6.0"], + ["is_blank", "boolean", "sqlite", "2.4.9", "4.2"], + ["is_blank", "boolean", "sqlite", "2.4.9", "5.2"], + ["is_blank", "boolean", "sqlite", "2.4.9", "6.0"], + ["is_blank", "date", "postgresql", "2.7.0", "4.2"], + ["is_blank", "date", "postgresql", "2.7.0", "5.2"], + ["is_blank", "date", "postgresql", "2.7.0", "6.0"], + ["is_blank", "date", "postgresql", "2.6.5", "4.2"], + ["is_blank", "date", "postgresql", "2.6.5", "5.2"], + ["is_blank", "date", "postgresql", "2.6.5", "6.0"], + ["is_blank", "date", "postgresql", "2.5.7", "4.2"], + ["is_blank", "date", "postgresql", "2.5.7", "5.2"], + ["is_blank", "date", "postgresql", "2.5.7", "6.0"], + ["is_blank", "date", "postgresql", "2.4.9", "4.2"], + ["is_blank", "date", "postgresql", "2.4.9", "5.2"], + ["is_blank", "date", "postgresql", "2.4.9", "6.0"], + ["is_blank", "date", "mysql", "2.7.0", "4.2"], + ["is_blank", "date", "mysql", "2.7.0", "5.2"], + ["is_blank", "date", "mysql", "2.7.0", "6.0"], + ["is_blank", "date", "mysql", "2.6.5", "4.2"], + ["is_blank", "date", "mysql", "2.6.5", "5.2"], + ["is_blank", "date", "mysql", "2.6.5", "6.0"], + ["is_blank", "date", "mysql", "2.5.7", "4.2"], + ["is_blank", "date", "mysql", "2.5.7", "5.2"], + ["is_blank", "date", "mysql", "2.5.7", "6.0"], + ["is_blank", "date", "mysql", "2.4.9", "4.2"], + ["is_blank", "date", "mysql", "2.4.9", "5.2"], + ["is_blank", "date", "mysql", "2.4.9", "6.0"], + ["is_blank", "date", "sqlite", "2.7.0", "4.2"], + ["is_blank", "date", "sqlite", "2.7.0", "5.2"], + ["is_blank", "date", "sqlite", "2.7.0", "6.0"], + ["is_blank", "date", "sqlite", "2.6.5", "4.2"], + ["is_blank", "date", "sqlite", "2.6.5", "5.2"], + ["is_blank", "date", "sqlite", "2.6.5", "6.0"], + ["is_blank", "date", "sqlite", "2.5.7", "4.2"], + ["is_blank", "date", "sqlite", "2.5.7", "5.2"], + ["is_blank", "date", "sqlite", "2.5.7", "6.0"], + ["is_blank", "date", "sqlite", "2.4.9", "4.2"], + ["is_blank", "date", "sqlite", "2.4.9", "5.2"], + ["is_blank", "date", "sqlite", "2.4.9", "6.0"], + ["is_blank", "datetime", "postgresql", "2.7.0", "4.2"], + ["is_blank", "datetime", "postgresql", "2.7.0", "5.2"], + ["is_blank", "datetime", "postgresql", "2.7.0", "6.0"], + ["is_blank", "datetime", "postgresql", "2.6.5", "4.2"], + ["is_blank", "datetime", "postgresql", "2.6.5", "5.2"], + ["is_blank", "datetime", "postgresql", "2.6.5", "6.0"], + ["is_blank", "datetime", "postgresql", "2.5.7", "4.2"], + ["is_blank", "datetime", "postgresql", "2.5.7", "5.2"], + ["is_blank", "datetime", "postgresql", "2.5.7", "6.0"], + ["is_blank", "datetime", "postgresql", "2.4.9", "4.2"], + ["is_blank", "datetime", "postgresql", "2.4.9", "5.2"], + ["is_blank", "datetime", "postgresql", "2.4.9", "6.0"], + ["is_blank", "datetime", "mysql", "2.7.0", "4.2"], + ["is_blank", "datetime", "mysql", "2.7.0", "5.2"], + ["is_blank", "datetime", "mysql", "2.7.0", "6.0"], + ["is_blank", "datetime", "mysql", "2.6.5", "4.2"], + ["is_blank", "datetime", "mysql", "2.6.5", "5.2"], + ["is_blank", "datetime", "mysql", "2.6.5", "6.0"], + ["is_blank", "datetime", "mysql", "2.5.7", "4.2"], + ["is_blank", "datetime", "mysql", "2.5.7", "5.2"], + ["is_blank", "datetime", "mysql", "2.5.7", "6.0"], + ["is_blank", "datetime", "mysql", "2.4.9", "4.2"], + ["is_blank", "datetime", "mysql", "2.4.9", "5.2"], + ["is_blank", "datetime", "mysql", "2.4.9", "6.0"], + ["is_blank", "datetime", "sqlite", "2.7.0", "4.2"], + ["is_blank", "datetime", "sqlite", "2.7.0", "5.2"], + ["is_blank", "datetime", "sqlite", "2.7.0", "6.0"], + ["is_blank", "datetime", "sqlite", "2.6.5", "4.2"], + ["is_blank", "datetime", "sqlite", "2.6.5", "5.2"], + ["is_blank", "datetime", "sqlite", "2.6.5", "6.0"], + ["is_blank", "datetime", "sqlite", "2.5.7", "4.2"], + ["is_blank", "datetime", "sqlite", "2.5.7", "5.2"], + ["is_blank", "datetime", "sqlite", "2.5.7", "6.0"], + ["is_blank", "datetime", "sqlite", "2.4.9", "4.2"], + ["is_blank", "datetime", "sqlite", "2.4.9", "5.2"], + ["is_blank", "datetime", "sqlite", "2.4.9", "6.0"], + ["is_blank", "decimal", "postgresql", "2.7.0", "4.2"], + ["is_blank", "decimal", "postgresql", "2.7.0", "5.2"], + ["is_blank", "decimal", "postgresql", "2.7.0", "6.0"], + ["is_blank", "decimal", "postgresql", "2.6.5", "4.2"], + ["is_blank", "decimal", "postgresql", "2.6.5", "5.2"], + ["is_blank", "decimal", "postgresql", "2.6.5", "6.0"], + ["is_blank", "decimal", "postgresql", "2.5.7", "4.2"], + ["is_blank", "decimal", "postgresql", "2.5.7", "5.2"], + ["is_blank", "decimal", "postgresql", "2.5.7", "6.0"], + ["is_blank", "decimal", "postgresql", "2.4.9", "4.2"], + ["is_blank", "decimal", "postgresql", "2.4.9", "5.2"], + ["is_blank", "decimal", "postgresql", "2.4.9", "6.0"], + ["is_blank", "decimal", "mysql", "2.7.0", "4.2"], + ["is_blank", "decimal", "mysql", "2.7.0", "5.2"], + ["is_blank", "decimal", "mysql", "2.7.0", "6.0"], + ["is_blank", "decimal", "mysql", "2.6.5", "4.2"], + ["is_blank", "decimal", "mysql", "2.6.5", "5.2"], + ["is_blank", "decimal", "mysql", "2.6.5", "6.0"], + ["is_blank", "decimal", "mysql", "2.5.7", "4.2"], + ["is_blank", "decimal", "mysql", "2.5.7", "5.2"], + ["is_blank", "decimal", "mysql", "2.5.7", "6.0"], + ["is_blank", "decimal", "mysql", "2.4.9", "4.2"], + ["is_blank", "decimal", "mysql", "2.4.9", "5.2"], + ["is_blank", "decimal", "mysql", "2.4.9", "6.0"], + ["is_blank", "decimal", "sqlite", "2.7.0", "4.2"], + ["is_blank", "decimal", "sqlite", "2.7.0", "5.2"], + ["is_blank", "decimal", "sqlite", "2.7.0", "6.0"], + ["is_blank", "decimal", "sqlite", "2.6.5", "4.2"], + ["is_blank", "decimal", "sqlite", "2.6.5", "5.2"], + ["is_blank", "decimal", "sqlite", "2.6.5", "6.0"], + ["is_blank", "decimal", "sqlite", "2.5.7", "4.2"], + ["is_blank", "decimal", "sqlite", "2.5.7", "5.2"], + ["is_blank", "decimal", "sqlite", "2.5.7", "6.0"], + ["is_blank", "decimal", "sqlite", "2.4.9", "4.2"], + ["is_blank", "decimal", "sqlite", "2.4.9", "5.2"], + ["is_blank", "decimal", "sqlite", "2.4.9", "6.0"], + ["is_blank", "float", "postgresql", "2.7.0", "4.2"], + ["is_blank", "float", "postgresql", "2.7.0", "5.2"], + ["is_blank", "float", "postgresql", "2.7.0", "6.0"], + ["is_blank", "float", "postgresql", "2.6.5", "4.2"], + ["is_blank", "float", "postgresql", "2.6.5", "5.2"], + ["is_blank", "float", "postgresql", "2.6.5", "6.0"], + ["is_blank", "float", "postgresql", "2.5.7", "4.2"], + ["is_blank", "float", "postgresql", "2.5.7", "5.2"], + ["is_blank", "float", "postgresql", "2.5.7", "6.0"], + ["is_blank", "float", "postgresql", "2.4.9", "4.2"], + ["is_blank", "float", "postgresql", "2.4.9", "5.2"], + ["is_blank", "float", "postgresql", "2.4.9", "6.0"], + ["is_blank", "float", "mysql", "2.7.0", "4.2"], + ["is_blank", "float", "mysql", "2.7.0", "5.2"], + ["is_blank", "float", "mysql", "2.7.0", "6.0"], + ["is_blank", "float", "mysql", "2.6.5", "4.2"], + ["is_blank", "float", "mysql", "2.6.5", "5.2"], + ["is_blank", "float", "mysql", "2.6.5", "6.0"], + ["is_blank", "float", "mysql", "2.5.7", "4.2"], + ["is_blank", "float", "mysql", "2.5.7", "5.2"], + ["is_blank", "float", "mysql", "2.5.7", "6.0"], + ["is_blank", "float", "mysql", "2.4.9", "4.2"], + ["is_blank", "float", "mysql", "2.4.9", "5.2"], + ["is_blank", "float", "mysql", "2.4.9", "6.0"], + ["is_blank", "float", "sqlite", "2.7.0", "4.2"], + ["is_blank", "float", "sqlite", "2.7.0", "5.2"], + ["is_blank", "float", "sqlite", "2.7.0", "6.0"], + ["is_blank", "float", "sqlite", "2.6.5", "4.2"], + ["is_blank", "float", "sqlite", "2.6.5", "5.2"], + ["is_blank", "float", "sqlite", "2.6.5", "6.0"], + ["is_blank", "float", "sqlite", "2.5.7", "4.2"], + ["is_blank", "float", "sqlite", "2.5.7", "5.2"], + ["is_blank", "float", "sqlite", "2.5.7", "6.0"], + ["is_blank", "float", "sqlite", "2.4.9", "4.2"], + ["is_blank", "float", "sqlite", "2.4.9", "5.2"], + ["is_blank", "float", "sqlite", "2.4.9", "6.0"], + ["is_blank", "integer", "postgresql", "2.7.0", "4.2"], + ["is_blank", "integer", "postgresql", "2.7.0", "5.2"], + ["is_blank", "integer", "postgresql", "2.7.0", "6.0"], + ["is_blank", "integer", "postgresql", "2.6.5", "4.2"], + ["is_blank", "integer", "postgresql", "2.6.5", "5.2"], + ["is_blank", "integer", "postgresql", "2.6.5", "6.0"], + ["is_blank", "integer", "postgresql", "2.5.7", "4.2"], + ["is_blank", "integer", "postgresql", "2.5.7", "5.2"], + ["is_blank", "integer", "postgresql", "2.5.7", "6.0"], + ["is_blank", "integer", "postgresql", "2.4.9", "4.2"], + ["is_blank", "integer", "postgresql", "2.4.9", "5.2"], + ["is_blank", "integer", "postgresql", "2.4.9", "6.0"], + ["is_blank", "integer", "mysql", "2.7.0", "4.2"], + ["is_blank", "integer", "mysql", "2.7.0", "5.2"], + ["is_blank", "integer", "mysql", "2.7.0", "6.0"], + ["is_blank", "integer", "mysql", "2.6.5", "4.2"], + ["is_blank", "integer", "mysql", "2.6.5", "5.2"], + ["is_blank", "integer", "mysql", "2.6.5", "6.0"], + ["is_blank", "integer", "mysql", "2.5.7", "4.2"], + ["is_blank", "integer", "mysql", "2.5.7", "5.2"], + ["is_blank", "integer", "mysql", "2.5.7", "6.0"], + ["is_blank", "integer", "mysql", "2.4.9", "4.2"], + ["is_blank", "integer", "mysql", "2.4.9", "5.2"], + ["is_blank", "integer", "mysql", "2.4.9", "6.0"], + ["is_blank", "integer", "sqlite", "2.7.0", "4.2"], + ["is_blank", "integer", "sqlite", "2.7.0", "5.2"], + ["is_blank", "integer", "sqlite", "2.7.0", "6.0"], + ["is_blank", "integer", "sqlite", "2.6.5", "4.2"], + ["is_blank", "integer", "sqlite", "2.6.5", "5.2"], + ["is_blank", "integer", "sqlite", "2.6.5", "6.0"], + ["is_blank", "integer", "sqlite", "2.5.7", "4.2"], + ["is_blank", "integer", "sqlite", "2.5.7", "5.2"], + ["is_blank", "integer", "sqlite", "2.5.7", "6.0"], + ["is_blank", "integer", "sqlite", "2.4.9", "4.2"], + ["is_blank", "integer", "sqlite", "2.4.9", "5.2"], + ["is_blank", "integer", "sqlite", "2.4.9", "6.0"], + ["is_blank", "string", "postgresql", "2.7.0", "4.2"], + ["is_blank", "string", "postgresql", "2.7.0", "5.2"], + ["is_blank", "string", "postgresql", "2.7.0", "6.0"], + ["is_blank", "string", "postgresql", "2.6.5", "4.2"], + ["is_blank", "string", "postgresql", "2.6.5", "5.2"], + ["is_blank", "string", "postgresql", "2.6.5", "6.0"], + ["is_blank", "string", "postgresql", "2.5.7", "4.2"], + ["is_blank", "string", "postgresql", "2.5.7", "5.2"], + ["is_blank", "string", "postgresql", "2.5.7", "6.0"], + ["is_blank", "string", "postgresql", "2.4.9", "4.2"], + ["is_blank", "string", "postgresql", "2.4.9", "5.2"], + ["is_blank", "string", "postgresql", "2.4.9", "6.0"], + ["is_blank", "string", "mysql", "2.7.0", "4.2"], + ["is_blank", "string", "mysql", "2.7.0", "5.2"], + ["is_blank", "string", "mysql", "2.7.0", "6.0"], + ["is_blank", "string", "mysql", "2.6.5", "4.2"], + ["is_blank", "string", "mysql", "2.6.5", "5.2"], + ["is_blank", "string", "mysql", "2.6.5", "6.0"], + ["is_blank", "string", "mysql", "2.5.7", "4.2"], + ["is_blank", "string", "mysql", "2.5.7", "5.2"], + ["is_blank", "string", "mysql", "2.5.7", "6.0"], + ["is_blank", "string", "mysql", "2.4.9", "4.2"], + ["is_blank", "string", "mysql", "2.4.9", "5.2"], + ["is_blank", "string", "mysql", "2.4.9", "6.0"], + ["is_blank", "string", "sqlite", "2.7.0", "4.2"], + ["is_blank", "string", "sqlite", "2.7.0", "5.2"], + ["is_blank", "string", "sqlite", "2.7.0", "6.0"], + ["is_blank", "string", "sqlite", "2.6.5", "4.2"], + ["is_blank", "string", "sqlite", "2.6.5", "5.2"], + ["is_blank", "string", "sqlite", "2.6.5", "6.0"], + ["is_blank", "string", "sqlite", "2.5.7", "4.2"], + ["is_blank", "string", "sqlite", "2.5.7", "5.2"], + ["is_blank", "string", "sqlite", "2.5.7", "6.0"], + ["is_blank", "string", "sqlite", "2.4.9", "4.2"], + ["is_blank", "string", "sqlite", "2.4.9", "5.2"], + ["is_blank", "string", "sqlite", "2.4.9", "6.0"], + ["is_blank", "text", "postgresql", "2.7.0", "4.2"], + ["is_blank", "text", "postgresql", "2.7.0", "5.2"], + ["is_blank", "text", "postgresql", "2.7.0", "6.0"], + ["is_blank", "text", "postgresql", "2.6.5", "4.2"], + ["is_blank", "text", "postgresql", "2.6.5", "5.2"], + ["is_blank", "text", "postgresql", "2.6.5", "6.0"], + ["is_blank", "text", "postgresql", "2.5.7", "4.2"], + ["is_blank", "text", "postgresql", "2.5.7", "5.2"], + ["is_blank", "text", "postgresql", "2.5.7", "6.0"], + ["is_blank", "text", "postgresql", "2.4.9", "4.2"], + ["is_blank", "text", "postgresql", "2.4.9", "5.2"], + ["is_blank", "text", "postgresql", "2.4.9", "6.0"], + ["is_blank", "text", "mysql", "2.7.0", "4.2"], + ["is_blank", "text", "mysql", "2.7.0", "5.2"], + ["is_blank", "text", "mysql", "2.7.0", "6.0"], + ["is_blank", "text", "mysql", "2.6.5", "4.2"], + ["is_blank", "text", "mysql", "2.6.5", "5.2"], + ["is_blank", "text", "mysql", "2.6.5", "6.0"], + ["is_blank", "text", "mysql", "2.5.7", "4.2"], + ["is_blank", "text", "mysql", "2.5.7", "5.2"], + ["is_blank", "text", "mysql", "2.5.7", "6.0"], + ["is_blank", "text", "mysql", "2.4.9", "4.2"], + ["is_blank", "text", "mysql", "2.4.9", "5.2"], + ["is_blank", "text", "mysql", "2.4.9", "6.0"], + ["is_blank", "text", "sqlite", "2.7.0", "4.2"], + ["is_blank", "text", "sqlite", "2.7.0", "5.2"], + ["is_blank", "text", "sqlite", "2.7.0", "6.0"], + ["is_blank", "text", "sqlite", "2.6.5", "4.2"], + ["is_blank", "text", "sqlite", "2.6.5", "5.2"], + ["is_blank", "text", "sqlite", "2.6.5", "6.0"], + ["is_blank", "text", "sqlite", "2.5.7", "4.2"], + ["is_blank", "text", "sqlite", "2.5.7", "5.2"], + ["is_blank", "text", "sqlite", "2.5.7", "6.0"], + ["is_blank", "text", "sqlite", "2.4.9", "4.2"], + ["is_blank", "text", "sqlite", "2.4.9", "5.2"], + ["is_blank", "text", "sqlite", "2.4.9", "6.0"], + ["is_blank", "time", "postgresql", "2.7.0", "4.2"], + ["is_blank", "time", "postgresql", "2.7.0", "5.2"], + ["is_blank", "time", "postgresql", "2.7.0", "6.0"], + ["is_blank", "time", "postgresql", "2.6.5", "4.2"], + ["is_blank", "time", "postgresql", "2.6.5", "5.2"], + ["is_blank", "time", "postgresql", "2.6.5", "6.0"], + ["is_blank", "time", "postgresql", "2.5.7", "4.2"], + ["is_blank", "time", "postgresql", "2.5.7", "5.2"], + ["is_blank", "time", "postgresql", "2.5.7", "6.0"], + ["is_blank", "time", "postgresql", "2.4.9", "4.2"], + ["is_blank", "time", "postgresql", "2.4.9", "5.2"], + ["is_blank", "time", "postgresql", "2.4.9", "6.0"], + ["is_blank", "time", "mysql", "2.7.0", "4.2"], + ["is_blank", "time", "mysql", "2.7.0", "5.2"], + ["is_blank", "time", "mysql", "2.7.0", "6.0"], + ["is_blank", "time", "mysql", "2.6.5", "4.2"], + ["is_blank", "time", "mysql", "2.6.5", "5.2"], + ["is_blank", "time", "mysql", "2.6.5", "6.0"], + ["is_blank", "time", "mysql", "2.5.7", "4.2"], + ["is_blank", "time", "mysql", "2.5.7", "5.2"], + ["is_blank", "time", "mysql", "2.5.7", "6.0"], + ["is_blank", "time", "mysql", "2.4.9", "4.2"], + ["is_blank", "time", "mysql", "2.4.9", "5.2"], + ["is_blank", "time", "mysql", "2.4.9", "6.0"], + ["is_blank", "time", "sqlite", "2.7.0", "4.2"], + ["is_blank", "time", "sqlite", "2.7.0", "5.2"], + ["is_blank", "time", "sqlite", "2.7.0", "6.0"], + ["is_blank", "time", "sqlite", "2.6.5", "4.2"], + ["is_blank", "time", "sqlite", "2.6.5", "5.2"], + ["is_blank", "time", "sqlite", "2.6.5", "6.0"], + ["is_blank", "time", "sqlite", "2.5.7", "4.2"], + ["is_blank", "time", "sqlite", "2.5.7", "5.2"], + ["is_blank", "time", "sqlite", "2.5.7", "6.0"], + ["is_blank", "time", "sqlite", "2.4.9", "4.2"], + ["is_blank", "time", "sqlite", "2.4.9", "5.2"], + ["is_blank", "time", "sqlite", "2.4.9", "6.0"], + ["match_start", "binary", "postgresql", "2.7.0", "4.2"], + ["match_start", "binary", "postgresql", "2.7.0", "5.2"], + ["match_start", "binary", "postgresql", "2.7.0", "6.0"], + ["match_start", "binary", "postgresql", "2.6.5", "4.2"], + ["match_start", "binary", "postgresql", "2.6.5", "5.2"], + ["match_start", "binary", "postgresql", "2.6.5", "6.0"], + ["match_start", "binary", "postgresql", "2.5.7", "4.2"], + ["match_start", "binary", "postgresql", "2.5.7", "5.2"], + ["match_start", "binary", "postgresql", "2.5.7", "6.0"], + ["match_start", "binary", "postgresql", "2.4.9", "4.2"], + ["match_start", "binary", "postgresql", "2.4.9", "5.2"], + ["match_start", "binary", "postgresql", "2.4.9", "6.0"], + ["match_start", "binary", "mysql", "2.7.0", "4.2"], + ["match_start", "binary", "mysql", "2.7.0", "5.2"], + ["match_start", "binary", "mysql", "2.7.0", "6.0"], + ["match_start", "binary", "mysql", "2.6.5", "4.2"], + ["match_start", "binary", "mysql", "2.6.5", "5.2"], + ["match_start", "binary", "mysql", "2.6.5", "6.0"], + ["match_start", "binary", "mysql", "2.5.7", "4.2"], + ["match_start", "binary", "mysql", "2.5.7", "5.2"], + ["match_start", "binary", "mysql", "2.5.7", "6.0"], + ["match_start", "binary", "mysql", "2.4.9", "4.2"], + ["match_start", "binary", "mysql", "2.4.9", "5.2"], + ["match_start", "binary", "mysql", "2.4.9", "6.0"], + ["match_start", "binary", "sqlite", "2.7.0", "4.2"], + ["match_start", "binary", "sqlite", "2.7.0", "5.2"], + ["match_start", "binary", "sqlite", "2.7.0", "6.0"], + ["match_start", "binary", "sqlite", "2.6.5", "4.2"], + ["match_start", "binary", "sqlite", "2.6.5", "5.2"], + ["match_start", "binary", "sqlite", "2.6.5", "6.0"], + ["match_start", "binary", "sqlite", "2.5.7", "4.2"], + ["match_start", "binary", "sqlite", "2.5.7", "5.2"], + ["match_start", "binary", "sqlite", "2.5.7", "6.0"], + ["match_start", "binary", "sqlite", "2.4.9", "4.2"], + ["match_start", "binary", "sqlite", "2.4.9", "5.2"], + ["match_start", "binary", "sqlite", "2.4.9", "6.0"], + ["match_start", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_start", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_start", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_start", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_start", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_start", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_start", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_start", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_start", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_start", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_start", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_start", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_start", "boolean", "mysql", "2.7.0", "4.2"], + ["match_start", "boolean", "mysql", "2.7.0", "5.2"], + ["match_start", "boolean", "mysql", "2.7.0", "6.0"], + ["match_start", "boolean", "mysql", "2.6.5", "4.2"], + ["match_start", "boolean", "mysql", "2.6.5", "5.2"], + ["match_start", "boolean", "mysql", "2.6.5", "6.0"], + ["match_start", "boolean", "mysql", "2.5.7", "4.2"], + ["match_start", "boolean", "mysql", "2.5.7", "5.2"], + ["match_start", "boolean", "mysql", "2.5.7", "6.0"], + ["match_start", "boolean", "mysql", "2.4.9", "4.2"], + ["match_start", "boolean", "mysql", "2.4.9", "5.2"], + ["match_start", "boolean", "mysql", "2.4.9", "6.0"], + ["match_start", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_start", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_start", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_start", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_start", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_start", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_start", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_start", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_start", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_start", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_start", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_start", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_start", "date", "postgresql", "2.7.0", "4.2"], + ["match_start", "date", "postgresql", "2.7.0", "5.2"], + ["match_start", "date", "postgresql", "2.7.0", "6.0"], + ["match_start", "date", "postgresql", "2.6.5", "4.2"], + ["match_start", "date", "postgresql", "2.6.5", "5.2"], + ["match_start", "date", "postgresql", "2.6.5", "6.0"], + ["match_start", "date", "postgresql", "2.5.7", "4.2"], + ["match_start", "date", "postgresql", "2.5.7", "5.2"], + ["match_start", "date", "postgresql", "2.5.7", "6.0"], + ["match_start", "date", "postgresql", "2.4.9", "4.2"], + ["match_start", "date", "postgresql", "2.4.9", "5.2"], + ["match_start", "date", "postgresql", "2.4.9", "6.0"], + ["match_start", "date", "mysql", "2.7.0", "4.2"], + ["match_start", "date", "mysql", "2.7.0", "5.2"], + ["match_start", "date", "mysql", "2.7.0", "6.0"], + ["match_start", "date", "mysql", "2.6.5", "4.2"], + ["match_start", "date", "mysql", "2.6.5", "5.2"], + ["match_start", "date", "mysql", "2.6.5", "6.0"], + ["match_start", "date", "mysql", "2.5.7", "4.2"], + ["match_start", "date", "mysql", "2.5.7", "5.2"], + ["match_start", "date", "mysql", "2.5.7", "6.0"], + ["match_start", "date", "mysql", "2.4.9", "4.2"], + ["match_start", "date", "mysql", "2.4.9", "5.2"], + ["match_start", "date", "mysql", "2.4.9", "6.0"], + ["match_start", "date", "sqlite", "2.7.0", "4.2"], + ["match_start", "date", "sqlite", "2.7.0", "5.2"], + ["match_start", "date", "sqlite", "2.7.0", "6.0"], + ["match_start", "date", "sqlite", "2.6.5", "4.2"], + ["match_start", "date", "sqlite", "2.6.5", "5.2"], + ["match_start", "date", "sqlite", "2.6.5", "6.0"], + ["match_start", "date", "sqlite", "2.5.7", "4.2"], + ["match_start", "date", "sqlite", "2.5.7", "5.2"], + ["match_start", "date", "sqlite", "2.5.7", "6.0"], + ["match_start", "date", "sqlite", "2.4.9", "4.2"], + ["match_start", "date", "sqlite", "2.4.9", "5.2"], + ["match_start", "date", "sqlite", "2.4.9", "6.0"], + ["match_start", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_start", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_start", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_start", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_start", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_start", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_start", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_start", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_start", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_start", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_start", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_start", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_start", "datetime", "mysql", "2.7.0", "4.2"], + ["match_start", "datetime", "mysql", "2.7.0", "5.2"], + ["match_start", "datetime", "mysql", "2.7.0", "6.0"], + ["match_start", "datetime", "mysql", "2.6.5", "4.2"], + ["match_start", "datetime", "mysql", "2.6.5", "5.2"], + ["match_start", "datetime", "mysql", "2.6.5", "6.0"], + ["match_start", "datetime", "mysql", "2.5.7", "4.2"], + ["match_start", "datetime", "mysql", "2.5.7", "5.2"], + ["match_start", "datetime", "mysql", "2.5.7", "6.0"], + ["match_start", "datetime", "mysql", "2.4.9", "4.2"], + ["match_start", "datetime", "mysql", "2.4.9", "5.2"], + ["match_start", "datetime", "mysql", "2.4.9", "6.0"], + ["match_start", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_start", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_start", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_start", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_start", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_start", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_start", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_start", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_start", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_start", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_start", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_start", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_start", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_start", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_start", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_start", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_start", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_start", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_start", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_start", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_start", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_start", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_start", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_start", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_start", "decimal", "mysql", "2.7.0", "4.2"], + ["match_start", "decimal", "mysql", "2.7.0", "5.2"], + ["match_start", "decimal", "mysql", "2.7.0", "6.0"], + ["match_start", "decimal", "mysql", "2.6.5", "4.2"], + ["match_start", "decimal", "mysql", "2.6.5", "5.2"], + ["match_start", "decimal", "mysql", "2.6.5", "6.0"], + ["match_start", "decimal", "mysql", "2.5.7", "4.2"], + ["match_start", "decimal", "mysql", "2.5.7", "5.2"], + ["match_start", "decimal", "mysql", "2.5.7", "6.0"], + ["match_start", "decimal", "mysql", "2.4.9", "4.2"], + ["match_start", "decimal", "mysql", "2.4.9", "5.2"], + ["match_start", "decimal", "mysql", "2.4.9", "6.0"], + ["match_start", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_start", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_start", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_start", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_start", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_start", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_start", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_start", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_start", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_start", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_start", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_start", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_start", "float", "postgresql", "2.7.0", "4.2"], + ["match_start", "float", "postgresql", "2.7.0", "5.2"], + ["match_start", "float", "postgresql", "2.7.0", "6.0"], + ["match_start", "float", "postgresql", "2.6.5", "4.2"], + ["match_start", "float", "postgresql", "2.6.5", "5.2"], + ["match_start", "float", "postgresql", "2.6.5", "6.0"], + ["match_start", "float", "postgresql", "2.5.7", "4.2"], + ["match_start", "float", "postgresql", "2.5.7", "5.2"], + ["match_start", "float", "postgresql", "2.5.7", "6.0"], + ["match_start", "float", "postgresql", "2.4.9", "4.2"], + ["match_start", "float", "postgresql", "2.4.9", "5.2"], + ["match_start", "float", "postgresql", "2.4.9", "6.0"], + ["match_start", "float", "mysql", "2.7.0", "4.2"], + ["match_start", "float", "mysql", "2.7.0", "5.2"], + ["match_start", "float", "mysql", "2.7.0", "6.0"], + ["match_start", "float", "mysql", "2.6.5", "4.2"], + ["match_start", "float", "mysql", "2.6.5", "5.2"], + ["match_start", "float", "mysql", "2.6.5", "6.0"], + ["match_start", "float", "mysql", "2.5.7", "4.2"], + ["match_start", "float", "mysql", "2.5.7", "5.2"], + ["match_start", "float", "mysql", "2.5.7", "6.0"], + ["match_start", "float", "mysql", "2.4.9", "4.2"], + ["match_start", "float", "mysql", "2.4.9", "5.2"], + ["match_start", "float", "mysql", "2.4.9", "6.0"], + ["match_start", "float", "sqlite", "2.7.0", "4.2"], + ["match_start", "float", "sqlite", "2.7.0", "5.2"], + ["match_start", "float", "sqlite", "2.7.0", "6.0"], + ["match_start", "float", "sqlite", "2.6.5", "4.2"], + ["match_start", "float", "sqlite", "2.6.5", "5.2"], + ["match_start", "float", "sqlite", "2.6.5", "6.0"], + ["match_start", "float", "sqlite", "2.5.7", "4.2"], + ["match_start", "float", "sqlite", "2.5.7", "5.2"], + ["match_start", "float", "sqlite", "2.5.7", "6.0"], + ["match_start", "float", "sqlite", "2.4.9", "4.2"], + ["match_start", "float", "sqlite", "2.4.9", "5.2"], + ["match_start", "float", "sqlite", "2.4.9", "6.0"], + ["match_start", "integer", "postgresql", "2.7.0", "4.2"], + ["match_start", "integer", "postgresql", "2.7.0", "5.2"], + ["match_start", "integer", "postgresql", "2.7.0", "6.0"], + ["match_start", "integer", "postgresql", "2.6.5", "4.2"], + ["match_start", "integer", "postgresql", "2.6.5", "5.2"], + ["match_start", "integer", "postgresql", "2.6.5", "6.0"], + ["match_start", "integer", "postgresql", "2.5.7", "4.2"], + ["match_start", "integer", "postgresql", "2.5.7", "5.2"], + ["match_start", "integer", "postgresql", "2.5.7", "6.0"], + ["match_start", "integer", "postgresql", "2.4.9", "4.2"], + ["match_start", "integer", "postgresql", "2.4.9", "5.2"], + ["match_start", "integer", "postgresql", "2.4.9", "6.0"], + ["match_start", "integer", "mysql", "2.7.0", "4.2"], + ["match_start", "integer", "mysql", "2.7.0", "5.2"], + ["match_start", "integer", "mysql", "2.7.0", "6.0"], + ["match_start", "integer", "mysql", "2.6.5", "4.2"], + ["match_start", "integer", "mysql", "2.6.5", "5.2"], + ["match_start", "integer", "mysql", "2.6.5", "6.0"], + ["match_start", "integer", "mysql", "2.5.7", "4.2"], + ["match_start", "integer", "mysql", "2.5.7", "5.2"], + ["match_start", "integer", "mysql", "2.5.7", "6.0"], + ["match_start", "integer", "mysql", "2.4.9", "4.2"], + ["match_start", "integer", "mysql", "2.4.9", "5.2"], + ["match_start", "integer", "mysql", "2.4.9", "6.0"], + ["match_start", "integer", "sqlite", "2.7.0", "4.2"], + ["match_start", "integer", "sqlite", "2.7.0", "5.2"], + ["match_start", "integer", "sqlite", "2.7.0", "6.0"], + ["match_start", "integer", "sqlite", "2.6.5", "4.2"], + ["match_start", "integer", "sqlite", "2.6.5", "5.2"], + ["match_start", "integer", "sqlite", "2.6.5", "6.0"], + ["match_start", "integer", "sqlite", "2.5.7", "4.2"], + ["match_start", "integer", "sqlite", "2.5.7", "5.2"], + ["match_start", "integer", "sqlite", "2.5.7", "6.0"], + ["match_start", "integer", "sqlite", "2.4.9", "4.2"], + ["match_start", "integer", "sqlite", "2.4.9", "5.2"], + ["match_start", "integer", "sqlite", "2.4.9", "6.0"], + ["match_start", "string", "postgresql", "2.7.0", "4.2"], + ["match_start", "string", "postgresql", "2.7.0", "5.2"], + ["match_start", "string", "postgresql", "2.7.0", "6.0"], + ["match_start", "string", "postgresql", "2.6.5", "4.2"], + ["match_start", "string", "postgresql", "2.6.5", "5.2"], + ["match_start", "string", "postgresql", "2.6.5", "6.0"], + ["match_start", "string", "postgresql", "2.5.7", "4.2"], + ["match_start", "string", "postgresql", "2.5.7", "5.2"], + ["match_start", "string", "postgresql", "2.5.7", "6.0"], + ["match_start", "string", "postgresql", "2.4.9", "4.2"], + ["match_start", "string", "postgresql", "2.4.9", "5.2"], + ["match_start", "string", "postgresql", "2.4.9", "6.0"], + ["match_start", "string", "mysql", "2.7.0", "4.2"], + ["match_start", "string", "mysql", "2.7.0", "5.2"], + ["match_start", "string", "mysql", "2.7.0", "6.0"], + ["match_start", "string", "mysql", "2.6.5", "4.2"], + ["match_start", "string", "mysql", "2.6.5", "5.2"], + ["match_start", "string", "mysql", "2.6.5", "6.0"], + ["match_start", "string", "mysql", "2.5.7", "4.2"], + ["match_start", "string", "mysql", "2.5.7", "5.2"], + ["match_start", "string", "mysql", "2.5.7", "6.0"], + ["match_start", "string", "mysql", "2.4.9", "4.2"], + ["match_start", "string", "mysql", "2.4.9", "5.2"], + ["match_start", "string", "mysql", "2.4.9", "6.0"], + ["match_start", "string", "sqlite", "2.7.0", "4.2"], + ["match_start", "string", "sqlite", "2.7.0", "5.2"], + ["match_start", "string", "sqlite", "2.7.0", "6.0"], + ["match_start", "string", "sqlite", "2.6.5", "4.2"], + ["match_start", "string", "sqlite", "2.6.5", "5.2"], + ["match_start", "string", "sqlite", "2.6.5", "6.0"], + ["match_start", "string", "sqlite", "2.5.7", "4.2"], + ["match_start", "string", "sqlite", "2.5.7", "5.2"], + ["match_start", "string", "sqlite", "2.5.7", "6.0"], + ["match_start", "string", "sqlite", "2.4.9", "4.2"], + ["match_start", "string", "sqlite", "2.4.9", "5.2"], + ["match_start", "string", "sqlite", "2.4.9", "6.0"], + ["match_start", "text", "postgresql", "2.7.0", "4.2"], + ["match_start", "text", "postgresql", "2.7.0", "5.2"], + ["match_start", "text", "postgresql", "2.7.0", "6.0"], + ["match_start", "text", "postgresql", "2.6.5", "4.2"], + ["match_start", "text", "postgresql", "2.6.5", "5.2"], + ["match_start", "text", "postgresql", "2.6.5", "6.0"], + ["match_start", "text", "postgresql", "2.5.7", "4.2"], + ["match_start", "text", "postgresql", "2.5.7", "5.2"], + ["match_start", "text", "postgresql", "2.5.7", "6.0"], + ["match_start", "text", "postgresql", "2.4.9", "4.2"], + ["match_start", "text", "postgresql", "2.4.9", "5.2"], + ["match_start", "text", "postgresql", "2.4.9", "6.0"], + ["match_start", "text", "mysql", "2.7.0", "4.2"], + ["match_start", "text", "mysql", "2.7.0", "5.2"], + ["match_start", "text", "mysql", "2.7.0", "6.0"], + ["match_start", "text", "mysql", "2.6.5", "4.2"], + ["match_start", "text", "mysql", "2.6.5", "5.2"], + ["match_start", "text", "mysql", "2.6.5", "6.0"], + ["match_start", "text", "mysql", "2.5.7", "4.2"], + ["match_start", "text", "mysql", "2.5.7", "5.2"], + ["match_start", "text", "mysql", "2.5.7", "6.0"], + ["match_start", "text", "mysql", "2.4.9", "4.2"], + ["match_start", "text", "mysql", "2.4.9", "5.2"], + ["match_start", "text", "mysql", "2.4.9", "6.0"], + ["match_start", "text", "sqlite", "2.7.0", "4.2"], + ["match_start", "text", "sqlite", "2.7.0", "5.2"], + ["match_start", "text", "sqlite", "2.7.0", "6.0"], + ["match_start", "text", "sqlite", "2.6.5", "4.2"], + ["match_start", "text", "sqlite", "2.6.5", "5.2"], + ["match_start", "text", "sqlite", "2.6.5", "6.0"], + ["match_start", "text", "sqlite", "2.5.7", "4.2"], + ["match_start", "text", "sqlite", "2.5.7", "5.2"], + ["match_start", "text", "sqlite", "2.5.7", "6.0"], + ["match_start", "text", "sqlite", "2.4.9", "4.2"], + ["match_start", "text", "sqlite", "2.4.9", "5.2"], + ["match_start", "text", "sqlite", "2.4.9", "6.0"], + ["match_start", "time", "postgresql", "2.7.0", "4.2"], + ["match_start", "time", "postgresql", "2.7.0", "5.2"], + ["match_start", "time", "postgresql", "2.7.0", "6.0"], + ["match_start", "time", "postgresql", "2.6.5", "4.2"], + ["match_start", "time", "postgresql", "2.6.5", "5.2"], + ["match_start", "time", "postgresql", "2.6.5", "6.0"], + ["match_start", "time", "postgresql", "2.5.7", "4.2"], + ["match_start", "time", "postgresql", "2.5.7", "5.2"], + ["match_start", "time", "postgresql", "2.5.7", "6.0"], + ["match_start", "time", "postgresql", "2.4.9", "4.2"], + ["match_start", "time", "postgresql", "2.4.9", "5.2"], + ["match_start", "time", "postgresql", "2.4.9", "6.0"], + ["match_start", "time", "mysql", "2.7.0", "4.2"], + ["match_start", "time", "mysql", "2.7.0", "5.2"], + ["match_start", "time", "mysql", "2.7.0", "6.0"], + ["match_start", "time", "mysql", "2.6.5", "4.2"], + ["match_start", "time", "mysql", "2.6.5", "5.2"], + ["match_start", "time", "mysql", "2.6.5", "6.0"], + ["match_start", "time", "mysql", "2.5.7", "4.2"], + ["match_start", "time", "mysql", "2.5.7", "5.2"], + ["match_start", "time", "mysql", "2.5.7", "6.0"], + ["match_start", "time", "mysql", "2.4.9", "4.2"], + ["match_start", "time", "mysql", "2.4.9", "5.2"], + ["match_start", "time", "mysql", "2.4.9", "6.0"], + ["match_start", "time", "sqlite", "2.7.0", "4.2"], + ["match_start", "time", "sqlite", "2.7.0", "5.2"], + ["match_start", "time", "sqlite", "2.7.0", "6.0"], + ["match_start", "time", "sqlite", "2.6.5", "4.2"], + ["match_start", "time", "sqlite", "2.6.5", "5.2"], + ["match_start", "time", "sqlite", "2.6.5", "6.0"], + ["match_start", "time", "sqlite", "2.5.7", "4.2"], + ["match_start", "time", "sqlite", "2.5.7", "5.2"], + ["match_start", "time", "sqlite", "2.5.7", "6.0"], + ["match_start", "time", "sqlite", "2.4.9", "4.2"], + ["match_start", "time", "sqlite", "2.4.9", "5.2"], + ["match_start", "time", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "binary", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "binary", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "binary", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "binary", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "binary", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "binary", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "binary", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "binary", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "binary", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "binary", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "binary", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "binary", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "binary", "mysql", "2.7.0", "4.2"], + ["match_start_any", "binary", "mysql", "2.7.0", "5.2"], + ["match_start_any", "binary", "mysql", "2.7.0", "6.0"], + ["match_start_any", "binary", "mysql", "2.6.5", "4.2"], + ["match_start_any", "binary", "mysql", "2.6.5", "5.2"], + ["match_start_any", "binary", "mysql", "2.6.5", "6.0"], + ["match_start_any", "binary", "mysql", "2.5.7", "4.2"], + ["match_start_any", "binary", "mysql", "2.5.7", "5.2"], + ["match_start_any", "binary", "mysql", "2.5.7", "6.0"], + ["match_start_any", "binary", "mysql", "2.4.9", "4.2"], + ["match_start_any", "binary", "mysql", "2.4.9", "5.2"], + ["match_start_any", "binary", "mysql", "2.4.9", "6.0"], + ["match_start_any", "binary", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "binary", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "binary", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "binary", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "binary", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "binary", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "binary", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "binary", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "binary", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "binary", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "binary", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "binary", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "boolean", "mysql", "2.7.0", "4.2"], + ["match_start_any", "boolean", "mysql", "2.7.0", "5.2"], + ["match_start_any", "boolean", "mysql", "2.7.0", "6.0"], + ["match_start_any", "boolean", "mysql", "2.6.5", "4.2"], + ["match_start_any", "boolean", "mysql", "2.6.5", "5.2"], + ["match_start_any", "boolean", "mysql", "2.6.5", "6.0"], + ["match_start_any", "boolean", "mysql", "2.5.7", "4.2"], + ["match_start_any", "boolean", "mysql", "2.5.7", "5.2"], + ["match_start_any", "boolean", "mysql", "2.5.7", "6.0"], + ["match_start_any", "boolean", "mysql", "2.4.9", "4.2"], + ["match_start_any", "boolean", "mysql", "2.4.9", "5.2"], + ["match_start_any", "boolean", "mysql", "2.4.9", "6.0"], + ["match_start_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "date", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "date", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "date", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "date", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "date", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "date", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "date", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "date", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "date", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "date", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "date", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "date", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "date", "mysql", "2.7.0", "4.2"], + ["match_start_any", "date", "mysql", "2.7.0", "5.2"], + ["match_start_any", "date", "mysql", "2.7.0", "6.0"], + ["match_start_any", "date", "mysql", "2.6.5", "4.2"], + ["match_start_any", "date", "mysql", "2.6.5", "5.2"], + ["match_start_any", "date", "mysql", "2.6.5", "6.0"], + ["match_start_any", "date", "mysql", "2.5.7", "4.2"], + ["match_start_any", "date", "mysql", "2.5.7", "5.2"], + ["match_start_any", "date", "mysql", "2.5.7", "6.0"], + ["match_start_any", "date", "mysql", "2.4.9", "4.2"], + ["match_start_any", "date", "mysql", "2.4.9", "5.2"], + ["match_start_any", "date", "mysql", "2.4.9", "6.0"], + ["match_start_any", "date", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "date", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "date", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "date", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "date", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "date", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "date", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "date", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "date", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "date", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "date", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "date", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "datetime", "mysql", "2.7.0", "4.2"], + ["match_start_any", "datetime", "mysql", "2.7.0", "5.2"], + ["match_start_any", "datetime", "mysql", "2.7.0", "6.0"], + ["match_start_any", "datetime", "mysql", "2.6.5", "4.2"], + ["match_start_any", "datetime", "mysql", "2.6.5", "5.2"], + ["match_start_any", "datetime", "mysql", "2.6.5", "6.0"], + ["match_start_any", "datetime", "mysql", "2.5.7", "4.2"], + ["match_start_any", "datetime", "mysql", "2.5.7", "5.2"], + ["match_start_any", "datetime", "mysql", "2.5.7", "6.0"], + ["match_start_any", "datetime", "mysql", "2.4.9", "4.2"], + ["match_start_any", "datetime", "mysql", "2.4.9", "5.2"], + ["match_start_any", "datetime", "mysql", "2.4.9", "6.0"], + ["match_start_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "decimal", "mysql", "2.7.0", "4.2"], + ["match_start_any", "decimal", "mysql", "2.7.0", "5.2"], + ["match_start_any", "decimal", "mysql", "2.7.0", "6.0"], + ["match_start_any", "decimal", "mysql", "2.6.5", "4.2"], + ["match_start_any", "decimal", "mysql", "2.6.5", "5.2"], + ["match_start_any", "decimal", "mysql", "2.6.5", "6.0"], + ["match_start_any", "decimal", "mysql", "2.5.7", "4.2"], + ["match_start_any", "decimal", "mysql", "2.5.7", "5.2"], + ["match_start_any", "decimal", "mysql", "2.5.7", "6.0"], + ["match_start_any", "decimal", "mysql", "2.4.9", "4.2"], + ["match_start_any", "decimal", "mysql", "2.4.9", "5.2"], + ["match_start_any", "decimal", "mysql", "2.4.9", "6.0"], + ["match_start_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "float", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "float", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "float", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "float", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "float", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "float", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "float", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "float", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "float", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "float", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "float", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "float", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "float", "mysql", "2.7.0", "4.2"], + ["match_start_any", "float", "mysql", "2.7.0", "5.2"], + ["match_start_any", "float", "mysql", "2.7.0", "6.0"], + ["match_start_any", "float", "mysql", "2.6.5", "4.2"], + ["match_start_any", "float", "mysql", "2.6.5", "5.2"], + ["match_start_any", "float", "mysql", "2.6.5", "6.0"], + ["match_start_any", "float", "mysql", "2.5.7", "4.2"], + ["match_start_any", "float", "mysql", "2.5.7", "5.2"], + ["match_start_any", "float", "mysql", "2.5.7", "6.0"], + ["match_start_any", "float", "mysql", "2.4.9", "4.2"], + ["match_start_any", "float", "mysql", "2.4.9", "5.2"], + ["match_start_any", "float", "mysql", "2.4.9", "6.0"], + ["match_start_any", "float", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "float", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "float", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "float", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "float", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "float", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "float", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "float", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "float", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "float", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "float", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "float", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "integer", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "integer", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "integer", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "integer", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "integer", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "integer", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "integer", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "integer", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "integer", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "integer", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "integer", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "integer", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "integer", "mysql", "2.7.0", "4.2"], + ["match_start_any", "integer", "mysql", "2.7.0", "5.2"], + ["match_start_any", "integer", "mysql", "2.7.0", "6.0"], + ["match_start_any", "integer", "mysql", "2.6.5", "4.2"], + ["match_start_any", "integer", "mysql", "2.6.5", "5.2"], + ["match_start_any", "integer", "mysql", "2.6.5", "6.0"], + ["match_start_any", "integer", "mysql", "2.5.7", "4.2"], + ["match_start_any", "integer", "mysql", "2.5.7", "5.2"], + ["match_start_any", "integer", "mysql", "2.5.7", "6.0"], + ["match_start_any", "integer", "mysql", "2.4.9", "4.2"], + ["match_start_any", "integer", "mysql", "2.4.9", "5.2"], + ["match_start_any", "integer", "mysql", "2.4.9", "6.0"], + ["match_start_any", "integer", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "integer", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "integer", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "integer", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "integer", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "integer", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "integer", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "integer", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "integer", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "integer", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "integer", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "integer", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "string", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "string", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "string", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "string", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "string", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "string", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "string", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "string", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "string", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "string", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "string", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "string", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "string", "mysql", "2.7.0", "4.2"], + ["match_start_any", "string", "mysql", "2.7.0", "5.2"], + ["match_start_any", "string", "mysql", "2.7.0", "6.0"], + ["match_start_any", "string", "mysql", "2.6.5", "4.2"], + ["match_start_any", "string", "mysql", "2.6.5", "5.2"], + ["match_start_any", "string", "mysql", "2.6.5", "6.0"], + ["match_start_any", "string", "mysql", "2.5.7", "4.2"], + ["match_start_any", "string", "mysql", "2.5.7", "5.2"], + ["match_start_any", "string", "mysql", "2.5.7", "6.0"], + ["match_start_any", "string", "mysql", "2.4.9", "4.2"], + ["match_start_any", "string", "mysql", "2.4.9", "5.2"], + ["match_start_any", "string", "mysql", "2.4.9", "6.0"], + ["match_start_any", "string", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "string", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "string", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "string", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "string", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "string", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "string", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "string", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "string", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "string", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "string", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "string", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "text", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "text", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "text", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "text", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "text", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "text", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "text", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "text", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "text", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "text", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "text", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "text", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "text", "mysql", "2.7.0", "4.2"], + ["match_start_any", "text", "mysql", "2.7.0", "5.2"], + ["match_start_any", "text", "mysql", "2.7.0", "6.0"], + ["match_start_any", "text", "mysql", "2.6.5", "4.2"], + ["match_start_any", "text", "mysql", "2.6.5", "5.2"], + ["match_start_any", "text", "mysql", "2.6.5", "6.0"], + ["match_start_any", "text", "mysql", "2.5.7", "4.2"], + ["match_start_any", "text", "mysql", "2.5.7", "5.2"], + ["match_start_any", "text", "mysql", "2.5.7", "6.0"], + ["match_start_any", "text", "mysql", "2.4.9", "4.2"], + ["match_start_any", "text", "mysql", "2.4.9", "5.2"], + ["match_start_any", "text", "mysql", "2.4.9", "6.0"], + ["match_start_any", "text", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "text", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "text", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "text", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "text", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "text", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "text", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "text", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "text", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "text", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "text", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "text", "sqlite", "2.4.9", "6.0"], + ["match_start_any", "time", "postgresql", "2.7.0", "4.2"], + ["match_start_any", "time", "postgresql", "2.7.0", "5.2"], + ["match_start_any", "time", "postgresql", "2.7.0", "6.0"], + ["match_start_any", "time", "postgresql", "2.6.5", "4.2"], + ["match_start_any", "time", "postgresql", "2.6.5", "5.2"], + ["match_start_any", "time", "postgresql", "2.6.5", "6.0"], + ["match_start_any", "time", "postgresql", "2.5.7", "4.2"], + ["match_start_any", "time", "postgresql", "2.5.7", "5.2"], + ["match_start_any", "time", "postgresql", "2.5.7", "6.0"], + ["match_start_any", "time", "postgresql", "2.4.9", "4.2"], + ["match_start_any", "time", "postgresql", "2.4.9", "5.2"], + ["match_start_any", "time", "postgresql", "2.4.9", "6.0"], + ["match_start_any", "time", "mysql", "2.7.0", "4.2"], + ["match_start_any", "time", "mysql", "2.7.0", "5.2"], + ["match_start_any", "time", "mysql", "2.7.0", "6.0"], + ["match_start_any", "time", "mysql", "2.6.5", "4.2"], + ["match_start_any", "time", "mysql", "2.6.5", "5.2"], + ["match_start_any", "time", "mysql", "2.6.5", "6.0"], + ["match_start_any", "time", "mysql", "2.5.7", "4.2"], + ["match_start_any", "time", "mysql", "2.5.7", "5.2"], + ["match_start_any", "time", "mysql", "2.5.7", "6.0"], + ["match_start_any", "time", "mysql", "2.4.9", "4.2"], + ["match_start_any", "time", "mysql", "2.4.9", "5.2"], + ["match_start_any", "time", "mysql", "2.4.9", "6.0"], + ["match_start_any", "time", "sqlite", "2.7.0", "4.2"], + ["match_start_any", "time", "sqlite", "2.7.0", "5.2"], + ["match_start_any", "time", "sqlite", "2.7.0", "6.0"], + ["match_start_any", "time", "sqlite", "2.6.5", "4.2"], + ["match_start_any", "time", "sqlite", "2.6.5", "5.2"], + ["match_start_any", "time", "sqlite", "2.6.5", "6.0"], + ["match_start_any", "time", "sqlite", "2.5.7", "4.2"], + ["match_start_any", "time", "sqlite", "2.5.7", "5.2"], + ["match_start_any", "time", "sqlite", "2.5.7", "6.0"], + ["match_start_any", "time", "sqlite", "2.4.9", "4.2"], + ["match_start_any", "time", "sqlite", "2.4.9", "5.2"], + ["match_start_any", "time", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "binary", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "binary", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "binary", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "binary", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "binary", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "binary", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "binary", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "binary", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "binary", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "binary", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "binary", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "binary", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "binary", "mysql", "2.7.0", "4.2"], + ["match_start_all", "binary", "mysql", "2.7.0", "5.2"], + ["match_start_all", "binary", "mysql", "2.7.0", "6.0"], + ["match_start_all", "binary", "mysql", "2.6.5", "4.2"], + ["match_start_all", "binary", "mysql", "2.6.5", "5.2"], + ["match_start_all", "binary", "mysql", "2.6.5", "6.0"], + ["match_start_all", "binary", "mysql", "2.5.7", "4.2"], + ["match_start_all", "binary", "mysql", "2.5.7", "5.2"], + ["match_start_all", "binary", "mysql", "2.5.7", "6.0"], + ["match_start_all", "binary", "mysql", "2.4.9", "4.2"], + ["match_start_all", "binary", "mysql", "2.4.9", "5.2"], + ["match_start_all", "binary", "mysql", "2.4.9", "6.0"], + ["match_start_all", "binary", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "binary", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "binary", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "binary", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "binary", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "binary", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "binary", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "binary", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "binary", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "binary", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "binary", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "binary", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "boolean", "mysql", "2.7.0", "4.2"], + ["match_start_all", "boolean", "mysql", "2.7.0", "5.2"], + ["match_start_all", "boolean", "mysql", "2.7.0", "6.0"], + ["match_start_all", "boolean", "mysql", "2.6.5", "4.2"], + ["match_start_all", "boolean", "mysql", "2.6.5", "5.2"], + ["match_start_all", "boolean", "mysql", "2.6.5", "6.0"], + ["match_start_all", "boolean", "mysql", "2.5.7", "4.2"], + ["match_start_all", "boolean", "mysql", "2.5.7", "5.2"], + ["match_start_all", "boolean", "mysql", "2.5.7", "6.0"], + ["match_start_all", "boolean", "mysql", "2.4.9", "4.2"], + ["match_start_all", "boolean", "mysql", "2.4.9", "5.2"], + ["match_start_all", "boolean", "mysql", "2.4.9", "6.0"], + ["match_start_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "date", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "date", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "date", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "date", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "date", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "date", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "date", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "date", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "date", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "date", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "date", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "date", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "date", "mysql", "2.7.0", "4.2"], + ["match_start_all", "date", "mysql", "2.7.0", "5.2"], + ["match_start_all", "date", "mysql", "2.7.0", "6.0"], + ["match_start_all", "date", "mysql", "2.6.5", "4.2"], + ["match_start_all", "date", "mysql", "2.6.5", "5.2"], + ["match_start_all", "date", "mysql", "2.6.5", "6.0"], + ["match_start_all", "date", "mysql", "2.5.7", "4.2"], + ["match_start_all", "date", "mysql", "2.5.7", "5.2"], + ["match_start_all", "date", "mysql", "2.5.7", "6.0"], + ["match_start_all", "date", "mysql", "2.4.9", "4.2"], + ["match_start_all", "date", "mysql", "2.4.9", "5.2"], + ["match_start_all", "date", "mysql", "2.4.9", "6.0"], + ["match_start_all", "date", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "date", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "date", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "date", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "date", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "date", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "date", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "date", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "date", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "date", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "date", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "date", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "datetime", "mysql", "2.7.0", "4.2"], + ["match_start_all", "datetime", "mysql", "2.7.0", "5.2"], + ["match_start_all", "datetime", "mysql", "2.7.0", "6.0"], + ["match_start_all", "datetime", "mysql", "2.6.5", "4.2"], + ["match_start_all", "datetime", "mysql", "2.6.5", "5.2"], + ["match_start_all", "datetime", "mysql", "2.6.5", "6.0"], + ["match_start_all", "datetime", "mysql", "2.5.7", "4.2"], + ["match_start_all", "datetime", "mysql", "2.5.7", "5.2"], + ["match_start_all", "datetime", "mysql", "2.5.7", "6.0"], + ["match_start_all", "datetime", "mysql", "2.4.9", "4.2"], + ["match_start_all", "datetime", "mysql", "2.4.9", "5.2"], + ["match_start_all", "datetime", "mysql", "2.4.9", "6.0"], + ["match_start_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "decimal", "mysql", "2.7.0", "4.2"], + ["match_start_all", "decimal", "mysql", "2.7.0", "5.2"], + ["match_start_all", "decimal", "mysql", "2.7.0", "6.0"], + ["match_start_all", "decimal", "mysql", "2.6.5", "4.2"], + ["match_start_all", "decimal", "mysql", "2.6.5", "5.2"], + ["match_start_all", "decimal", "mysql", "2.6.5", "6.0"], + ["match_start_all", "decimal", "mysql", "2.5.7", "4.2"], + ["match_start_all", "decimal", "mysql", "2.5.7", "5.2"], + ["match_start_all", "decimal", "mysql", "2.5.7", "6.0"], + ["match_start_all", "decimal", "mysql", "2.4.9", "4.2"], + ["match_start_all", "decimal", "mysql", "2.4.9", "5.2"], + ["match_start_all", "decimal", "mysql", "2.4.9", "6.0"], + ["match_start_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "float", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "float", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "float", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "float", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "float", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "float", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "float", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "float", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "float", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "float", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "float", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "float", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "float", "mysql", "2.7.0", "4.2"], + ["match_start_all", "float", "mysql", "2.7.0", "5.2"], + ["match_start_all", "float", "mysql", "2.7.0", "6.0"], + ["match_start_all", "float", "mysql", "2.6.5", "4.2"], + ["match_start_all", "float", "mysql", "2.6.5", "5.2"], + ["match_start_all", "float", "mysql", "2.6.5", "6.0"], + ["match_start_all", "float", "mysql", "2.5.7", "4.2"], + ["match_start_all", "float", "mysql", "2.5.7", "5.2"], + ["match_start_all", "float", "mysql", "2.5.7", "6.0"], + ["match_start_all", "float", "mysql", "2.4.9", "4.2"], + ["match_start_all", "float", "mysql", "2.4.9", "5.2"], + ["match_start_all", "float", "mysql", "2.4.9", "6.0"], + ["match_start_all", "float", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "float", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "float", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "float", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "float", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "float", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "float", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "float", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "float", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "float", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "float", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "float", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "integer", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "integer", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "integer", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "integer", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "integer", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "integer", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "integer", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "integer", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "integer", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "integer", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "integer", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "integer", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "integer", "mysql", "2.7.0", "4.2"], + ["match_start_all", "integer", "mysql", "2.7.0", "5.2"], + ["match_start_all", "integer", "mysql", "2.7.0", "6.0"], + ["match_start_all", "integer", "mysql", "2.6.5", "4.2"], + ["match_start_all", "integer", "mysql", "2.6.5", "5.2"], + ["match_start_all", "integer", "mysql", "2.6.5", "6.0"], + ["match_start_all", "integer", "mysql", "2.5.7", "4.2"], + ["match_start_all", "integer", "mysql", "2.5.7", "5.2"], + ["match_start_all", "integer", "mysql", "2.5.7", "6.0"], + ["match_start_all", "integer", "mysql", "2.4.9", "4.2"], + ["match_start_all", "integer", "mysql", "2.4.9", "5.2"], + ["match_start_all", "integer", "mysql", "2.4.9", "6.0"], + ["match_start_all", "integer", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "integer", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "integer", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "integer", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "integer", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "integer", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "integer", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "integer", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "integer", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "integer", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "integer", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "integer", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "string", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "string", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "string", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "string", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "string", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "string", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "string", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "string", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "string", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "string", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "string", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "string", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "string", "mysql", "2.7.0", "4.2"], + ["match_start_all", "string", "mysql", "2.7.0", "5.2"], + ["match_start_all", "string", "mysql", "2.7.0", "6.0"], + ["match_start_all", "string", "mysql", "2.6.5", "4.2"], + ["match_start_all", "string", "mysql", "2.6.5", "5.2"], + ["match_start_all", "string", "mysql", "2.6.5", "6.0"], + ["match_start_all", "string", "mysql", "2.5.7", "4.2"], + ["match_start_all", "string", "mysql", "2.5.7", "5.2"], + ["match_start_all", "string", "mysql", "2.5.7", "6.0"], + ["match_start_all", "string", "mysql", "2.4.9", "4.2"], + ["match_start_all", "string", "mysql", "2.4.9", "5.2"], + ["match_start_all", "string", "mysql", "2.4.9", "6.0"], + ["match_start_all", "string", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "string", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "string", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "string", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "string", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "string", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "string", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "string", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "string", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "string", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "string", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "string", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "text", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "text", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "text", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "text", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "text", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "text", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "text", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "text", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "text", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "text", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "text", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "text", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "text", "mysql", "2.7.0", "4.2"], + ["match_start_all", "text", "mysql", "2.7.0", "5.2"], + ["match_start_all", "text", "mysql", "2.7.0", "6.0"], + ["match_start_all", "text", "mysql", "2.6.5", "4.2"], + ["match_start_all", "text", "mysql", "2.6.5", "5.2"], + ["match_start_all", "text", "mysql", "2.6.5", "6.0"], + ["match_start_all", "text", "mysql", "2.5.7", "4.2"], + ["match_start_all", "text", "mysql", "2.5.7", "5.2"], + ["match_start_all", "text", "mysql", "2.5.7", "6.0"], + ["match_start_all", "text", "mysql", "2.4.9", "4.2"], + ["match_start_all", "text", "mysql", "2.4.9", "5.2"], + ["match_start_all", "text", "mysql", "2.4.9", "6.0"], + ["match_start_all", "text", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "text", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "text", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "text", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "text", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "text", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "text", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "text", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "text", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "text", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "text", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "text", "sqlite", "2.4.9", "6.0"], + ["match_start_all", "time", "postgresql", "2.7.0", "4.2"], + ["match_start_all", "time", "postgresql", "2.7.0", "5.2"], + ["match_start_all", "time", "postgresql", "2.7.0", "6.0"], + ["match_start_all", "time", "postgresql", "2.6.5", "4.2"], + ["match_start_all", "time", "postgresql", "2.6.5", "5.2"], + ["match_start_all", "time", "postgresql", "2.6.5", "6.0"], + ["match_start_all", "time", "postgresql", "2.5.7", "4.2"], + ["match_start_all", "time", "postgresql", "2.5.7", "5.2"], + ["match_start_all", "time", "postgresql", "2.5.7", "6.0"], + ["match_start_all", "time", "postgresql", "2.4.9", "4.2"], + ["match_start_all", "time", "postgresql", "2.4.9", "5.2"], + ["match_start_all", "time", "postgresql", "2.4.9", "6.0"], + ["match_start_all", "time", "mysql", "2.7.0", "4.2"], + ["match_start_all", "time", "mysql", "2.7.0", "5.2"], + ["match_start_all", "time", "mysql", "2.7.0", "6.0"], + ["match_start_all", "time", "mysql", "2.6.5", "4.2"], + ["match_start_all", "time", "mysql", "2.6.5", "5.2"], + ["match_start_all", "time", "mysql", "2.6.5", "6.0"], + ["match_start_all", "time", "mysql", "2.5.7", "4.2"], + ["match_start_all", "time", "mysql", "2.5.7", "5.2"], + ["match_start_all", "time", "mysql", "2.5.7", "6.0"], + ["match_start_all", "time", "mysql", "2.4.9", "4.2"], + ["match_start_all", "time", "mysql", "2.4.9", "5.2"], + ["match_start_all", "time", "mysql", "2.4.9", "6.0"], + ["match_start_all", "time", "sqlite", "2.7.0", "4.2"], + ["match_start_all", "time", "sqlite", "2.7.0", "5.2"], + ["match_start_all", "time", "sqlite", "2.7.0", "6.0"], + ["match_start_all", "time", "sqlite", "2.6.5", "4.2"], + ["match_start_all", "time", "sqlite", "2.6.5", "5.2"], + ["match_start_all", "time", "sqlite", "2.6.5", "6.0"], + ["match_start_all", "time", "sqlite", "2.5.7", "4.2"], + ["match_start_all", "time", "sqlite", "2.5.7", "5.2"], + ["match_start_all", "time", "sqlite", "2.5.7", "6.0"], + ["match_start_all", "time", "sqlite", "2.4.9", "4.2"], + ["match_start_all", "time", "sqlite", "2.4.9", "5.2"], + ["match_start_all", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_start", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_start", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_start", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_start", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_start", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_start", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_start", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_start", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_start", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_start", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_start", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_start", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_start", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_start", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_start", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_start", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_start", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_start", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_start", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_start", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_start", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_start", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_start", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_start", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "date", "mysql", "2.7.0", "4.2"], + ["match_not_start", "date", "mysql", "2.7.0", "5.2"], + ["match_not_start", "date", "mysql", "2.7.0", "6.0"], + ["match_not_start", "date", "mysql", "2.6.5", "4.2"], + ["match_not_start", "date", "mysql", "2.6.5", "5.2"], + ["match_not_start", "date", "mysql", "2.6.5", "6.0"], + ["match_not_start", "date", "mysql", "2.5.7", "4.2"], + ["match_not_start", "date", "mysql", "2.5.7", "5.2"], + ["match_not_start", "date", "mysql", "2.5.7", "6.0"], + ["match_not_start", "date", "mysql", "2.4.9", "4.2"], + ["match_not_start", "date", "mysql", "2.4.9", "5.2"], + ["match_not_start", "date", "mysql", "2.4.9", "6.0"], + ["match_not_start", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_start", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_start", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_start", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_start", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_start", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_start", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_start", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_start", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_start", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_start", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_start", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_start", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_start", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_start", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_start", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_start", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_start", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_start", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_start", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_start", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_start", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_start", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_start", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_start", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "float", "mysql", "2.7.0", "4.2"], + ["match_not_start", "float", "mysql", "2.7.0", "5.2"], + ["match_not_start", "float", "mysql", "2.7.0", "6.0"], + ["match_not_start", "float", "mysql", "2.6.5", "4.2"], + ["match_not_start", "float", "mysql", "2.6.5", "5.2"], + ["match_not_start", "float", "mysql", "2.6.5", "6.0"], + ["match_not_start", "float", "mysql", "2.5.7", "4.2"], + ["match_not_start", "float", "mysql", "2.5.7", "5.2"], + ["match_not_start", "float", "mysql", "2.5.7", "6.0"], + ["match_not_start", "float", "mysql", "2.4.9", "4.2"], + ["match_not_start", "float", "mysql", "2.4.9", "5.2"], + ["match_not_start", "float", "mysql", "2.4.9", "6.0"], + ["match_not_start", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_start", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_start", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_start", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_start", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_start", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_start", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_start", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_start", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_start", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_start", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_start", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_start", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "string", "mysql", "2.7.0", "4.2"], + ["match_not_start", "string", "mysql", "2.7.0", "5.2"], + ["match_not_start", "string", "mysql", "2.7.0", "6.0"], + ["match_not_start", "string", "mysql", "2.6.5", "4.2"], + ["match_not_start", "string", "mysql", "2.6.5", "5.2"], + ["match_not_start", "string", "mysql", "2.6.5", "6.0"], + ["match_not_start", "string", "mysql", "2.5.7", "4.2"], + ["match_not_start", "string", "mysql", "2.5.7", "5.2"], + ["match_not_start", "string", "mysql", "2.5.7", "6.0"], + ["match_not_start", "string", "mysql", "2.4.9", "4.2"], + ["match_not_start", "string", "mysql", "2.4.9", "5.2"], + ["match_not_start", "string", "mysql", "2.4.9", "6.0"], + ["match_not_start", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "text", "mysql", "2.7.0", "4.2"], + ["match_not_start", "text", "mysql", "2.7.0", "5.2"], + ["match_not_start", "text", "mysql", "2.7.0", "6.0"], + ["match_not_start", "text", "mysql", "2.6.5", "4.2"], + ["match_not_start", "text", "mysql", "2.6.5", "5.2"], + ["match_not_start", "text", "mysql", "2.6.5", "6.0"], + ["match_not_start", "text", "mysql", "2.5.7", "4.2"], + ["match_not_start", "text", "mysql", "2.5.7", "5.2"], + ["match_not_start", "text", "mysql", "2.5.7", "6.0"], + ["match_not_start", "text", "mysql", "2.4.9", "4.2"], + ["match_not_start", "text", "mysql", "2.4.9", "5.2"], + ["match_not_start", "text", "mysql", "2.4.9", "6.0"], + ["match_not_start", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_start", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_start", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_start", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_start", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_start", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_start", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_start", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_start", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_start", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_start", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_start", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_start", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_start", "time", "mysql", "2.7.0", "4.2"], + ["match_not_start", "time", "mysql", "2.7.0", "5.2"], + ["match_not_start", "time", "mysql", "2.7.0", "6.0"], + ["match_not_start", "time", "mysql", "2.6.5", "4.2"], + ["match_not_start", "time", "mysql", "2.6.5", "5.2"], + ["match_not_start", "time", "mysql", "2.6.5", "6.0"], + ["match_not_start", "time", "mysql", "2.5.7", "4.2"], + ["match_not_start", "time", "mysql", "2.5.7", "5.2"], + ["match_not_start", "time", "mysql", "2.5.7", "6.0"], + ["match_not_start", "time", "mysql", "2.4.9", "4.2"], + ["match_not_start", "time", "mysql", "2.4.9", "5.2"], + ["match_not_start", "time", "mysql", "2.4.9", "6.0"], + ["match_not_start", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_start", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_start", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_start", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_start", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_start", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_start", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_start", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_start", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_start", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_start", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_start", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "date", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "date", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "date", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "date", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "date", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "date", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "date", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "date", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "date", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "date", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "date", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "date", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "float", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "float", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "float", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "float", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "float", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "float", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "float", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "float", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "float", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "float", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "float", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "float", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "string", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "string", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "string", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "string", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "string", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "string", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "string", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "string", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "string", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "string", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "string", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "string", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "text", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "text", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "text", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "text", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "text", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "text", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "text", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "text", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "text", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "text", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "text", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "text", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_start_any", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_start_any", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_start_any", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_start_any", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_start_any", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_start_any", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_start_any", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_start_any", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_start_any", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_start_any", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_start_any", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_start_any", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_start_any", "time", "mysql", "2.7.0", "4.2"], + ["match_not_start_any", "time", "mysql", "2.7.0", "5.2"], + ["match_not_start_any", "time", "mysql", "2.7.0", "6.0"], + ["match_not_start_any", "time", "mysql", "2.6.5", "4.2"], + ["match_not_start_any", "time", "mysql", "2.6.5", "5.2"], + ["match_not_start_any", "time", "mysql", "2.6.5", "6.0"], + ["match_not_start_any", "time", "mysql", "2.5.7", "4.2"], + ["match_not_start_any", "time", "mysql", "2.5.7", "5.2"], + ["match_not_start_any", "time", "mysql", "2.5.7", "6.0"], + ["match_not_start_any", "time", "mysql", "2.4.9", "4.2"], + ["match_not_start_any", "time", "mysql", "2.4.9", "5.2"], + ["match_not_start_any", "time", "mysql", "2.4.9", "6.0"], + ["match_not_start_any", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_start_any", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_start_any", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_start_any", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_start_any", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_start_any", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_start_any", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_start_any", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_start_any", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_start_any", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_start_any", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_start_any", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "date", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "date", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "date", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "date", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "date", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "date", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "date", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "date", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "date", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "date", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "date", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "date", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "float", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "float", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "float", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "float", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "float", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "float", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "float", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "float", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "float", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "float", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "float", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "float", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "string", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "string", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "string", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "string", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "string", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "string", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "string", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "string", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "string", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "string", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "string", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "string", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "text", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "text", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "text", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "text", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "text", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "text", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "text", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "text", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "text", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "text", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "text", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "text", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_start_all", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_start_all", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_start_all", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_start_all", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_start_all", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_start_all", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_start_all", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_start_all", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_start_all", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_start_all", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_start_all", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_start_all", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_start_all", "time", "mysql", "2.7.0", "4.2"], + ["match_not_start_all", "time", "mysql", "2.7.0", "5.2"], + ["match_not_start_all", "time", "mysql", "2.7.0", "6.0"], + ["match_not_start_all", "time", "mysql", "2.6.5", "4.2"], + ["match_not_start_all", "time", "mysql", "2.6.5", "5.2"], + ["match_not_start_all", "time", "mysql", "2.6.5", "6.0"], + ["match_not_start_all", "time", "mysql", "2.5.7", "4.2"], + ["match_not_start_all", "time", "mysql", "2.5.7", "5.2"], + ["match_not_start_all", "time", "mysql", "2.5.7", "6.0"], + ["match_not_start_all", "time", "mysql", "2.4.9", "4.2"], + ["match_not_start_all", "time", "mysql", "2.4.9", "5.2"], + ["match_not_start_all", "time", "mysql", "2.4.9", "6.0"], + ["match_not_start_all", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_start_all", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_start_all", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_start_all", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_start_all", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_start_all", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_start_all", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_start_all", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_start_all", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_start_all", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_start_all", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_start_all", "time", "sqlite", "2.4.9", "6.0"], + ["match_end", "binary", "postgresql", "2.7.0", "4.2"], + ["match_end", "binary", "postgresql", "2.7.0", "5.2"], + ["match_end", "binary", "postgresql", "2.7.0", "6.0"], + ["match_end", "binary", "postgresql", "2.6.5", "4.2"], + ["match_end", "binary", "postgresql", "2.6.5", "5.2"], + ["match_end", "binary", "postgresql", "2.6.5", "6.0"], + ["match_end", "binary", "postgresql", "2.5.7", "4.2"], + ["match_end", "binary", "postgresql", "2.5.7", "5.2"], + ["match_end", "binary", "postgresql", "2.5.7", "6.0"], + ["match_end", "binary", "postgresql", "2.4.9", "4.2"], + ["match_end", "binary", "postgresql", "2.4.9", "5.2"], + ["match_end", "binary", "postgresql", "2.4.9", "6.0"], + ["match_end", "binary", "mysql", "2.7.0", "4.2"], + ["match_end", "binary", "mysql", "2.7.0", "5.2"], + ["match_end", "binary", "mysql", "2.7.0", "6.0"], + ["match_end", "binary", "mysql", "2.6.5", "4.2"], + ["match_end", "binary", "mysql", "2.6.5", "5.2"], + ["match_end", "binary", "mysql", "2.6.5", "6.0"], + ["match_end", "binary", "mysql", "2.5.7", "4.2"], + ["match_end", "binary", "mysql", "2.5.7", "5.2"], + ["match_end", "binary", "mysql", "2.5.7", "6.0"], + ["match_end", "binary", "mysql", "2.4.9", "4.2"], + ["match_end", "binary", "mysql", "2.4.9", "5.2"], + ["match_end", "binary", "mysql", "2.4.9", "6.0"], + ["match_end", "binary", "sqlite", "2.7.0", "4.2"], + ["match_end", "binary", "sqlite", "2.7.0", "5.2"], + ["match_end", "binary", "sqlite", "2.7.0", "6.0"], + ["match_end", "binary", "sqlite", "2.6.5", "4.2"], + ["match_end", "binary", "sqlite", "2.6.5", "5.2"], + ["match_end", "binary", "sqlite", "2.6.5", "6.0"], + ["match_end", "binary", "sqlite", "2.5.7", "4.2"], + ["match_end", "binary", "sqlite", "2.5.7", "5.2"], + ["match_end", "binary", "sqlite", "2.5.7", "6.0"], + ["match_end", "binary", "sqlite", "2.4.9", "4.2"], + ["match_end", "binary", "sqlite", "2.4.9", "5.2"], + ["match_end", "binary", "sqlite", "2.4.9", "6.0"], + ["match_end", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_end", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_end", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_end", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_end", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_end", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_end", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_end", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_end", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_end", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_end", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_end", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_end", "boolean", "mysql", "2.7.0", "4.2"], + ["match_end", "boolean", "mysql", "2.7.0", "5.2"], + ["match_end", "boolean", "mysql", "2.7.0", "6.0"], + ["match_end", "boolean", "mysql", "2.6.5", "4.2"], + ["match_end", "boolean", "mysql", "2.6.5", "5.2"], + ["match_end", "boolean", "mysql", "2.6.5", "6.0"], + ["match_end", "boolean", "mysql", "2.5.7", "4.2"], + ["match_end", "boolean", "mysql", "2.5.7", "5.2"], + ["match_end", "boolean", "mysql", "2.5.7", "6.0"], + ["match_end", "boolean", "mysql", "2.4.9", "4.2"], + ["match_end", "boolean", "mysql", "2.4.9", "5.2"], + ["match_end", "boolean", "mysql", "2.4.9", "6.0"], + ["match_end", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_end", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_end", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_end", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_end", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_end", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_end", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_end", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_end", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_end", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_end", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_end", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_end", "date", "postgresql", "2.7.0", "4.2"], + ["match_end", "date", "postgresql", "2.7.0", "5.2"], + ["match_end", "date", "postgresql", "2.7.0", "6.0"], + ["match_end", "date", "postgresql", "2.6.5", "4.2"], + ["match_end", "date", "postgresql", "2.6.5", "5.2"], + ["match_end", "date", "postgresql", "2.6.5", "6.0"], + ["match_end", "date", "postgresql", "2.5.7", "4.2"], + ["match_end", "date", "postgresql", "2.5.7", "5.2"], + ["match_end", "date", "postgresql", "2.5.7", "6.0"], + ["match_end", "date", "postgresql", "2.4.9", "4.2"], + ["match_end", "date", "postgresql", "2.4.9", "5.2"], + ["match_end", "date", "postgresql", "2.4.9", "6.0"], + ["match_end", "date", "mysql", "2.7.0", "4.2"], + ["match_end", "date", "mysql", "2.7.0", "5.2"], + ["match_end", "date", "mysql", "2.7.0", "6.0"], + ["match_end", "date", "mysql", "2.6.5", "4.2"], + ["match_end", "date", "mysql", "2.6.5", "5.2"], + ["match_end", "date", "mysql", "2.6.5", "6.0"], + ["match_end", "date", "mysql", "2.5.7", "4.2"], + ["match_end", "date", "mysql", "2.5.7", "5.2"], + ["match_end", "date", "mysql", "2.5.7", "6.0"], + ["match_end", "date", "mysql", "2.4.9", "4.2"], + ["match_end", "date", "mysql", "2.4.9", "5.2"], + ["match_end", "date", "mysql", "2.4.9", "6.0"], + ["match_end", "date", "sqlite", "2.7.0", "4.2"], + ["match_end", "date", "sqlite", "2.7.0", "5.2"], + ["match_end", "date", "sqlite", "2.7.0", "6.0"], + ["match_end", "date", "sqlite", "2.6.5", "4.2"], + ["match_end", "date", "sqlite", "2.6.5", "5.2"], + ["match_end", "date", "sqlite", "2.6.5", "6.0"], + ["match_end", "date", "sqlite", "2.5.7", "4.2"], + ["match_end", "date", "sqlite", "2.5.7", "5.2"], + ["match_end", "date", "sqlite", "2.5.7", "6.0"], + ["match_end", "date", "sqlite", "2.4.9", "4.2"], + ["match_end", "date", "sqlite", "2.4.9", "5.2"], + ["match_end", "date", "sqlite", "2.4.9", "6.0"], + ["match_end", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_end", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_end", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_end", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_end", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_end", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_end", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_end", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_end", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_end", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_end", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_end", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_end", "datetime", "mysql", "2.7.0", "4.2"], + ["match_end", "datetime", "mysql", "2.7.0", "5.2"], + ["match_end", "datetime", "mysql", "2.7.0", "6.0"], + ["match_end", "datetime", "mysql", "2.6.5", "4.2"], + ["match_end", "datetime", "mysql", "2.6.5", "5.2"], + ["match_end", "datetime", "mysql", "2.6.5", "6.0"], + ["match_end", "datetime", "mysql", "2.5.7", "4.2"], + ["match_end", "datetime", "mysql", "2.5.7", "5.2"], + ["match_end", "datetime", "mysql", "2.5.7", "6.0"], + ["match_end", "datetime", "mysql", "2.4.9", "4.2"], + ["match_end", "datetime", "mysql", "2.4.9", "5.2"], + ["match_end", "datetime", "mysql", "2.4.9", "6.0"], + ["match_end", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_end", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_end", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_end", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_end", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_end", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_end", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_end", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_end", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_end", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_end", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_end", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_end", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_end", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_end", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_end", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_end", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_end", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_end", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_end", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_end", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_end", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_end", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_end", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_end", "decimal", "mysql", "2.7.0", "4.2"], + ["match_end", "decimal", "mysql", "2.7.0", "5.2"], + ["match_end", "decimal", "mysql", "2.7.0", "6.0"], + ["match_end", "decimal", "mysql", "2.6.5", "4.2"], + ["match_end", "decimal", "mysql", "2.6.5", "5.2"], + ["match_end", "decimal", "mysql", "2.6.5", "6.0"], + ["match_end", "decimal", "mysql", "2.5.7", "4.2"], + ["match_end", "decimal", "mysql", "2.5.7", "5.2"], + ["match_end", "decimal", "mysql", "2.5.7", "6.0"], + ["match_end", "decimal", "mysql", "2.4.9", "4.2"], + ["match_end", "decimal", "mysql", "2.4.9", "5.2"], + ["match_end", "decimal", "mysql", "2.4.9", "6.0"], + ["match_end", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_end", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_end", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_end", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_end", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_end", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_end", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_end", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_end", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_end", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_end", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_end", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_end", "float", "postgresql", "2.7.0", "4.2"], + ["match_end", "float", "postgresql", "2.7.0", "5.2"], + ["match_end", "float", "postgresql", "2.7.0", "6.0"], + ["match_end", "float", "postgresql", "2.6.5", "4.2"], + ["match_end", "float", "postgresql", "2.6.5", "5.2"], + ["match_end", "float", "postgresql", "2.6.5", "6.0"], + ["match_end", "float", "postgresql", "2.5.7", "4.2"], + ["match_end", "float", "postgresql", "2.5.7", "5.2"], + ["match_end", "float", "postgresql", "2.5.7", "6.0"], + ["match_end", "float", "postgresql", "2.4.9", "4.2"], + ["match_end", "float", "postgresql", "2.4.9", "5.2"], + ["match_end", "float", "postgresql", "2.4.9", "6.0"], + ["match_end", "float", "mysql", "2.7.0", "4.2"], + ["match_end", "float", "mysql", "2.7.0", "5.2"], + ["match_end", "float", "mysql", "2.7.0", "6.0"], + ["match_end", "float", "mysql", "2.6.5", "4.2"], + ["match_end", "float", "mysql", "2.6.5", "5.2"], + ["match_end", "float", "mysql", "2.6.5", "6.0"], + ["match_end", "float", "mysql", "2.5.7", "4.2"], + ["match_end", "float", "mysql", "2.5.7", "5.2"], + ["match_end", "float", "mysql", "2.5.7", "6.0"], + ["match_end", "float", "mysql", "2.4.9", "4.2"], + ["match_end", "float", "mysql", "2.4.9", "5.2"], + ["match_end", "float", "mysql", "2.4.9", "6.0"], + ["match_end", "float", "sqlite", "2.7.0", "4.2"], + ["match_end", "float", "sqlite", "2.7.0", "5.2"], + ["match_end", "float", "sqlite", "2.7.0", "6.0"], + ["match_end", "float", "sqlite", "2.6.5", "4.2"], + ["match_end", "float", "sqlite", "2.6.5", "5.2"], + ["match_end", "float", "sqlite", "2.6.5", "6.0"], + ["match_end", "float", "sqlite", "2.5.7", "4.2"], + ["match_end", "float", "sqlite", "2.5.7", "5.2"], + ["match_end", "float", "sqlite", "2.5.7", "6.0"], + ["match_end", "float", "sqlite", "2.4.9", "4.2"], + ["match_end", "float", "sqlite", "2.4.9", "5.2"], + ["match_end", "float", "sqlite", "2.4.9", "6.0"], + ["match_end", "integer", "postgresql", "2.7.0", "4.2"], + ["match_end", "integer", "postgresql", "2.7.0", "5.2"], + ["match_end", "integer", "postgresql", "2.7.0", "6.0"], + ["match_end", "integer", "postgresql", "2.6.5", "4.2"], + ["match_end", "integer", "postgresql", "2.6.5", "5.2"], + ["match_end", "integer", "postgresql", "2.6.5", "6.0"], + ["match_end", "integer", "postgresql", "2.5.7", "4.2"], + ["match_end", "integer", "postgresql", "2.5.7", "5.2"], + ["match_end", "integer", "postgresql", "2.5.7", "6.0"], + ["match_end", "integer", "postgresql", "2.4.9", "4.2"], + ["match_end", "integer", "postgresql", "2.4.9", "5.2"], + ["match_end", "integer", "postgresql", "2.4.9", "6.0"], + ["match_end", "integer", "mysql", "2.7.0", "4.2"], + ["match_end", "integer", "mysql", "2.7.0", "5.2"], + ["match_end", "integer", "mysql", "2.7.0", "6.0"], + ["match_end", "integer", "mysql", "2.6.5", "4.2"], + ["match_end", "integer", "mysql", "2.6.5", "5.2"], + ["match_end", "integer", "mysql", "2.6.5", "6.0"], + ["match_end", "integer", "mysql", "2.5.7", "4.2"], + ["match_end", "integer", "mysql", "2.5.7", "5.2"], + ["match_end", "integer", "mysql", "2.5.7", "6.0"], + ["match_end", "integer", "mysql", "2.4.9", "4.2"], + ["match_end", "integer", "mysql", "2.4.9", "5.2"], + ["match_end", "integer", "mysql", "2.4.9", "6.0"], + ["match_end", "integer", "sqlite", "2.7.0", "4.2"], + ["match_end", "integer", "sqlite", "2.7.0", "5.2"], + ["match_end", "integer", "sqlite", "2.7.0", "6.0"], + ["match_end", "integer", "sqlite", "2.6.5", "4.2"], + ["match_end", "integer", "sqlite", "2.6.5", "5.2"], + ["match_end", "integer", "sqlite", "2.6.5", "6.0"], + ["match_end", "integer", "sqlite", "2.5.7", "4.2"], + ["match_end", "integer", "sqlite", "2.5.7", "5.2"], + ["match_end", "integer", "sqlite", "2.5.7", "6.0"], + ["match_end", "integer", "sqlite", "2.4.9", "4.2"], + ["match_end", "integer", "sqlite", "2.4.9", "5.2"], + ["match_end", "integer", "sqlite", "2.4.9", "6.0"], + ["match_end", "string", "postgresql", "2.7.0", "4.2"], + ["match_end", "string", "postgresql", "2.7.0", "5.2"], + ["match_end", "string", "postgresql", "2.7.0", "6.0"], + ["match_end", "string", "postgresql", "2.6.5", "4.2"], + ["match_end", "string", "postgresql", "2.6.5", "5.2"], + ["match_end", "string", "postgresql", "2.6.5", "6.0"], + ["match_end", "string", "postgresql", "2.5.7", "4.2"], + ["match_end", "string", "postgresql", "2.5.7", "5.2"], + ["match_end", "string", "postgresql", "2.5.7", "6.0"], + ["match_end", "string", "postgresql", "2.4.9", "4.2"], + ["match_end", "string", "postgresql", "2.4.9", "5.2"], + ["match_end", "string", "postgresql", "2.4.9", "6.0"], + ["match_end", "string", "mysql", "2.7.0", "4.2"], + ["match_end", "string", "mysql", "2.7.0", "5.2"], + ["match_end", "string", "mysql", "2.7.0", "6.0"], + ["match_end", "string", "mysql", "2.6.5", "4.2"], + ["match_end", "string", "mysql", "2.6.5", "5.2"], + ["match_end", "string", "mysql", "2.6.5", "6.0"], + ["match_end", "string", "mysql", "2.5.7", "4.2"], + ["match_end", "string", "mysql", "2.5.7", "5.2"], + ["match_end", "string", "mysql", "2.5.7", "6.0"], + ["match_end", "string", "mysql", "2.4.9", "4.2"], + ["match_end", "string", "mysql", "2.4.9", "5.2"], + ["match_end", "string", "mysql", "2.4.9", "6.0"], + ["match_end", "string", "sqlite", "2.7.0", "4.2"], + ["match_end", "string", "sqlite", "2.7.0", "5.2"], + ["match_end", "string", "sqlite", "2.7.0", "6.0"], + ["match_end", "string", "sqlite", "2.6.5", "4.2"], + ["match_end", "string", "sqlite", "2.6.5", "5.2"], + ["match_end", "string", "sqlite", "2.6.5", "6.0"], + ["match_end", "string", "sqlite", "2.5.7", "4.2"], + ["match_end", "string", "sqlite", "2.5.7", "5.2"], + ["match_end", "string", "sqlite", "2.5.7", "6.0"], + ["match_end", "string", "sqlite", "2.4.9", "4.2"], + ["match_end", "string", "sqlite", "2.4.9", "5.2"], + ["match_end", "string", "sqlite", "2.4.9", "6.0"], + ["match_end", "text", "postgresql", "2.7.0", "4.2"], + ["match_end", "text", "postgresql", "2.7.0", "5.2"], + ["match_end", "text", "postgresql", "2.7.0", "6.0"], + ["match_end", "text", "postgresql", "2.6.5", "4.2"], + ["match_end", "text", "postgresql", "2.6.5", "5.2"], + ["match_end", "text", "postgresql", "2.6.5", "6.0"], + ["match_end", "text", "postgresql", "2.5.7", "4.2"], + ["match_end", "text", "postgresql", "2.5.7", "5.2"], + ["match_end", "text", "postgresql", "2.5.7", "6.0"], + ["match_end", "text", "postgresql", "2.4.9", "4.2"], + ["match_end", "text", "postgresql", "2.4.9", "5.2"], + ["match_end", "text", "postgresql", "2.4.9", "6.0"], + ["match_end", "text", "mysql", "2.7.0", "4.2"], + ["match_end", "text", "mysql", "2.7.0", "5.2"], + ["match_end", "text", "mysql", "2.7.0", "6.0"], + ["match_end", "text", "mysql", "2.6.5", "4.2"], + ["match_end", "text", "mysql", "2.6.5", "5.2"], + ["match_end", "text", "mysql", "2.6.5", "6.0"], + ["match_end", "text", "mysql", "2.5.7", "4.2"], + ["match_end", "text", "mysql", "2.5.7", "5.2"], + ["match_end", "text", "mysql", "2.5.7", "6.0"], + ["match_end", "text", "mysql", "2.4.9", "4.2"], + ["match_end", "text", "mysql", "2.4.9", "5.2"], + ["match_end", "text", "mysql", "2.4.9", "6.0"], + ["match_end", "text", "sqlite", "2.7.0", "4.2"], + ["match_end", "text", "sqlite", "2.7.0", "5.2"], + ["match_end", "text", "sqlite", "2.7.0", "6.0"], + ["match_end", "text", "sqlite", "2.6.5", "4.2"], + ["match_end", "text", "sqlite", "2.6.5", "5.2"], + ["match_end", "text", "sqlite", "2.6.5", "6.0"], + ["match_end", "text", "sqlite", "2.5.7", "4.2"], + ["match_end", "text", "sqlite", "2.5.7", "5.2"], + ["match_end", "text", "sqlite", "2.5.7", "6.0"], + ["match_end", "text", "sqlite", "2.4.9", "4.2"], + ["match_end", "text", "sqlite", "2.4.9", "5.2"], + ["match_end", "text", "sqlite", "2.4.9", "6.0"], + ["match_end", "time", "postgresql", "2.7.0", "4.2"], + ["match_end", "time", "postgresql", "2.7.0", "5.2"], + ["match_end", "time", "postgresql", "2.7.0", "6.0"], + ["match_end", "time", "postgresql", "2.6.5", "4.2"], + ["match_end", "time", "postgresql", "2.6.5", "5.2"], + ["match_end", "time", "postgresql", "2.6.5", "6.0"], + ["match_end", "time", "postgresql", "2.5.7", "4.2"], + ["match_end", "time", "postgresql", "2.5.7", "5.2"], + ["match_end", "time", "postgresql", "2.5.7", "6.0"], + ["match_end", "time", "postgresql", "2.4.9", "4.2"], + ["match_end", "time", "postgresql", "2.4.9", "5.2"], + ["match_end", "time", "postgresql", "2.4.9", "6.0"], + ["match_end", "time", "mysql", "2.7.0", "4.2"], + ["match_end", "time", "mysql", "2.7.0", "5.2"], + ["match_end", "time", "mysql", "2.7.0", "6.0"], + ["match_end", "time", "mysql", "2.6.5", "4.2"], + ["match_end", "time", "mysql", "2.6.5", "5.2"], + ["match_end", "time", "mysql", "2.6.5", "6.0"], + ["match_end", "time", "mysql", "2.5.7", "4.2"], + ["match_end", "time", "mysql", "2.5.7", "5.2"], + ["match_end", "time", "mysql", "2.5.7", "6.0"], + ["match_end", "time", "mysql", "2.4.9", "4.2"], + ["match_end", "time", "mysql", "2.4.9", "5.2"], + ["match_end", "time", "mysql", "2.4.9", "6.0"], + ["match_end", "time", "sqlite", "2.7.0", "4.2"], + ["match_end", "time", "sqlite", "2.7.0", "5.2"], + ["match_end", "time", "sqlite", "2.7.0", "6.0"], + ["match_end", "time", "sqlite", "2.6.5", "4.2"], + ["match_end", "time", "sqlite", "2.6.5", "5.2"], + ["match_end", "time", "sqlite", "2.6.5", "6.0"], + ["match_end", "time", "sqlite", "2.5.7", "4.2"], + ["match_end", "time", "sqlite", "2.5.7", "5.2"], + ["match_end", "time", "sqlite", "2.5.7", "6.0"], + ["match_end", "time", "sqlite", "2.4.9", "4.2"], + ["match_end", "time", "sqlite", "2.4.9", "5.2"], + ["match_end", "time", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "binary", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "binary", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "binary", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "binary", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "binary", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "binary", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "binary", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "binary", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "binary", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "binary", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "binary", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "binary", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "binary", "mysql", "2.7.0", "4.2"], + ["match_end_any", "binary", "mysql", "2.7.0", "5.2"], + ["match_end_any", "binary", "mysql", "2.7.0", "6.0"], + ["match_end_any", "binary", "mysql", "2.6.5", "4.2"], + ["match_end_any", "binary", "mysql", "2.6.5", "5.2"], + ["match_end_any", "binary", "mysql", "2.6.5", "6.0"], + ["match_end_any", "binary", "mysql", "2.5.7", "4.2"], + ["match_end_any", "binary", "mysql", "2.5.7", "5.2"], + ["match_end_any", "binary", "mysql", "2.5.7", "6.0"], + ["match_end_any", "binary", "mysql", "2.4.9", "4.2"], + ["match_end_any", "binary", "mysql", "2.4.9", "5.2"], + ["match_end_any", "binary", "mysql", "2.4.9", "6.0"], + ["match_end_any", "binary", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "binary", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "binary", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "binary", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "binary", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "binary", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "binary", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "binary", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "binary", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "binary", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "binary", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "binary", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "boolean", "mysql", "2.7.0", "4.2"], + ["match_end_any", "boolean", "mysql", "2.7.0", "5.2"], + ["match_end_any", "boolean", "mysql", "2.7.0", "6.0"], + ["match_end_any", "boolean", "mysql", "2.6.5", "4.2"], + ["match_end_any", "boolean", "mysql", "2.6.5", "5.2"], + ["match_end_any", "boolean", "mysql", "2.6.5", "6.0"], + ["match_end_any", "boolean", "mysql", "2.5.7", "4.2"], + ["match_end_any", "boolean", "mysql", "2.5.7", "5.2"], + ["match_end_any", "boolean", "mysql", "2.5.7", "6.0"], + ["match_end_any", "boolean", "mysql", "2.4.9", "4.2"], + ["match_end_any", "boolean", "mysql", "2.4.9", "5.2"], + ["match_end_any", "boolean", "mysql", "2.4.9", "6.0"], + ["match_end_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "date", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "date", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "date", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "date", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "date", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "date", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "date", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "date", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "date", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "date", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "date", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "date", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "date", "mysql", "2.7.0", "4.2"], + ["match_end_any", "date", "mysql", "2.7.0", "5.2"], + ["match_end_any", "date", "mysql", "2.7.0", "6.0"], + ["match_end_any", "date", "mysql", "2.6.5", "4.2"], + ["match_end_any", "date", "mysql", "2.6.5", "5.2"], + ["match_end_any", "date", "mysql", "2.6.5", "6.0"], + ["match_end_any", "date", "mysql", "2.5.7", "4.2"], + ["match_end_any", "date", "mysql", "2.5.7", "5.2"], + ["match_end_any", "date", "mysql", "2.5.7", "6.0"], + ["match_end_any", "date", "mysql", "2.4.9", "4.2"], + ["match_end_any", "date", "mysql", "2.4.9", "5.2"], + ["match_end_any", "date", "mysql", "2.4.9", "6.0"], + ["match_end_any", "date", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "date", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "date", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "date", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "date", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "date", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "date", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "date", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "date", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "date", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "date", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "date", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "datetime", "mysql", "2.7.0", "4.2"], + ["match_end_any", "datetime", "mysql", "2.7.0", "5.2"], + ["match_end_any", "datetime", "mysql", "2.7.0", "6.0"], + ["match_end_any", "datetime", "mysql", "2.6.5", "4.2"], + ["match_end_any", "datetime", "mysql", "2.6.5", "5.2"], + ["match_end_any", "datetime", "mysql", "2.6.5", "6.0"], + ["match_end_any", "datetime", "mysql", "2.5.7", "4.2"], + ["match_end_any", "datetime", "mysql", "2.5.7", "5.2"], + ["match_end_any", "datetime", "mysql", "2.5.7", "6.0"], + ["match_end_any", "datetime", "mysql", "2.4.9", "4.2"], + ["match_end_any", "datetime", "mysql", "2.4.9", "5.2"], + ["match_end_any", "datetime", "mysql", "2.4.9", "6.0"], + ["match_end_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "decimal", "mysql", "2.7.0", "4.2"], + ["match_end_any", "decimal", "mysql", "2.7.0", "5.2"], + ["match_end_any", "decimal", "mysql", "2.7.0", "6.0"], + ["match_end_any", "decimal", "mysql", "2.6.5", "4.2"], + ["match_end_any", "decimal", "mysql", "2.6.5", "5.2"], + ["match_end_any", "decimal", "mysql", "2.6.5", "6.0"], + ["match_end_any", "decimal", "mysql", "2.5.7", "4.2"], + ["match_end_any", "decimal", "mysql", "2.5.7", "5.2"], + ["match_end_any", "decimal", "mysql", "2.5.7", "6.0"], + ["match_end_any", "decimal", "mysql", "2.4.9", "4.2"], + ["match_end_any", "decimal", "mysql", "2.4.9", "5.2"], + ["match_end_any", "decimal", "mysql", "2.4.9", "6.0"], + ["match_end_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "float", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "float", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "float", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "float", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "float", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "float", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "float", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "float", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "float", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "float", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "float", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "float", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "float", "mysql", "2.7.0", "4.2"], + ["match_end_any", "float", "mysql", "2.7.0", "5.2"], + ["match_end_any", "float", "mysql", "2.7.0", "6.0"], + ["match_end_any", "float", "mysql", "2.6.5", "4.2"], + ["match_end_any", "float", "mysql", "2.6.5", "5.2"], + ["match_end_any", "float", "mysql", "2.6.5", "6.0"], + ["match_end_any", "float", "mysql", "2.5.7", "4.2"], + ["match_end_any", "float", "mysql", "2.5.7", "5.2"], + ["match_end_any", "float", "mysql", "2.5.7", "6.0"], + ["match_end_any", "float", "mysql", "2.4.9", "4.2"], + ["match_end_any", "float", "mysql", "2.4.9", "5.2"], + ["match_end_any", "float", "mysql", "2.4.9", "6.0"], + ["match_end_any", "float", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "float", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "float", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "float", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "float", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "float", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "float", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "float", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "float", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "float", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "float", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "float", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "integer", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "integer", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "integer", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "integer", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "integer", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "integer", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "integer", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "integer", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "integer", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "integer", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "integer", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "integer", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "integer", "mysql", "2.7.0", "4.2"], + ["match_end_any", "integer", "mysql", "2.7.0", "5.2"], + ["match_end_any", "integer", "mysql", "2.7.0", "6.0"], + ["match_end_any", "integer", "mysql", "2.6.5", "4.2"], + ["match_end_any", "integer", "mysql", "2.6.5", "5.2"], + ["match_end_any", "integer", "mysql", "2.6.5", "6.0"], + ["match_end_any", "integer", "mysql", "2.5.7", "4.2"], + ["match_end_any", "integer", "mysql", "2.5.7", "5.2"], + ["match_end_any", "integer", "mysql", "2.5.7", "6.0"], + ["match_end_any", "integer", "mysql", "2.4.9", "4.2"], + ["match_end_any", "integer", "mysql", "2.4.9", "5.2"], + ["match_end_any", "integer", "mysql", "2.4.9", "6.0"], + ["match_end_any", "integer", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "integer", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "integer", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "integer", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "integer", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "integer", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "integer", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "integer", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "integer", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "integer", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "integer", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "integer", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "string", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "string", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "string", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "string", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "string", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "string", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "string", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "string", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "string", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "string", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "string", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "string", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "string", "mysql", "2.7.0", "4.2"], + ["match_end_any", "string", "mysql", "2.7.0", "5.2"], + ["match_end_any", "string", "mysql", "2.7.0", "6.0"], + ["match_end_any", "string", "mysql", "2.6.5", "4.2"], + ["match_end_any", "string", "mysql", "2.6.5", "5.2"], + ["match_end_any", "string", "mysql", "2.6.5", "6.0"], + ["match_end_any", "string", "mysql", "2.5.7", "4.2"], + ["match_end_any", "string", "mysql", "2.5.7", "5.2"], + ["match_end_any", "string", "mysql", "2.5.7", "6.0"], + ["match_end_any", "string", "mysql", "2.4.9", "4.2"], + ["match_end_any", "string", "mysql", "2.4.9", "5.2"], + ["match_end_any", "string", "mysql", "2.4.9", "6.0"], + ["match_end_any", "string", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "string", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "string", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "string", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "string", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "string", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "string", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "string", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "string", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "string", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "string", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "string", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "text", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "text", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "text", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "text", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "text", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "text", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "text", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "text", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "text", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "text", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "text", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "text", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "text", "mysql", "2.7.0", "4.2"], + ["match_end_any", "text", "mysql", "2.7.0", "5.2"], + ["match_end_any", "text", "mysql", "2.7.0", "6.0"], + ["match_end_any", "text", "mysql", "2.6.5", "4.2"], + ["match_end_any", "text", "mysql", "2.6.5", "5.2"], + ["match_end_any", "text", "mysql", "2.6.5", "6.0"], + ["match_end_any", "text", "mysql", "2.5.7", "4.2"], + ["match_end_any", "text", "mysql", "2.5.7", "5.2"], + ["match_end_any", "text", "mysql", "2.5.7", "6.0"], + ["match_end_any", "text", "mysql", "2.4.9", "4.2"], + ["match_end_any", "text", "mysql", "2.4.9", "5.2"], + ["match_end_any", "text", "mysql", "2.4.9", "6.0"], + ["match_end_any", "text", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "text", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "text", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "text", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "text", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "text", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "text", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "text", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "text", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "text", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "text", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "text", "sqlite", "2.4.9", "6.0"], + ["match_end_any", "time", "postgresql", "2.7.0", "4.2"], + ["match_end_any", "time", "postgresql", "2.7.0", "5.2"], + ["match_end_any", "time", "postgresql", "2.7.0", "6.0"], + ["match_end_any", "time", "postgresql", "2.6.5", "4.2"], + ["match_end_any", "time", "postgresql", "2.6.5", "5.2"], + ["match_end_any", "time", "postgresql", "2.6.5", "6.0"], + ["match_end_any", "time", "postgresql", "2.5.7", "4.2"], + ["match_end_any", "time", "postgresql", "2.5.7", "5.2"], + ["match_end_any", "time", "postgresql", "2.5.7", "6.0"], + ["match_end_any", "time", "postgresql", "2.4.9", "4.2"], + ["match_end_any", "time", "postgresql", "2.4.9", "5.2"], + ["match_end_any", "time", "postgresql", "2.4.9", "6.0"], + ["match_end_any", "time", "mysql", "2.7.0", "4.2"], + ["match_end_any", "time", "mysql", "2.7.0", "5.2"], + ["match_end_any", "time", "mysql", "2.7.0", "6.0"], + ["match_end_any", "time", "mysql", "2.6.5", "4.2"], + ["match_end_any", "time", "mysql", "2.6.5", "5.2"], + ["match_end_any", "time", "mysql", "2.6.5", "6.0"], + ["match_end_any", "time", "mysql", "2.5.7", "4.2"], + ["match_end_any", "time", "mysql", "2.5.7", "5.2"], + ["match_end_any", "time", "mysql", "2.5.7", "6.0"], + ["match_end_any", "time", "mysql", "2.4.9", "4.2"], + ["match_end_any", "time", "mysql", "2.4.9", "5.2"], + ["match_end_any", "time", "mysql", "2.4.9", "6.0"], + ["match_end_any", "time", "sqlite", "2.7.0", "4.2"], + ["match_end_any", "time", "sqlite", "2.7.0", "5.2"], + ["match_end_any", "time", "sqlite", "2.7.0", "6.0"], + ["match_end_any", "time", "sqlite", "2.6.5", "4.2"], + ["match_end_any", "time", "sqlite", "2.6.5", "5.2"], + ["match_end_any", "time", "sqlite", "2.6.5", "6.0"], + ["match_end_any", "time", "sqlite", "2.5.7", "4.2"], + ["match_end_any", "time", "sqlite", "2.5.7", "5.2"], + ["match_end_any", "time", "sqlite", "2.5.7", "6.0"], + ["match_end_any", "time", "sqlite", "2.4.9", "4.2"], + ["match_end_any", "time", "sqlite", "2.4.9", "5.2"], + ["match_end_any", "time", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "binary", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "binary", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "binary", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "binary", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "binary", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "binary", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "binary", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "binary", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "binary", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "binary", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "binary", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "binary", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "binary", "mysql", "2.7.0", "4.2"], + ["match_end_all", "binary", "mysql", "2.7.0", "5.2"], + ["match_end_all", "binary", "mysql", "2.7.0", "6.0"], + ["match_end_all", "binary", "mysql", "2.6.5", "4.2"], + ["match_end_all", "binary", "mysql", "2.6.5", "5.2"], + ["match_end_all", "binary", "mysql", "2.6.5", "6.0"], + ["match_end_all", "binary", "mysql", "2.5.7", "4.2"], + ["match_end_all", "binary", "mysql", "2.5.7", "5.2"], + ["match_end_all", "binary", "mysql", "2.5.7", "6.0"], + ["match_end_all", "binary", "mysql", "2.4.9", "4.2"], + ["match_end_all", "binary", "mysql", "2.4.9", "5.2"], + ["match_end_all", "binary", "mysql", "2.4.9", "6.0"], + ["match_end_all", "binary", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "binary", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "binary", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "binary", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "binary", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "binary", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "binary", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "binary", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "binary", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "binary", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "binary", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "binary", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "boolean", "mysql", "2.7.0", "4.2"], + ["match_end_all", "boolean", "mysql", "2.7.0", "5.2"], + ["match_end_all", "boolean", "mysql", "2.7.0", "6.0"], + ["match_end_all", "boolean", "mysql", "2.6.5", "4.2"], + ["match_end_all", "boolean", "mysql", "2.6.5", "5.2"], + ["match_end_all", "boolean", "mysql", "2.6.5", "6.0"], + ["match_end_all", "boolean", "mysql", "2.5.7", "4.2"], + ["match_end_all", "boolean", "mysql", "2.5.7", "5.2"], + ["match_end_all", "boolean", "mysql", "2.5.7", "6.0"], + ["match_end_all", "boolean", "mysql", "2.4.9", "4.2"], + ["match_end_all", "boolean", "mysql", "2.4.9", "5.2"], + ["match_end_all", "boolean", "mysql", "2.4.9", "6.0"], + ["match_end_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "date", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "date", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "date", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "date", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "date", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "date", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "date", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "date", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "date", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "date", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "date", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "date", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "date", "mysql", "2.7.0", "4.2"], + ["match_end_all", "date", "mysql", "2.7.0", "5.2"], + ["match_end_all", "date", "mysql", "2.7.0", "6.0"], + ["match_end_all", "date", "mysql", "2.6.5", "4.2"], + ["match_end_all", "date", "mysql", "2.6.5", "5.2"], + ["match_end_all", "date", "mysql", "2.6.5", "6.0"], + ["match_end_all", "date", "mysql", "2.5.7", "4.2"], + ["match_end_all", "date", "mysql", "2.5.7", "5.2"], + ["match_end_all", "date", "mysql", "2.5.7", "6.0"], + ["match_end_all", "date", "mysql", "2.4.9", "4.2"], + ["match_end_all", "date", "mysql", "2.4.9", "5.2"], + ["match_end_all", "date", "mysql", "2.4.9", "6.0"], + ["match_end_all", "date", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "date", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "date", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "date", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "date", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "date", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "date", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "date", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "date", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "date", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "date", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "date", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "datetime", "mysql", "2.7.0", "4.2"], + ["match_end_all", "datetime", "mysql", "2.7.0", "5.2"], + ["match_end_all", "datetime", "mysql", "2.7.0", "6.0"], + ["match_end_all", "datetime", "mysql", "2.6.5", "4.2"], + ["match_end_all", "datetime", "mysql", "2.6.5", "5.2"], + ["match_end_all", "datetime", "mysql", "2.6.5", "6.0"], + ["match_end_all", "datetime", "mysql", "2.5.7", "4.2"], + ["match_end_all", "datetime", "mysql", "2.5.7", "5.2"], + ["match_end_all", "datetime", "mysql", "2.5.7", "6.0"], + ["match_end_all", "datetime", "mysql", "2.4.9", "4.2"], + ["match_end_all", "datetime", "mysql", "2.4.9", "5.2"], + ["match_end_all", "datetime", "mysql", "2.4.9", "6.0"], + ["match_end_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "decimal", "mysql", "2.7.0", "4.2"], + ["match_end_all", "decimal", "mysql", "2.7.0", "5.2"], + ["match_end_all", "decimal", "mysql", "2.7.0", "6.0"], + ["match_end_all", "decimal", "mysql", "2.6.5", "4.2"], + ["match_end_all", "decimal", "mysql", "2.6.5", "5.2"], + ["match_end_all", "decimal", "mysql", "2.6.5", "6.0"], + ["match_end_all", "decimal", "mysql", "2.5.7", "4.2"], + ["match_end_all", "decimal", "mysql", "2.5.7", "5.2"], + ["match_end_all", "decimal", "mysql", "2.5.7", "6.0"], + ["match_end_all", "decimal", "mysql", "2.4.9", "4.2"], + ["match_end_all", "decimal", "mysql", "2.4.9", "5.2"], + ["match_end_all", "decimal", "mysql", "2.4.9", "6.0"], + ["match_end_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "float", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "float", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "float", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "float", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "float", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "float", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "float", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "float", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "float", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "float", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "float", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "float", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "float", "mysql", "2.7.0", "4.2"], + ["match_end_all", "float", "mysql", "2.7.0", "5.2"], + ["match_end_all", "float", "mysql", "2.7.0", "6.0"], + ["match_end_all", "float", "mysql", "2.6.5", "4.2"], + ["match_end_all", "float", "mysql", "2.6.5", "5.2"], + ["match_end_all", "float", "mysql", "2.6.5", "6.0"], + ["match_end_all", "float", "mysql", "2.5.7", "4.2"], + ["match_end_all", "float", "mysql", "2.5.7", "5.2"], + ["match_end_all", "float", "mysql", "2.5.7", "6.0"], + ["match_end_all", "float", "mysql", "2.4.9", "4.2"], + ["match_end_all", "float", "mysql", "2.4.9", "5.2"], + ["match_end_all", "float", "mysql", "2.4.9", "6.0"], + ["match_end_all", "float", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "float", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "float", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "float", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "float", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "float", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "float", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "float", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "float", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "float", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "float", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "float", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "integer", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "integer", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "integer", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "integer", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "integer", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "integer", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "integer", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "integer", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "integer", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "integer", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "integer", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "integer", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "integer", "mysql", "2.7.0", "4.2"], + ["match_end_all", "integer", "mysql", "2.7.0", "5.2"], + ["match_end_all", "integer", "mysql", "2.7.0", "6.0"], + ["match_end_all", "integer", "mysql", "2.6.5", "4.2"], + ["match_end_all", "integer", "mysql", "2.6.5", "5.2"], + ["match_end_all", "integer", "mysql", "2.6.5", "6.0"], + ["match_end_all", "integer", "mysql", "2.5.7", "4.2"], + ["match_end_all", "integer", "mysql", "2.5.7", "5.2"], + ["match_end_all", "integer", "mysql", "2.5.7", "6.0"], + ["match_end_all", "integer", "mysql", "2.4.9", "4.2"], + ["match_end_all", "integer", "mysql", "2.4.9", "5.2"], + ["match_end_all", "integer", "mysql", "2.4.9", "6.0"], + ["match_end_all", "integer", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "integer", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "integer", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "integer", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "integer", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "integer", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "integer", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "integer", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "integer", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "integer", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "integer", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "integer", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "string", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "string", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "string", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "string", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "string", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "string", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "string", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "string", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "string", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "string", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "string", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "string", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "string", "mysql", "2.7.0", "4.2"], + ["match_end_all", "string", "mysql", "2.7.0", "5.2"], + ["match_end_all", "string", "mysql", "2.7.0", "6.0"], + ["match_end_all", "string", "mysql", "2.6.5", "4.2"], + ["match_end_all", "string", "mysql", "2.6.5", "5.2"], + ["match_end_all", "string", "mysql", "2.6.5", "6.0"], + ["match_end_all", "string", "mysql", "2.5.7", "4.2"], + ["match_end_all", "string", "mysql", "2.5.7", "5.2"], + ["match_end_all", "string", "mysql", "2.5.7", "6.0"], + ["match_end_all", "string", "mysql", "2.4.9", "4.2"], + ["match_end_all", "string", "mysql", "2.4.9", "5.2"], + ["match_end_all", "string", "mysql", "2.4.9", "6.0"], + ["match_end_all", "string", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "string", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "string", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "string", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "string", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "string", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "string", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "string", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "string", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "string", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "string", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "string", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "text", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "text", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "text", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "text", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "text", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "text", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "text", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "text", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "text", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "text", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "text", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "text", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "text", "mysql", "2.7.0", "4.2"], + ["match_end_all", "text", "mysql", "2.7.0", "5.2"], + ["match_end_all", "text", "mysql", "2.7.0", "6.0"], + ["match_end_all", "text", "mysql", "2.6.5", "4.2"], + ["match_end_all", "text", "mysql", "2.6.5", "5.2"], + ["match_end_all", "text", "mysql", "2.6.5", "6.0"], + ["match_end_all", "text", "mysql", "2.5.7", "4.2"], + ["match_end_all", "text", "mysql", "2.5.7", "5.2"], + ["match_end_all", "text", "mysql", "2.5.7", "6.0"], + ["match_end_all", "text", "mysql", "2.4.9", "4.2"], + ["match_end_all", "text", "mysql", "2.4.9", "5.2"], + ["match_end_all", "text", "mysql", "2.4.9", "6.0"], + ["match_end_all", "text", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "text", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "text", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "text", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "text", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "text", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "text", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "text", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "text", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "text", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "text", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "text", "sqlite", "2.4.9", "6.0"], + ["match_end_all", "time", "postgresql", "2.7.0", "4.2"], + ["match_end_all", "time", "postgresql", "2.7.0", "5.2"], + ["match_end_all", "time", "postgresql", "2.7.0", "6.0"], + ["match_end_all", "time", "postgresql", "2.6.5", "4.2"], + ["match_end_all", "time", "postgresql", "2.6.5", "5.2"], + ["match_end_all", "time", "postgresql", "2.6.5", "6.0"], + ["match_end_all", "time", "postgresql", "2.5.7", "4.2"], + ["match_end_all", "time", "postgresql", "2.5.7", "5.2"], + ["match_end_all", "time", "postgresql", "2.5.7", "6.0"], + ["match_end_all", "time", "postgresql", "2.4.9", "4.2"], + ["match_end_all", "time", "postgresql", "2.4.9", "5.2"], + ["match_end_all", "time", "postgresql", "2.4.9", "6.0"], + ["match_end_all", "time", "mysql", "2.7.0", "4.2"], + ["match_end_all", "time", "mysql", "2.7.0", "5.2"], + ["match_end_all", "time", "mysql", "2.7.0", "6.0"], + ["match_end_all", "time", "mysql", "2.6.5", "4.2"], + ["match_end_all", "time", "mysql", "2.6.5", "5.2"], + ["match_end_all", "time", "mysql", "2.6.5", "6.0"], + ["match_end_all", "time", "mysql", "2.5.7", "4.2"], + ["match_end_all", "time", "mysql", "2.5.7", "5.2"], + ["match_end_all", "time", "mysql", "2.5.7", "6.0"], + ["match_end_all", "time", "mysql", "2.4.9", "4.2"], + ["match_end_all", "time", "mysql", "2.4.9", "5.2"], + ["match_end_all", "time", "mysql", "2.4.9", "6.0"], + ["match_end_all", "time", "sqlite", "2.7.0", "4.2"], + ["match_end_all", "time", "sqlite", "2.7.0", "5.2"], + ["match_end_all", "time", "sqlite", "2.7.0", "6.0"], + ["match_end_all", "time", "sqlite", "2.6.5", "4.2"], + ["match_end_all", "time", "sqlite", "2.6.5", "5.2"], + ["match_end_all", "time", "sqlite", "2.6.5", "6.0"], + ["match_end_all", "time", "sqlite", "2.5.7", "4.2"], + ["match_end_all", "time", "sqlite", "2.5.7", "5.2"], + ["match_end_all", "time", "sqlite", "2.5.7", "6.0"], + ["match_end_all", "time", "sqlite", "2.4.9", "4.2"], + ["match_end_all", "time", "sqlite", "2.4.9", "5.2"], + ["match_end_all", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_end", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_end", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_end", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_end", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_end", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_end", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_end", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_end", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_end", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_end", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_end", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_end", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_end", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_end", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_end", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_end", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_end", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_end", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_end", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_end", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_end", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_end", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_end", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_end", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "date", "mysql", "2.7.0", "4.2"], + ["match_not_end", "date", "mysql", "2.7.0", "5.2"], + ["match_not_end", "date", "mysql", "2.7.0", "6.0"], + ["match_not_end", "date", "mysql", "2.6.5", "4.2"], + ["match_not_end", "date", "mysql", "2.6.5", "5.2"], + ["match_not_end", "date", "mysql", "2.6.5", "6.0"], + ["match_not_end", "date", "mysql", "2.5.7", "4.2"], + ["match_not_end", "date", "mysql", "2.5.7", "5.2"], + ["match_not_end", "date", "mysql", "2.5.7", "6.0"], + ["match_not_end", "date", "mysql", "2.4.9", "4.2"], + ["match_not_end", "date", "mysql", "2.4.9", "5.2"], + ["match_not_end", "date", "mysql", "2.4.9", "6.0"], + ["match_not_end", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_end", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_end", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_end", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_end", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_end", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_end", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_end", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_end", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_end", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_end", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_end", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_end", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_end", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_end", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_end", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_end", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_end", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_end", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_end", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_end", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_end", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_end", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_end", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_end", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "float", "mysql", "2.7.0", "4.2"], + ["match_not_end", "float", "mysql", "2.7.0", "5.2"], + ["match_not_end", "float", "mysql", "2.7.0", "6.0"], + ["match_not_end", "float", "mysql", "2.6.5", "4.2"], + ["match_not_end", "float", "mysql", "2.6.5", "5.2"], + ["match_not_end", "float", "mysql", "2.6.5", "6.0"], + ["match_not_end", "float", "mysql", "2.5.7", "4.2"], + ["match_not_end", "float", "mysql", "2.5.7", "5.2"], + ["match_not_end", "float", "mysql", "2.5.7", "6.0"], + ["match_not_end", "float", "mysql", "2.4.9", "4.2"], + ["match_not_end", "float", "mysql", "2.4.9", "5.2"], + ["match_not_end", "float", "mysql", "2.4.9", "6.0"], + ["match_not_end", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_end", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_end", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_end", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_end", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_end", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_end", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_end", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_end", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_end", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_end", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_end", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_end", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "string", "mysql", "2.7.0", "4.2"], + ["match_not_end", "string", "mysql", "2.7.0", "5.2"], + ["match_not_end", "string", "mysql", "2.7.0", "6.0"], + ["match_not_end", "string", "mysql", "2.6.5", "4.2"], + ["match_not_end", "string", "mysql", "2.6.5", "5.2"], + ["match_not_end", "string", "mysql", "2.6.5", "6.0"], + ["match_not_end", "string", "mysql", "2.5.7", "4.2"], + ["match_not_end", "string", "mysql", "2.5.7", "5.2"], + ["match_not_end", "string", "mysql", "2.5.7", "6.0"], + ["match_not_end", "string", "mysql", "2.4.9", "4.2"], + ["match_not_end", "string", "mysql", "2.4.9", "5.2"], + ["match_not_end", "string", "mysql", "2.4.9", "6.0"], + ["match_not_end", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "text", "mysql", "2.7.0", "4.2"], + ["match_not_end", "text", "mysql", "2.7.0", "5.2"], + ["match_not_end", "text", "mysql", "2.7.0", "6.0"], + ["match_not_end", "text", "mysql", "2.6.5", "4.2"], + ["match_not_end", "text", "mysql", "2.6.5", "5.2"], + ["match_not_end", "text", "mysql", "2.6.5", "6.0"], + ["match_not_end", "text", "mysql", "2.5.7", "4.2"], + ["match_not_end", "text", "mysql", "2.5.7", "5.2"], + ["match_not_end", "text", "mysql", "2.5.7", "6.0"], + ["match_not_end", "text", "mysql", "2.4.9", "4.2"], + ["match_not_end", "text", "mysql", "2.4.9", "5.2"], + ["match_not_end", "text", "mysql", "2.4.9", "6.0"], + ["match_not_end", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_end", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_end", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_end", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_end", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_end", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_end", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_end", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_end", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_end", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_end", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_end", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_end", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_end", "time", "mysql", "2.7.0", "4.2"], + ["match_not_end", "time", "mysql", "2.7.0", "5.2"], + ["match_not_end", "time", "mysql", "2.7.0", "6.0"], + ["match_not_end", "time", "mysql", "2.6.5", "4.2"], + ["match_not_end", "time", "mysql", "2.6.5", "5.2"], + ["match_not_end", "time", "mysql", "2.6.5", "6.0"], + ["match_not_end", "time", "mysql", "2.5.7", "4.2"], + ["match_not_end", "time", "mysql", "2.5.7", "5.2"], + ["match_not_end", "time", "mysql", "2.5.7", "6.0"], + ["match_not_end", "time", "mysql", "2.4.9", "4.2"], + ["match_not_end", "time", "mysql", "2.4.9", "5.2"], + ["match_not_end", "time", "mysql", "2.4.9", "6.0"], + ["match_not_end", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_end", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_end", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_end", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_end", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_end", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_end", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_end", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_end", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_end", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_end", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_end", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "date", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "date", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "date", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "date", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "date", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "date", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "date", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "date", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "date", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "date", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "date", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "date", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "float", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "float", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "float", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "float", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "float", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "float", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "float", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "float", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "float", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "float", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "float", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "float", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "string", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "string", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "string", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "string", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "string", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "string", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "string", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "string", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "string", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "string", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "string", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "string", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "text", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "text", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "text", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "text", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "text", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "text", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "text", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "text", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "text", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "text", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "text", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "text", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_end_any", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_end_any", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_end_any", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_end_any", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_end_any", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_end_any", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_end_any", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_end_any", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_end_any", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_end_any", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_end_any", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_end_any", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_end_any", "time", "mysql", "2.7.0", "4.2"], + ["match_not_end_any", "time", "mysql", "2.7.0", "5.2"], + ["match_not_end_any", "time", "mysql", "2.7.0", "6.0"], + ["match_not_end_any", "time", "mysql", "2.6.5", "4.2"], + ["match_not_end_any", "time", "mysql", "2.6.5", "5.2"], + ["match_not_end_any", "time", "mysql", "2.6.5", "6.0"], + ["match_not_end_any", "time", "mysql", "2.5.7", "4.2"], + ["match_not_end_any", "time", "mysql", "2.5.7", "5.2"], + ["match_not_end_any", "time", "mysql", "2.5.7", "6.0"], + ["match_not_end_any", "time", "mysql", "2.4.9", "4.2"], + ["match_not_end_any", "time", "mysql", "2.4.9", "5.2"], + ["match_not_end_any", "time", "mysql", "2.4.9", "6.0"], + ["match_not_end_any", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_end_any", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_end_any", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_end_any", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_end_any", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_end_any", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_end_any", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_end_any", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_end_any", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_end_any", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_end_any", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_end_any", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "date", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "date", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "date", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "date", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "date", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "date", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "date", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "date", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "date", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "date", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "date", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "date", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "float", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "float", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "float", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "float", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "float", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "float", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "float", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "float", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "float", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "float", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "float", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "float", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "string", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "string", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "string", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "string", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "string", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "string", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "string", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "string", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "string", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "string", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "string", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "string", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "text", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "text", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "text", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "text", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "text", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "text", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "text", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "text", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "text", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "text", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "text", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "text", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_end_all", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_end_all", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_end_all", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_end_all", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_end_all", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_end_all", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_end_all", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_end_all", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_end_all", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_end_all", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_end_all", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_end_all", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_end_all", "time", "mysql", "2.7.0", "4.2"], + ["match_not_end_all", "time", "mysql", "2.7.0", "5.2"], + ["match_not_end_all", "time", "mysql", "2.7.0", "6.0"], + ["match_not_end_all", "time", "mysql", "2.6.5", "4.2"], + ["match_not_end_all", "time", "mysql", "2.6.5", "5.2"], + ["match_not_end_all", "time", "mysql", "2.6.5", "6.0"], + ["match_not_end_all", "time", "mysql", "2.5.7", "4.2"], + ["match_not_end_all", "time", "mysql", "2.5.7", "5.2"], + ["match_not_end_all", "time", "mysql", "2.5.7", "6.0"], + ["match_not_end_all", "time", "mysql", "2.4.9", "4.2"], + ["match_not_end_all", "time", "mysql", "2.4.9", "5.2"], + ["match_not_end_all", "time", "mysql", "2.4.9", "6.0"], + ["match_not_end_all", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_end_all", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_end_all", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_end_all", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_end_all", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_end_all", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_end_all", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_end_all", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_end_all", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_end_all", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_end_all", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_end_all", "time", "sqlite", "2.4.9", "6.0"], + ["match_contain", "binary", "postgresql", "2.7.0", "4.2"], + ["match_contain", "binary", "postgresql", "2.7.0", "5.2"], + ["match_contain", "binary", "postgresql", "2.7.0", "6.0"], + ["match_contain", "binary", "postgresql", "2.6.5", "4.2"], + ["match_contain", "binary", "postgresql", "2.6.5", "5.2"], + ["match_contain", "binary", "postgresql", "2.6.5", "6.0"], + ["match_contain", "binary", "postgresql", "2.5.7", "4.2"], + ["match_contain", "binary", "postgresql", "2.5.7", "5.2"], + ["match_contain", "binary", "postgresql", "2.5.7", "6.0"], + ["match_contain", "binary", "postgresql", "2.4.9", "4.2"], + ["match_contain", "binary", "postgresql", "2.4.9", "5.2"], + ["match_contain", "binary", "postgresql", "2.4.9", "6.0"], + ["match_contain", "binary", "mysql", "2.7.0", "4.2"], + ["match_contain", "binary", "mysql", "2.7.0", "5.2"], + ["match_contain", "binary", "mysql", "2.7.0", "6.0"], + ["match_contain", "binary", "mysql", "2.6.5", "4.2"], + ["match_contain", "binary", "mysql", "2.6.5", "5.2"], + ["match_contain", "binary", "mysql", "2.6.5", "6.0"], + ["match_contain", "binary", "mysql", "2.5.7", "4.2"], + ["match_contain", "binary", "mysql", "2.5.7", "5.2"], + ["match_contain", "binary", "mysql", "2.5.7", "6.0"], + ["match_contain", "binary", "mysql", "2.4.9", "4.2"], + ["match_contain", "binary", "mysql", "2.4.9", "5.2"], + ["match_contain", "binary", "mysql", "2.4.9", "6.0"], + ["match_contain", "binary", "sqlite", "2.7.0", "4.2"], + ["match_contain", "binary", "sqlite", "2.7.0", "5.2"], + ["match_contain", "binary", "sqlite", "2.7.0", "6.0"], + ["match_contain", "binary", "sqlite", "2.6.5", "4.2"], + ["match_contain", "binary", "sqlite", "2.6.5", "5.2"], + ["match_contain", "binary", "sqlite", "2.6.5", "6.0"], + ["match_contain", "binary", "sqlite", "2.5.7", "4.2"], + ["match_contain", "binary", "sqlite", "2.5.7", "5.2"], + ["match_contain", "binary", "sqlite", "2.5.7", "6.0"], + ["match_contain", "binary", "sqlite", "2.4.9", "4.2"], + ["match_contain", "binary", "sqlite", "2.4.9", "5.2"], + ["match_contain", "binary", "sqlite", "2.4.9", "6.0"], + ["match_contain", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_contain", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_contain", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_contain", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_contain", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_contain", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_contain", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_contain", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_contain", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_contain", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_contain", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_contain", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_contain", "boolean", "mysql", "2.7.0", "4.2"], + ["match_contain", "boolean", "mysql", "2.7.0", "5.2"], + ["match_contain", "boolean", "mysql", "2.7.0", "6.0"], + ["match_contain", "boolean", "mysql", "2.6.5", "4.2"], + ["match_contain", "boolean", "mysql", "2.6.5", "5.2"], + ["match_contain", "boolean", "mysql", "2.6.5", "6.0"], + ["match_contain", "boolean", "mysql", "2.5.7", "4.2"], + ["match_contain", "boolean", "mysql", "2.5.7", "5.2"], + ["match_contain", "boolean", "mysql", "2.5.7", "6.0"], + ["match_contain", "boolean", "mysql", "2.4.9", "4.2"], + ["match_contain", "boolean", "mysql", "2.4.9", "5.2"], + ["match_contain", "boolean", "mysql", "2.4.9", "6.0"], + ["match_contain", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_contain", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_contain", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_contain", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_contain", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_contain", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_contain", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_contain", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_contain", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_contain", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_contain", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_contain", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_contain", "date", "postgresql", "2.7.0", "4.2"], + ["match_contain", "date", "postgresql", "2.7.0", "5.2"], + ["match_contain", "date", "postgresql", "2.7.0", "6.0"], + ["match_contain", "date", "postgresql", "2.6.5", "4.2"], + ["match_contain", "date", "postgresql", "2.6.5", "5.2"], + ["match_contain", "date", "postgresql", "2.6.5", "6.0"], + ["match_contain", "date", "postgresql", "2.5.7", "4.2"], + ["match_contain", "date", "postgresql", "2.5.7", "5.2"], + ["match_contain", "date", "postgresql", "2.5.7", "6.0"], + ["match_contain", "date", "postgresql", "2.4.9", "4.2"], + ["match_contain", "date", "postgresql", "2.4.9", "5.2"], + ["match_contain", "date", "postgresql", "2.4.9", "6.0"], + ["match_contain", "date", "mysql", "2.7.0", "4.2"], + ["match_contain", "date", "mysql", "2.7.0", "5.2"], + ["match_contain", "date", "mysql", "2.7.0", "6.0"], + ["match_contain", "date", "mysql", "2.6.5", "4.2"], + ["match_contain", "date", "mysql", "2.6.5", "5.2"], + ["match_contain", "date", "mysql", "2.6.5", "6.0"], + ["match_contain", "date", "mysql", "2.5.7", "4.2"], + ["match_contain", "date", "mysql", "2.5.7", "5.2"], + ["match_contain", "date", "mysql", "2.5.7", "6.0"], + ["match_contain", "date", "mysql", "2.4.9", "4.2"], + ["match_contain", "date", "mysql", "2.4.9", "5.2"], + ["match_contain", "date", "mysql", "2.4.9", "6.0"], + ["match_contain", "date", "sqlite", "2.7.0", "4.2"], + ["match_contain", "date", "sqlite", "2.7.0", "5.2"], + ["match_contain", "date", "sqlite", "2.7.0", "6.0"], + ["match_contain", "date", "sqlite", "2.6.5", "4.2"], + ["match_contain", "date", "sqlite", "2.6.5", "5.2"], + ["match_contain", "date", "sqlite", "2.6.5", "6.0"], + ["match_contain", "date", "sqlite", "2.5.7", "4.2"], + ["match_contain", "date", "sqlite", "2.5.7", "5.2"], + ["match_contain", "date", "sqlite", "2.5.7", "6.0"], + ["match_contain", "date", "sqlite", "2.4.9", "4.2"], + ["match_contain", "date", "sqlite", "2.4.9", "5.2"], + ["match_contain", "date", "sqlite", "2.4.9", "6.0"], + ["match_contain", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_contain", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_contain", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_contain", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_contain", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_contain", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_contain", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_contain", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_contain", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_contain", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_contain", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_contain", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_contain", "datetime", "mysql", "2.7.0", "4.2"], + ["match_contain", "datetime", "mysql", "2.7.0", "5.2"], + ["match_contain", "datetime", "mysql", "2.7.0", "6.0"], + ["match_contain", "datetime", "mysql", "2.6.5", "4.2"], + ["match_contain", "datetime", "mysql", "2.6.5", "5.2"], + ["match_contain", "datetime", "mysql", "2.6.5", "6.0"], + ["match_contain", "datetime", "mysql", "2.5.7", "4.2"], + ["match_contain", "datetime", "mysql", "2.5.7", "5.2"], + ["match_contain", "datetime", "mysql", "2.5.7", "6.0"], + ["match_contain", "datetime", "mysql", "2.4.9", "4.2"], + ["match_contain", "datetime", "mysql", "2.4.9", "5.2"], + ["match_contain", "datetime", "mysql", "2.4.9", "6.0"], + ["match_contain", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_contain", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_contain", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_contain", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_contain", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_contain", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_contain", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_contain", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_contain", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_contain", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_contain", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_contain", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_contain", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_contain", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_contain", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_contain", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_contain", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_contain", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_contain", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_contain", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_contain", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_contain", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_contain", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_contain", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_contain", "decimal", "mysql", "2.7.0", "4.2"], + ["match_contain", "decimal", "mysql", "2.7.0", "5.2"], + ["match_contain", "decimal", "mysql", "2.7.0", "6.0"], + ["match_contain", "decimal", "mysql", "2.6.5", "4.2"], + ["match_contain", "decimal", "mysql", "2.6.5", "5.2"], + ["match_contain", "decimal", "mysql", "2.6.5", "6.0"], + ["match_contain", "decimal", "mysql", "2.5.7", "4.2"], + ["match_contain", "decimal", "mysql", "2.5.7", "5.2"], + ["match_contain", "decimal", "mysql", "2.5.7", "6.0"], + ["match_contain", "decimal", "mysql", "2.4.9", "4.2"], + ["match_contain", "decimal", "mysql", "2.4.9", "5.2"], + ["match_contain", "decimal", "mysql", "2.4.9", "6.0"], + ["match_contain", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_contain", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_contain", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_contain", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_contain", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_contain", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_contain", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_contain", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_contain", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_contain", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_contain", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_contain", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_contain", "float", "postgresql", "2.7.0", "4.2"], + ["match_contain", "float", "postgresql", "2.7.0", "5.2"], + ["match_contain", "float", "postgresql", "2.7.0", "6.0"], + ["match_contain", "float", "postgresql", "2.6.5", "4.2"], + ["match_contain", "float", "postgresql", "2.6.5", "5.2"], + ["match_contain", "float", "postgresql", "2.6.5", "6.0"], + ["match_contain", "float", "postgresql", "2.5.7", "4.2"], + ["match_contain", "float", "postgresql", "2.5.7", "5.2"], + ["match_contain", "float", "postgresql", "2.5.7", "6.0"], + ["match_contain", "float", "postgresql", "2.4.9", "4.2"], + ["match_contain", "float", "postgresql", "2.4.9", "5.2"], + ["match_contain", "float", "postgresql", "2.4.9", "6.0"], + ["match_contain", "float", "mysql", "2.7.0", "4.2"], + ["match_contain", "float", "mysql", "2.7.0", "5.2"], + ["match_contain", "float", "mysql", "2.7.0", "6.0"], + ["match_contain", "float", "mysql", "2.6.5", "4.2"], + ["match_contain", "float", "mysql", "2.6.5", "5.2"], + ["match_contain", "float", "mysql", "2.6.5", "6.0"], + ["match_contain", "float", "mysql", "2.5.7", "4.2"], + ["match_contain", "float", "mysql", "2.5.7", "5.2"], + ["match_contain", "float", "mysql", "2.5.7", "6.0"], + ["match_contain", "float", "mysql", "2.4.9", "4.2"], + ["match_contain", "float", "mysql", "2.4.9", "5.2"], + ["match_contain", "float", "mysql", "2.4.9", "6.0"], + ["match_contain", "float", "sqlite", "2.7.0", "4.2"], + ["match_contain", "float", "sqlite", "2.7.0", "5.2"], + ["match_contain", "float", "sqlite", "2.7.0", "6.0"], + ["match_contain", "float", "sqlite", "2.6.5", "4.2"], + ["match_contain", "float", "sqlite", "2.6.5", "5.2"], + ["match_contain", "float", "sqlite", "2.6.5", "6.0"], + ["match_contain", "float", "sqlite", "2.5.7", "4.2"], + ["match_contain", "float", "sqlite", "2.5.7", "5.2"], + ["match_contain", "float", "sqlite", "2.5.7", "6.0"], + ["match_contain", "float", "sqlite", "2.4.9", "4.2"], + ["match_contain", "float", "sqlite", "2.4.9", "5.2"], + ["match_contain", "float", "sqlite", "2.4.9", "6.0"], + ["match_contain", "integer", "postgresql", "2.7.0", "4.2"], + ["match_contain", "integer", "postgresql", "2.7.0", "5.2"], + ["match_contain", "integer", "postgresql", "2.7.0", "6.0"], + ["match_contain", "integer", "postgresql", "2.6.5", "4.2"], + ["match_contain", "integer", "postgresql", "2.6.5", "5.2"], + ["match_contain", "integer", "postgresql", "2.6.5", "6.0"], + ["match_contain", "integer", "postgresql", "2.5.7", "4.2"], + ["match_contain", "integer", "postgresql", "2.5.7", "5.2"], + ["match_contain", "integer", "postgresql", "2.5.7", "6.0"], + ["match_contain", "integer", "postgresql", "2.4.9", "4.2"], + ["match_contain", "integer", "postgresql", "2.4.9", "5.2"], + ["match_contain", "integer", "postgresql", "2.4.9", "6.0"], + ["match_contain", "integer", "mysql", "2.7.0", "4.2"], + ["match_contain", "integer", "mysql", "2.7.0", "5.2"], + ["match_contain", "integer", "mysql", "2.7.0", "6.0"], + ["match_contain", "integer", "mysql", "2.6.5", "4.2"], + ["match_contain", "integer", "mysql", "2.6.5", "5.2"], + ["match_contain", "integer", "mysql", "2.6.5", "6.0"], + ["match_contain", "integer", "mysql", "2.5.7", "4.2"], + ["match_contain", "integer", "mysql", "2.5.7", "5.2"], + ["match_contain", "integer", "mysql", "2.5.7", "6.0"], + ["match_contain", "integer", "mysql", "2.4.9", "4.2"], + ["match_contain", "integer", "mysql", "2.4.9", "5.2"], + ["match_contain", "integer", "mysql", "2.4.9", "6.0"], + ["match_contain", "integer", "sqlite", "2.7.0", "4.2"], + ["match_contain", "integer", "sqlite", "2.7.0", "5.2"], + ["match_contain", "integer", "sqlite", "2.7.0", "6.0"], + ["match_contain", "integer", "sqlite", "2.6.5", "4.2"], + ["match_contain", "integer", "sqlite", "2.6.5", "5.2"], + ["match_contain", "integer", "sqlite", "2.6.5", "6.0"], + ["match_contain", "integer", "sqlite", "2.5.7", "4.2"], + ["match_contain", "integer", "sqlite", "2.5.7", "5.2"], + ["match_contain", "integer", "sqlite", "2.5.7", "6.0"], + ["match_contain", "integer", "sqlite", "2.4.9", "4.2"], + ["match_contain", "integer", "sqlite", "2.4.9", "5.2"], + ["match_contain", "integer", "sqlite", "2.4.9", "6.0"], + ["match_contain", "string", "postgresql", "2.7.0", "4.2"], + ["match_contain", "string", "postgresql", "2.7.0", "5.2"], + ["match_contain", "string", "postgresql", "2.7.0", "6.0"], + ["match_contain", "string", "postgresql", "2.6.5", "4.2"], + ["match_contain", "string", "postgresql", "2.6.5", "5.2"], + ["match_contain", "string", "postgresql", "2.6.5", "6.0"], + ["match_contain", "string", "postgresql", "2.5.7", "4.2"], + ["match_contain", "string", "postgresql", "2.5.7", "5.2"], + ["match_contain", "string", "postgresql", "2.5.7", "6.0"], + ["match_contain", "string", "postgresql", "2.4.9", "4.2"], + ["match_contain", "string", "postgresql", "2.4.9", "5.2"], + ["match_contain", "string", "postgresql", "2.4.9", "6.0"], + ["match_contain", "string", "mysql", "2.7.0", "4.2"], + ["match_contain", "string", "mysql", "2.7.0", "5.2"], + ["match_contain", "string", "mysql", "2.7.0", "6.0"], + ["match_contain", "string", "mysql", "2.6.5", "4.2"], + ["match_contain", "string", "mysql", "2.6.5", "5.2"], + ["match_contain", "string", "mysql", "2.6.5", "6.0"], + ["match_contain", "string", "mysql", "2.5.7", "4.2"], + ["match_contain", "string", "mysql", "2.5.7", "5.2"], + ["match_contain", "string", "mysql", "2.5.7", "6.0"], + ["match_contain", "string", "mysql", "2.4.9", "4.2"], + ["match_contain", "string", "mysql", "2.4.9", "5.2"], + ["match_contain", "string", "mysql", "2.4.9", "6.0"], + ["match_contain", "string", "sqlite", "2.7.0", "4.2"], + ["match_contain", "string", "sqlite", "2.7.0", "5.2"], + ["match_contain", "string", "sqlite", "2.7.0", "6.0"], + ["match_contain", "string", "sqlite", "2.6.5", "4.2"], + ["match_contain", "string", "sqlite", "2.6.5", "5.2"], + ["match_contain", "string", "sqlite", "2.6.5", "6.0"], + ["match_contain", "string", "sqlite", "2.5.7", "4.2"], + ["match_contain", "string", "sqlite", "2.5.7", "5.2"], + ["match_contain", "string", "sqlite", "2.5.7", "6.0"], + ["match_contain", "string", "sqlite", "2.4.9", "4.2"], + ["match_contain", "string", "sqlite", "2.4.9", "5.2"], + ["match_contain", "string", "sqlite", "2.4.9", "6.0"], + ["match_contain", "text", "postgresql", "2.7.0", "4.2"], + ["match_contain", "text", "postgresql", "2.7.0", "5.2"], + ["match_contain", "text", "postgresql", "2.7.0", "6.0"], + ["match_contain", "text", "postgresql", "2.6.5", "4.2"], + ["match_contain", "text", "postgresql", "2.6.5", "5.2"], + ["match_contain", "text", "postgresql", "2.6.5", "6.0"], + ["match_contain", "text", "postgresql", "2.5.7", "4.2"], + ["match_contain", "text", "postgresql", "2.5.7", "5.2"], + ["match_contain", "text", "postgresql", "2.5.7", "6.0"], + ["match_contain", "text", "postgresql", "2.4.9", "4.2"], + ["match_contain", "text", "postgresql", "2.4.9", "5.2"], + ["match_contain", "text", "postgresql", "2.4.9", "6.0"], + ["match_contain", "text", "mysql", "2.7.0", "4.2"], + ["match_contain", "text", "mysql", "2.7.0", "5.2"], + ["match_contain", "text", "mysql", "2.7.0", "6.0"], + ["match_contain", "text", "mysql", "2.6.5", "4.2"], + ["match_contain", "text", "mysql", "2.6.5", "5.2"], + ["match_contain", "text", "mysql", "2.6.5", "6.0"], + ["match_contain", "text", "mysql", "2.5.7", "4.2"], + ["match_contain", "text", "mysql", "2.5.7", "5.2"], + ["match_contain", "text", "mysql", "2.5.7", "6.0"], + ["match_contain", "text", "mysql", "2.4.9", "4.2"], + ["match_contain", "text", "mysql", "2.4.9", "5.2"], + ["match_contain", "text", "mysql", "2.4.9", "6.0"], + ["match_contain", "text", "sqlite", "2.7.0", "4.2"], + ["match_contain", "text", "sqlite", "2.7.0", "5.2"], + ["match_contain", "text", "sqlite", "2.7.0", "6.0"], + ["match_contain", "text", "sqlite", "2.6.5", "4.2"], + ["match_contain", "text", "sqlite", "2.6.5", "5.2"], + ["match_contain", "text", "sqlite", "2.6.5", "6.0"], + ["match_contain", "text", "sqlite", "2.5.7", "4.2"], + ["match_contain", "text", "sqlite", "2.5.7", "5.2"], + ["match_contain", "text", "sqlite", "2.5.7", "6.0"], + ["match_contain", "text", "sqlite", "2.4.9", "4.2"], + ["match_contain", "text", "sqlite", "2.4.9", "5.2"], + ["match_contain", "text", "sqlite", "2.4.9", "6.0"], + ["match_contain", "time", "postgresql", "2.7.0", "4.2"], + ["match_contain", "time", "postgresql", "2.7.0", "5.2"], + ["match_contain", "time", "postgresql", "2.7.0", "6.0"], + ["match_contain", "time", "postgresql", "2.6.5", "4.2"], + ["match_contain", "time", "postgresql", "2.6.5", "5.2"], + ["match_contain", "time", "postgresql", "2.6.5", "6.0"], + ["match_contain", "time", "postgresql", "2.5.7", "4.2"], + ["match_contain", "time", "postgresql", "2.5.7", "5.2"], + ["match_contain", "time", "postgresql", "2.5.7", "6.0"], + ["match_contain", "time", "postgresql", "2.4.9", "4.2"], + ["match_contain", "time", "postgresql", "2.4.9", "5.2"], + ["match_contain", "time", "postgresql", "2.4.9", "6.0"], + ["match_contain", "time", "mysql", "2.7.0", "4.2"], + ["match_contain", "time", "mysql", "2.7.0", "5.2"], + ["match_contain", "time", "mysql", "2.7.0", "6.0"], + ["match_contain", "time", "mysql", "2.6.5", "4.2"], + ["match_contain", "time", "mysql", "2.6.5", "5.2"], + ["match_contain", "time", "mysql", "2.6.5", "6.0"], + ["match_contain", "time", "mysql", "2.5.7", "4.2"], + ["match_contain", "time", "mysql", "2.5.7", "5.2"], + ["match_contain", "time", "mysql", "2.5.7", "6.0"], + ["match_contain", "time", "mysql", "2.4.9", "4.2"], + ["match_contain", "time", "mysql", "2.4.9", "5.2"], + ["match_contain", "time", "mysql", "2.4.9", "6.0"], + ["match_contain", "time", "sqlite", "2.7.0", "4.2"], + ["match_contain", "time", "sqlite", "2.7.0", "5.2"], + ["match_contain", "time", "sqlite", "2.7.0", "6.0"], + ["match_contain", "time", "sqlite", "2.6.5", "4.2"], + ["match_contain", "time", "sqlite", "2.6.5", "5.2"], + ["match_contain", "time", "sqlite", "2.6.5", "6.0"], + ["match_contain", "time", "sqlite", "2.5.7", "4.2"], + ["match_contain", "time", "sqlite", "2.5.7", "5.2"], + ["match_contain", "time", "sqlite", "2.5.7", "6.0"], + ["match_contain", "time", "sqlite", "2.4.9", "4.2"], + ["match_contain", "time", "sqlite", "2.4.9", "5.2"], + ["match_contain", "time", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "binary", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "binary", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "binary", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "binary", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "binary", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "binary", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "binary", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "binary", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "binary", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "binary", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "binary", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "binary", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "binary", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "binary", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "binary", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "binary", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "binary", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "binary", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "binary", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "binary", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "binary", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "binary", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "binary", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "binary", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "binary", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "binary", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "binary", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "binary", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "binary", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "binary", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "binary", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "binary", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "binary", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "binary", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "binary", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "binary", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "boolean", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "boolean", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "boolean", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "boolean", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "boolean", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "boolean", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "boolean", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "boolean", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "boolean", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "boolean", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "boolean", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "boolean", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "date", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "date", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "date", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "date", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "date", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "date", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "date", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "date", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "date", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "date", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "date", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "date", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "date", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "date", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "date", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "date", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "date", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "date", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "date", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "date", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "date", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "date", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "date", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "date", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "date", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "date", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "date", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "date", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "date", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "date", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "date", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "date", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "date", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "date", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "date", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "date", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "datetime", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "datetime", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "datetime", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "datetime", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "datetime", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "datetime", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "datetime", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "datetime", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "datetime", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "datetime", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "datetime", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "datetime", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "decimal", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "decimal", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "decimal", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "decimal", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "decimal", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "decimal", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "decimal", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "decimal", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "decimal", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "decimal", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "decimal", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "decimal", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "float", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "float", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "float", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "float", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "float", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "float", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "float", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "float", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "float", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "float", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "float", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "float", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "float", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "float", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "float", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "float", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "float", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "float", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "float", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "float", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "float", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "float", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "float", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "float", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "float", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "float", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "float", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "float", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "float", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "float", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "float", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "float", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "float", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "float", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "float", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "float", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "integer", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "integer", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "integer", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "integer", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "integer", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "integer", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "integer", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "integer", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "integer", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "integer", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "integer", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "integer", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "integer", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "integer", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "integer", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "integer", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "integer", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "integer", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "integer", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "integer", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "integer", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "integer", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "integer", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "integer", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "integer", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "integer", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "integer", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "integer", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "integer", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "integer", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "integer", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "integer", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "integer", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "integer", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "integer", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "integer", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "string", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "string", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "string", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "string", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "string", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "string", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "string", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "string", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "string", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "string", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "string", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "string", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "string", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "string", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "string", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "string", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "string", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "string", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "string", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "string", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "string", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "string", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "string", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "string", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "string", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "string", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "string", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "string", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "string", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "string", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "string", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "string", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "string", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "string", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "string", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "string", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "text", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "text", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "text", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "text", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "text", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "text", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "text", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "text", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "text", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "text", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "text", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "text", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "text", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "text", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "text", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "text", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "text", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "text", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "text", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "text", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "text", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "text", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "text", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "text", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "text", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "text", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "text", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "text", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "text", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "text", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "text", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "text", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "text", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "text", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "text", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "text", "sqlite", "2.4.9", "6.0"], + ["match_contain_any", "time", "postgresql", "2.7.0", "4.2"], + ["match_contain_any", "time", "postgresql", "2.7.0", "5.2"], + ["match_contain_any", "time", "postgresql", "2.7.0", "6.0"], + ["match_contain_any", "time", "postgresql", "2.6.5", "4.2"], + ["match_contain_any", "time", "postgresql", "2.6.5", "5.2"], + ["match_contain_any", "time", "postgresql", "2.6.5", "6.0"], + ["match_contain_any", "time", "postgresql", "2.5.7", "4.2"], + ["match_contain_any", "time", "postgresql", "2.5.7", "5.2"], + ["match_contain_any", "time", "postgresql", "2.5.7", "6.0"], + ["match_contain_any", "time", "postgresql", "2.4.9", "4.2"], + ["match_contain_any", "time", "postgresql", "2.4.9", "5.2"], + ["match_contain_any", "time", "postgresql", "2.4.9", "6.0"], + ["match_contain_any", "time", "mysql", "2.7.0", "4.2"], + ["match_contain_any", "time", "mysql", "2.7.0", "5.2"], + ["match_contain_any", "time", "mysql", "2.7.0", "6.0"], + ["match_contain_any", "time", "mysql", "2.6.5", "4.2"], + ["match_contain_any", "time", "mysql", "2.6.5", "5.2"], + ["match_contain_any", "time", "mysql", "2.6.5", "6.0"], + ["match_contain_any", "time", "mysql", "2.5.7", "4.2"], + ["match_contain_any", "time", "mysql", "2.5.7", "5.2"], + ["match_contain_any", "time", "mysql", "2.5.7", "6.0"], + ["match_contain_any", "time", "mysql", "2.4.9", "4.2"], + ["match_contain_any", "time", "mysql", "2.4.9", "5.2"], + ["match_contain_any", "time", "mysql", "2.4.9", "6.0"], + ["match_contain_any", "time", "sqlite", "2.7.0", "4.2"], + ["match_contain_any", "time", "sqlite", "2.7.0", "5.2"], + ["match_contain_any", "time", "sqlite", "2.7.0", "6.0"], + ["match_contain_any", "time", "sqlite", "2.6.5", "4.2"], + ["match_contain_any", "time", "sqlite", "2.6.5", "5.2"], + ["match_contain_any", "time", "sqlite", "2.6.5", "6.0"], + ["match_contain_any", "time", "sqlite", "2.5.7", "4.2"], + ["match_contain_any", "time", "sqlite", "2.5.7", "5.2"], + ["match_contain_any", "time", "sqlite", "2.5.7", "6.0"], + ["match_contain_any", "time", "sqlite", "2.4.9", "4.2"], + ["match_contain_any", "time", "sqlite", "2.4.9", "5.2"], + ["match_contain_any", "time", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "binary", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "binary", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "binary", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "binary", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "binary", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "binary", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "binary", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "binary", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "binary", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "binary", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "binary", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "binary", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "binary", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "binary", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "binary", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "binary", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "binary", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "binary", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "binary", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "binary", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "binary", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "binary", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "binary", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "binary", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "binary", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "binary", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "binary", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "binary", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "binary", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "binary", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "binary", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "binary", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "binary", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "binary", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "binary", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "binary", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "boolean", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "boolean", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "boolean", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "boolean", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "boolean", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "boolean", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "boolean", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "boolean", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "boolean", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "boolean", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "boolean", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "boolean", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "date", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "date", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "date", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "date", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "date", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "date", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "date", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "date", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "date", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "date", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "date", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "date", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "date", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "date", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "date", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "date", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "date", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "date", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "date", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "date", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "date", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "date", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "date", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "date", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "date", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "date", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "date", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "date", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "date", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "date", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "date", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "date", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "date", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "date", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "date", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "date", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "datetime", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "datetime", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "datetime", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "datetime", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "datetime", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "datetime", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "datetime", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "datetime", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "datetime", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "datetime", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "datetime", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "datetime", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "decimal", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "decimal", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "decimal", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "decimal", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "decimal", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "decimal", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "decimal", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "decimal", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "decimal", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "decimal", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "decimal", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "decimal", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "float", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "float", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "float", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "float", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "float", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "float", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "float", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "float", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "float", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "float", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "float", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "float", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "float", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "float", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "float", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "float", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "float", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "float", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "float", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "float", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "float", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "float", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "float", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "float", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "float", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "float", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "float", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "float", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "float", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "float", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "float", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "float", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "float", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "float", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "float", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "float", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "integer", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "integer", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "integer", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "integer", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "integer", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "integer", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "integer", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "integer", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "integer", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "integer", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "integer", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "integer", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "integer", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "integer", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "integer", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "integer", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "integer", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "integer", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "integer", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "integer", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "integer", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "integer", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "integer", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "integer", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "integer", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "integer", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "integer", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "integer", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "integer", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "integer", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "integer", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "integer", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "integer", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "integer", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "integer", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "integer", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "string", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "string", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "string", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "string", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "string", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "string", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "string", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "string", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "string", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "string", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "string", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "string", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "string", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "string", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "string", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "string", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "string", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "string", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "string", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "string", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "string", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "string", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "string", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "string", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "string", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "string", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "string", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "string", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "string", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "string", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "string", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "string", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "string", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "string", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "string", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "string", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "text", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "text", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "text", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "text", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "text", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "text", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "text", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "text", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "text", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "text", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "text", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "text", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "text", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "text", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "text", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "text", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "text", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "text", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "text", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "text", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "text", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "text", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "text", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "text", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "text", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "text", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "text", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "text", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "text", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "text", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "text", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "text", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "text", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "text", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "text", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "text", "sqlite", "2.4.9", "6.0"], + ["match_contain_all", "time", "postgresql", "2.7.0", "4.2"], + ["match_contain_all", "time", "postgresql", "2.7.0", "5.2"], + ["match_contain_all", "time", "postgresql", "2.7.0", "6.0"], + ["match_contain_all", "time", "postgresql", "2.6.5", "4.2"], + ["match_contain_all", "time", "postgresql", "2.6.5", "5.2"], + ["match_contain_all", "time", "postgresql", "2.6.5", "6.0"], + ["match_contain_all", "time", "postgresql", "2.5.7", "4.2"], + ["match_contain_all", "time", "postgresql", "2.5.7", "5.2"], + ["match_contain_all", "time", "postgresql", "2.5.7", "6.0"], + ["match_contain_all", "time", "postgresql", "2.4.9", "4.2"], + ["match_contain_all", "time", "postgresql", "2.4.9", "5.2"], + ["match_contain_all", "time", "postgresql", "2.4.9", "6.0"], + ["match_contain_all", "time", "mysql", "2.7.0", "4.2"], + ["match_contain_all", "time", "mysql", "2.7.0", "5.2"], + ["match_contain_all", "time", "mysql", "2.7.0", "6.0"], + ["match_contain_all", "time", "mysql", "2.6.5", "4.2"], + ["match_contain_all", "time", "mysql", "2.6.5", "5.2"], + ["match_contain_all", "time", "mysql", "2.6.5", "6.0"], + ["match_contain_all", "time", "mysql", "2.5.7", "4.2"], + ["match_contain_all", "time", "mysql", "2.5.7", "5.2"], + ["match_contain_all", "time", "mysql", "2.5.7", "6.0"], + ["match_contain_all", "time", "mysql", "2.4.9", "4.2"], + ["match_contain_all", "time", "mysql", "2.4.9", "5.2"], + ["match_contain_all", "time", "mysql", "2.4.9", "6.0"], + ["match_contain_all", "time", "sqlite", "2.7.0", "4.2"], + ["match_contain_all", "time", "sqlite", "2.7.0", "5.2"], + ["match_contain_all", "time", "sqlite", "2.7.0", "6.0"], + ["match_contain_all", "time", "sqlite", "2.6.5", "4.2"], + ["match_contain_all", "time", "sqlite", "2.6.5", "5.2"], + ["match_contain_all", "time", "sqlite", "2.6.5", "6.0"], + ["match_contain_all", "time", "sqlite", "2.5.7", "4.2"], + ["match_contain_all", "time", "sqlite", "2.5.7", "5.2"], + ["match_contain_all", "time", "sqlite", "2.5.7", "6.0"], + ["match_contain_all", "time", "sqlite", "2.4.9", "4.2"], + ["match_contain_all", "time", "sqlite", "2.4.9", "5.2"], + ["match_contain_all", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "date", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "date", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "date", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "date", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "date", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "date", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "date", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "date", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "date", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "date", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "date", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "date", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "float", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "float", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "float", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "float", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "float", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "float", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "float", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "float", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "float", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "float", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "float", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "float", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "string", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "string", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "string", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "string", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "string", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "string", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "string", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "string", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "string", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "string", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "string", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "string", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "text", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "text", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "text", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "text", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "text", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "text", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "text", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "text", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "text", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "text", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "text", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "text", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_contain", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_contain", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_contain", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_contain", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_contain", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_contain", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_contain", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_contain", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_contain", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_contain", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_contain", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_contain", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_contain", "time", "mysql", "2.7.0", "4.2"], + ["match_not_contain", "time", "mysql", "2.7.0", "5.2"], + ["match_not_contain", "time", "mysql", "2.7.0", "6.0"], + ["match_not_contain", "time", "mysql", "2.6.5", "4.2"], + ["match_not_contain", "time", "mysql", "2.6.5", "5.2"], + ["match_not_contain", "time", "mysql", "2.6.5", "6.0"], + ["match_not_contain", "time", "mysql", "2.5.7", "4.2"], + ["match_not_contain", "time", "mysql", "2.5.7", "5.2"], + ["match_not_contain", "time", "mysql", "2.5.7", "6.0"], + ["match_not_contain", "time", "mysql", "2.4.9", "4.2"], + ["match_not_contain", "time", "mysql", "2.4.9", "5.2"], + ["match_not_contain", "time", "mysql", "2.4.9", "6.0"], + ["match_not_contain", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_contain", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_contain", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_contain", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_contain", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_contain", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_contain", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_contain", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_contain", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_contain", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_contain", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_contain", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "date", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "date", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "date", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "date", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "date", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "date", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "date", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "date", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "date", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "date", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "date", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "date", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "float", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "float", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "float", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "float", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "float", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "float", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "float", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "float", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "float", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "float", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "float", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "float", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "string", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "string", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "string", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "string", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "string", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "string", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "string", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "string", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "string", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "string", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "string", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "string", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "text", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "text", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "text", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "text", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "text", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "text", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "text", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "text", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "text", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "text", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "text", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "text", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_any", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_any", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_any", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_any", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_any", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_any", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_any", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_any", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_any", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_any", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_any", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_any", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_any", "time", "mysql", "2.7.0", "4.2"], + ["match_not_contain_any", "time", "mysql", "2.7.0", "5.2"], + ["match_not_contain_any", "time", "mysql", "2.7.0", "6.0"], + ["match_not_contain_any", "time", "mysql", "2.6.5", "4.2"], + ["match_not_contain_any", "time", "mysql", "2.6.5", "5.2"], + ["match_not_contain_any", "time", "mysql", "2.6.5", "6.0"], + ["match_not_contain_any", "time", "mysql", "2.5.7", "4.2"], + ["match_not_contain_any", "time", "mysql", "2.5.7", "5.2"], + ["match_not_contain_any", "time", "mysql", "2.5.7", "6.0"], + ["match_not_contain_any", "time", "mysql", "2.4.9", "4.2"], + ["match_not_contain_any", "time", "mysql", "2.4.9", "5.2"], + ["match_not_contain_any", "time", "mysql", "2.4.9", "6.0"], + ["match_not_contain_any", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_any", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_any", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_any", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_any", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_any", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_any", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_any", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_any", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_any", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_any", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_any", "time", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "binary", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "binary", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "binary", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "binary", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "binary", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "binary", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "binary", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "binary", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "binary", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "binary", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "binary", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "binary", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "binary", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "binary", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "binary", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "binary", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "binary", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "binary", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "binary", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "binary", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "binary", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "binary", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "binary", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "binary", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "binary", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "binary", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "binary", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "binary", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "binary", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "binary", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "binary", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "binary", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "binary", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "binary", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "binary", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "binary", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "boolean", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "boolean", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "boolean", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "boolean", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "boolean", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "boolean", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "boolean", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "boolean", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "boolean", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "boolean", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "boolean", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "boolean", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "boolean", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "boolean", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "boolean", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "boolean", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "boolean", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "boolean", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "boolean", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "boolean", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "boolean", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "boolean", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "boolean", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "boolean", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "boolean", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "boolean", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "boolean", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "boolean", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "boolean", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "boolean", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "boolean", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "boolean", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "boolean", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "boolean", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "boolean", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "boolean", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "date", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "date", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "date", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "date", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "date", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "date", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "date", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "date", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "date", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "date", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "date", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "date", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "date", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "date", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "date", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "date", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "date", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "date", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "date", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "date", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "date", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "date", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "date", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "date", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "date", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "date", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "date", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "date", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "date", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "date", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "date", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "date", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "date", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "date", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "date", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "date", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "datetime", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "datetime", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "datetime", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "datetime", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "datetime", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "datetime", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "datetime", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "datetime", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "datetime", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "datetime", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "datetime", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "datetime", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "datetime", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "datetime", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "datetime", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "datetime", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "datetime", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "datetime", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "datetime", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "datetime", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "datetime", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "datetime", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "datetime", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "datetime", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "datetime", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "datetime", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "datetime", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "datetime", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "datetime", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "datetime", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "datetime", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "datetime", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "datetime", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "datetime", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "datetime", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "datetime", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "decimal", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "decimal", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "decimal", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "decimal", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "decimal", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "decimal", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "decimal", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "decimal", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "decimal", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "decimal", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "decimal", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "decimal", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "decimal", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "decimal", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "decimal", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "decimal", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "decimal", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "decimal", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "decimal", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "decimal", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "decimal", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "decimal", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "decimal", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "decimal", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "decimal", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "decimal", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "decimal", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "decimal", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "decimal", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "decimal", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "decimal", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "decimal", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "decimal", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "decimal", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "decimal", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "decimal", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "float", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "float", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "float", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "float", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "float", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "float", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "float", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "float", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "float", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "float", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "float", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "float", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "float", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "float", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "float", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "float", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "float", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "float", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "float", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "float", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "float", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "float", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "float", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "float", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "float", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "float", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "float", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "float", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "float", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "float", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "float", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "float", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "float", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "float", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "float", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "float", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "integer", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "integer", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "integer", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "integer", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "integer", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "integer", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "integer", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "integer", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "integer", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "integer", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "integer", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "integer", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "integer", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "integer", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "integer", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "integer", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "integer", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "integer", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "integer", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "integer", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "integer", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "integer", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "integer", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "integer", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "integer", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "integer", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "integer", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "integer", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "integer", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "integer", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "integer", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "integer", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "integer", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "integer", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "integer", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "integer", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "string", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "string", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "string", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "string", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "string", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "string", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "string", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "string", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "string", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "string", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "string", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "string", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "string", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "string", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "string", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "string", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "string", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "string", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "string", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "string", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "string", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "string", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "string", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "string", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "string", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "string", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "string", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "string", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "string", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "string", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "string", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "string", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "string", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "string", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "string", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "string", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "text", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "text", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "text", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "text", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "text", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "text", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "text", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "text", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "text", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "text", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "text", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "text", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "text", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "text", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "text", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "text", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "text", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "text", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "text", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "text", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "text", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "text", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "text", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "text", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "text", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "text", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "text", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "text", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "text", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "text", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "text", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "text", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "text", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "text", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "text", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "text", "sqlite", "2.4.9", "6.0"], + ["match_not_contain_all", "time", "postgresql", "2.7.0", "4.2"], + ["match_not_contain_all", "time", "postgresql", "2.7.0", "5.2"], + ["match_not_contain_all", "time", "postgresql", "2.7.0", "6.0"], + ["match_not_contain_all", "time", "postgresql", "2.6.5", "4.2"], + ["match_not_contain_all", "time", "postgresql", "2.6.5", "5.2"], + ["match_not_contain_all", "time", "postgresql", "2.6.5", "6.0"], + ["match_not_contain_all", "time", "postgresql", "2.5.7", "4.2"], + ["match_not_contain_all", "time", "postgresql", "2.5.7", "5.2"], + ["match_not_contain_all", "time", "postgresql", "2.5.7", "6.0"], + ["match_not_contain_all", "time", "postgresql", "2.4.9", "4.2"], + ["match_not_contain_all", "time", "postgresql", "2.4.9", "5.2"], + ["match_not_contain_all", "time", "postgresql", "2.4.9", "6.0"], + ["match_not_contain_all", "time", "mysql", "2.7.0", "4.2"], + ["match_not_contain_all", "time", "mysql", "2.7.0", "5.2"], + ["match_not_contain_all", "time", "mysql", "2.7.0", "6.0"], + ["match_not_contain_all", "time", "mysql", "2.6.5", "4.2"], + ["match_not_contain_all", "time", "mysql", "2.6.5", "5.2"], + ["match_not_contain_all", "time", "mysql", "2.6.5", "6.0"], + ["match_not_contain_all", "time", "mysql", "2.5.7", "4.2"], + ["match_not_contain_all", "time", "mysql", "2.5.7", "5.2"], + ["match_not_contain_all", "time", "mysql", "2.5.7", "6.0"], + ["match_not_contain_all", "time", "mysql", "2.4.9", "4.2"], + ["match_not_contain_all", "time", "mysql", "2.4.9", "5.2"], + ["match_not_contain_all", "time", "mysql", "2.4.9", "6.0"], + ["match_not_contain_all", "time", "sqlite", "2.7.0", "4.2"], + ["match_not_contain_all", "time", "sqlite", "2.7.0", "5.2"], + ["match_not_contain_all", "time", "sqlite", "2.7.0", "6.0"], + ["match_not_contain_all", "time", "sqlite", "2.6.5", "4.2"], + ["match_not_contain_all", "time", "sqlite", "2.6.5", "5.2"], + ["match_not_contain_all", "time", "sqlite", "2.6.5", "6.0"], + ["match_not_contain_all", "time", "sqlite", "2.5.7", "4.2"], + ["match_not_contain_all", "time", "sqlite", "2.5.7", "5.2"], + ["match_not_contain_all", "time", "sqlite", "2.5.7", "6.0"], + ["match_not_contain_all", "time", "sqlite", "2.4.9", "4.2"], + ["match_not_contain_all", "time", "sqlite", "2.4.9", "5.2"], + ["match_not_contain_all", "time", "sqlite", "2.4.9", "6.0"] +] diff --git a/sorter.rb b/sorter.rb new file mode 100644 index 0000000..e121b2e --- /dev/null +++ b/sorter.rb @@ -0,0 +1,1039 @@ +require 'test/unit' +require 'date' + +class Sorter + def initialize(*instructions) + @defaults = { + direction: :ascending, + nils: :small, + accessor: :itself, + case_sensitive: true, + normalized: false, + natural: false + } + @instructions = instructions.map do |instruction| + @defaults.merge(instruction) + end + end + + def sort(array) + array.sort_by do |item| + @instructions.map do |instruction| + raw_value = access_value(from: item, at: instruction[:accessor]) + processed_value = process_value(from: raw_value, given: instruction) + numeric_value = numeric_value(from: processed_value) + direction_multiplier = direction_multiplier(given: instruction[:direction]) + nils_multiplier = nils_multiplier(given: instruction[:nils]) + + # p({ raw_value: raw_value, processed_value: processed_value, numeric_value: numeric_value, direction_multiplier: direction_multiplier, nils_multiplier: nils_multiplier }) + + if numeric_value.nil? # [1, 0] [-1, 0] + [direction_multiplier * nils_multiplier, 0] + else # [0, n] [0, -n] + [0, numeric_value * direction_multiplier] + end # [-1, 0] [0, -n] [0, n] [1, 0] + end + end + end + + private + + def access_value(from:, at:) + path = at.to_s.split('.') + path.reduce(from) do |object, signal| + break nil unless object.respond_to? signal + + object.public_send(signal) + end + end + + def process_value(from:, given:) + return from unless from.is_a?(String) || from.is_a?(Symbol) + return from.downcase unless given[:case_sensitive] + return normalize(from) + from if given[:normalized] + return segment(from) if given[:natural] + + from + end + + def numeric_value(from:) + return from if from.is_a?(Numeric) + return 1 if from == true + return 0 if from == false + + if from.is_a?(String) || from.is_a?(Symbol) + string_to_numeric_value(from) + elsif from.is_a?(Date) + time_to_numeric_value(Time.new(from.year, from.month, from.day, 0o0, 0o0, 0o0, 0)) + elsif from.respond_to?(:to_time) + time_to_numeric_value(from.to_time) + elsif from.respond_to?(:map) + segment_array_to_numeric_value(from) + else + from + end + end + + def direction_multiplier(given:) + return -1 if given == :descending + + 1 + end + + def nils_multiplier(given:) + return -1 if given == :small + + 1 + end + + def string_to_numeric_value(string) + string # "aB09ü"" + .chars # ["a", "B", "0", "9", "ü"] + .map { |char| char.ord.to_s.rjust(3, '0') } # ["097", "066", "048", "057", "252"] + .insert(1, '.') # ["097", ".", "066", "048", "057", "252"] + .reduce(&:concat) # "097.066048057252" + .to_r # (24266512014313/250000000000) + end + + def time_to_numeric_value(time) # https://stackoverflow.com/a/30604935/2884386 + time # 2000-01-01 00:00:00 +0000 + .utc # 2000-01-01 00:00:00 UTC + .to_f # 946684800.0 + .*(1000) # 946684800000.0 + .round # 946684800000 + end + + def segment_array_to_numeric_value(segments) + segments # ["a", 12, "b", 34, "c"] + .map { |x| x.is_a?(Numeric) ? x : x.ord } # [97, 12, 98, 34, 99] + .map { |n| (n + 1).to_s.rjust(3, '0') } # ["098", "013", "099", "035", "100"] + .insert(1, '.') # ["098", ".", "013", "099", "035", "100"] + .join # "098.013099035100" + .to_r # (980130990351/10000000000) + end + + def normalize(string) # https://github.com/grosser/sort_alphabetical + string # "Äaáäßs" + .unicode_normalize(:nfd) # "Äaáäßs" + .downcase(:fold) # "äaáässs" + .chars # ["a", "̈", "a", "a", "́", "a", "̈", "s", "s", "s"] + .select { |c| c =~ /[[:ascii:]]/ } # ["a", "a", "a", "a", "s", "s", "s"] + .join # "aaaasss" + end + + def segment(string) # https://stackoverflow.com/a/15170063/2884386 + string # "a12b34c" + .scan(/\d+|\D/) # ["a", "12", "b", "34", "c"] + .map { |a| a =~ /\d+/ ? a.to_i : a } # ["a", 12, "b", 34, "c"] + end +end + +# - - - + +class TestIntegerSorter < Test::Unit::TestCase + def setup + integer_array = (0..9).to_a + + @random_integer_array = integer_array.shuffle + end + + def test_sort_integers_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending).sort(@random_integer_array), + [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + ) + end + + def test_sort_integers_in_descending_order + assert_equal( + Sorter.new(direction: :descending).sort(@random_integer_array), + [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] + ) + end +end + +class TestIntegerWithNilsSorter < Test::Unit::TestCase + def setup + integer_array = (0..9).to_a + nil_array = [nil] + + @random_integer_array_with_nil = ( + integer_array + + nil_array + ).shuffle + end + + def test_sort_integers_in_ascending_order_with_nils_small + assert_equal( + Sorter.new(direction: :ascending, nils: :small).sort(@random_integer_array_with_nil), + [nil, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + ) + end + + def test_sort_integers_in_ascending_order_with_nils_large + assert_equal( + Sorter.new(direction: :ascending, nils: :large).sort(@random_integer_array_with_nil), + [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, nil] + ) + end + + def test_sort_integers_in_descending_order_with_nils_small + assert_equal( + Sorter.new(direction: :descending, nils: :small).sort(@random_integer_array_with_nil), + [9, 8, 7, 6, 5, 4, 3, 2, 1, 0, nil] + ) + end + + def test_sort_integers_in_descending_order_with_nils_large + assert_equal( + Sorter.new(direction: :descending, nils: :large).sort(@random_integer_array_with_nil), + [nil, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0] + ) + end +end + +class TestBooleanSorter < Test::Unit::TestCase + def setup + boolean_array = [true, false] + + @random_boolean_array = boolean_array.shuffle + end + + def test_sort_booleans_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending).sort(@random_boolean_array), + [false, true] + ) + end + + def test_sort_booleans_in_descending_order + assert_equal( + Sorter.new(direction: :descending).sort(@random_boolean_array), + [true, false] + ) + end +end + +class TestBooleanWithNilsSorter < Test::Unit::TestCase + def setup + boolean_array = [true, false] + nil_array = [nil] + + @random_boolean_array_with_nil = ( + boolean_array + + nil_array + ).shuffle + end + + def test_sort_booleans_in_ascending_order_with_nils_small + assert_equal( + Sorter.new(direction: :ascending, nils: :small).sort(@random_boolean_array_with_nil), + [nil, false, true] + ) + end + + def test_sort_booleans_in_ascending_order_with_nils_large + assert_equal( + Sorter.new(direction: :ascending, nils: :large).sort(@random_boolean_array_with_nil), + [false, true, nil] + ) + end + + def test_sort_booleans_in_descending_order_with_nils_small + assert_equal( + Sorter.new(direction: :descending, nils: :small).sort(@random_boolean_array_with_nil), + [true, false, nil] + ) + end + + def test_sort_booleans_in_descending_order_with_nils_large + assert_equal( + Sorter.new(direction: :descending, nils: :large).sort(@random_boolean_array_with_nil), + [nil, true, false] + ) + end +end + +class TestTimeSorter < Test::Unit::TestCase + def setup + time_array = [ + Time.new(2000, 0o1, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2000, 0o1, 0o1, 10, 10, 10, 0), + Time.new(2010, 12, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2010, 12, 0o1, 10, 10, 10, 0) + ] + + @random_time_array = time_array.shuffle + end + + def test_sort_times_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending).sort(@random_time_array), + [ + Time.new(2000, 0o1, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2000, 0o1, 0o1, 10, 10, 10, 0), + Time.new(2010, 12, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2010, 12, 0o1, 10, 10, 10, 0) + ] + ) + end + + def test_sort_times_in_descending_order + assert_equal( + Sorter.new(direction: :descending).sort(@random_time_array), + [ + Time.new(2010, 12, 0o1, 10, 10, 10, 0), + Time.new(2010, 12, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2000, 0o1, 0o1, 10, 10, 10, 0), + Time.new(2000, 0o1, 0o1, 0o0, 0o0, 0o0, 0) + ] + ) + end +end + +class TestTimeWithNilsSorter < Test::Unit::TestCase + def setup + time_array = [ + Time.new(2000, 0o1, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2000, 0o1, 0o1, 10, 10, 10, 0), + Time.new(2010, 12, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2010, 12, 0o1, 10, 10, 10, 0) + ] + nil_array = [nil] + + @random_time_array_with_nil = ( + time_array + + nil_array + ).shuffle + end + + def test_sort_times_in_ascending_order_with_nils_small + assert_equal( + Sorter.new(direction: :ascending, nils: :small).sort(@random_time_array_with_nil), + [ + nil, + Time.new(2000, 0o1, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2000, 0o1, 0o1, 10, 10, 10, 0), + Time.new(2010, 12, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2010, 12, 0o1, 10, 10, 10, 0) + ] + ) + end + + def test_sort_times_in_ascending_order_with_nils_large + assert_equal( + Sorter.new(direction: :ascending, nils: :large).sort(@random_time_array_with_nil), + [ + Time.new(2000, 0o1, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2000, 0o1, 0o1, 10, 10, 10, 0), + Time.new(2010, 12, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2010, 12, 0o1, 10, 10, 10, 0), + nil + ] + ) + end + + def test_sort_times_in_descending_order_with_nils_small + assert_equal( + Sorter.new(direction: :descending, nils: :small).sort(@random_time_array_with_nil), + [ + Time.new(2010, 12, 0o1, 10, 10, 10, 0), + Time.new(2010, 12, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2000, 0o1, 0o1, 10, 10, 10, 0), + Time.new(2000, 0o1, 0o1, 0o0, 0o0, 0o0, 0), + nil + ] + ) + end + + def test_sort_times_in_descending_order_with_nils_large + assert_equal( + Sorter.new(direction: :descending, nils: :large).sort(@random_time_array_with_nil), + [ + nil, + Time.new(2010, 12, 0o1, 10, 10, 10, 0), + Time.new(2010, 12, 0o1, 0o0, 0o0, 0o0, 0), + Time.new(2000, 0o1, 0o1, 10, 10, 10, 0), + Time.new(2000, 0o1, 0o1, 0o0, 0o0, 0o0, 0) + ] + ) + end +end + +class TestDateSorter < Test::Unit::TestCase + def setup + date_array = [ + Date.new(2000, 0o1, 0o1), + Date.new(2000, 12, 12), + Date.new(2010, 12, 0o1), + Date.new(2010, 12, 12) + ] + + @random_date_array = date_array.shuffle + end + + def test_sort_dates_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending).sort(@random_date_array), + [ + Date.new(2000, 0o1, 0o1), + Date.new(2000, 12, 12), + Date.new(2010, 12, 0o1), + Date.new(2010, 12, 12) + ] + ) + end + + def test_sort_dates_in_descending_order + assert_equal( + Sorter.new(direction: :descending).sort(@random_date_array), + [ + Date.new(2010, 12, 12), + Date.new(2010, 12, 0o1), + Date.new(2000, 12, 12), + Date.new(2000, 0o1, 0o1) + ] + ) + end +end + +class TestDateWithNilsSorter < Test::Unit::TestCase + def setup + date_array = [ + Date.new(2000, 0o1, 12), + Date.new(2000, 0o1, 0o1), + Date.new(2010, 12, 0o1), + Date.new(2010, 12, 12) + ] + nil_array = [nil] + + @random_date_array_with_nil = ( + date_array + + nil_array + ).shuffle + end + + def test_sort_dates_in_ascending_order_with_nils_small + assert_equal( + Sorter.new(direction: :ascending, nils: :small).sort(@random_date_array_with_nil), + [ + nil, + Date.new(2000, 0o1, 0o1), + Date.new(2000, 0o1, 12), + Date.new(2010, 12, 0o1), + Date.new(2010, 12, 12) + ] + ) + end + + def test_sort_dates_in_ascending_order_with_nils_large + assert_equal( + Sorter.new(direction: :ascending, nils: :large).sort(@random_date_array_with_nil), + [ + Date.new(2000, 0o1, 0o1), + Date.new(2000, 0o1, 12), + Date.new(2010, 12, 0o1), + Date.new(2010, 12, 12), + nil + ] + ) + end + + def test_sort_dates_in_descending_order_with_nils_small + assert_equal( + Sorter.new(direction: :descending, nils: :small).sort(@random_date_array_with_nil), + [ + Date.new(2010, 12, 12), + Date.new(2010, 12, 0o1), + Date.new(2000, 0o1, 12), + Date.new(2000, 0o1, 0o1), + nil + ] + ) + end + + def test_sort_dates_in_descending_order_with_nils_large + assert_equal( + Sorter.new(direction: :descending, nils: :large).sort(@random_date_array_with_nil), + [ + nil, + Date.new(2010, 12, 12), + Date.new(2010, 12, 0o1), + Date.new(2000, 0o1, 12), + Date.new(2000, 0o1, 0o1) + ] + ) + end +end + +class TestStringSorter < Test::Unit::TestCase + def setup + string_array = %w[a z A Z] + + @random_string_array = string_array.shuffle + end + + def test_sort_strings_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending).sort(@random_string_array), + %w[A Z a z] + ) + end + + def test_sort_strings_in_descending_order + assert_equal( + Sorter.new(direction: :descending).sort(@random_string_array), + %w[z a Z A] + ) + end +end + +class TestStringInsensitiveSorter < Test::Unit::TestCase + def setup + string_array = %w[a A z Z] + + @random_string_array = string_array + end + + def test_sort_strings_case_insensitively_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending, case_sensitive: false).sort(@random_string_array), + %w[a A z Z] + ) + end + + def test_sort_strings_case_insensitively_in_descending_order + assert_equal( + Sorter.new(direction: :descending, case_sensitive: false).sort(@random_string_array), + %w[z Z a A] + ) + end +end + +class TestStringWithNilsSorter < Test::Unit::TestCase + def setup + string_array = %w[a z A Z] + nil_array = [nil] + + @random_string_array_with_nil = ( + string_array + + nil_array + ).shuffle + end + + def test_sort_strings_in_ascending_order_with_nils_small + assert_equal( + Sorter.new(direction: :ascending, nils: :small).sort(@random_string_array_with_nil), + [nil, 'A', 'Z', 'a', 'z'] + ) + end + + def test_sort_strings_in_ascending_order_with_nils_large + assert_equal( + Sorter.new(direction: :ascending, nils: :large).sort(@random_string_array_with_nil), + ['A', 'Z', 'a', 'z', nil] + ) + end + + def test_sort_strings_in_descending_order_with_nils_small + assert_equal( + Sorter.new(direction: :descending, nils: :small).sort(@random_string_array_with_nil), + ['z', 'a', 'Z', 'A', nil] + ) + end + + def test_sort_strings_in_descending_order_with_nils_large + assert_equal( + Sorter.new(direction: :descending, nils: :large).sort(@random_string_array_with_nil), + [nil, 'z', 'a', 'Z', 'A'] + ) + end +end + +class TestStringInsensitiveWithNilsSorter < Test::Unit::TestCase + def setup + string_array = %w[a z A Z] + nil_array = [nil] + + @random_string_array_with_nil = ( + string_array + + nil_array + ) + end + + def test_sort_strings_case_insensitively_in_ascending_order_with_nils_small + assert_equal( + Sorter.new(direction: :ascending, nils: :small, case_sensitive: false).sort(@random_string_array_with_nil), + [nil, 'a', 'A', 'z', 'Z'] + ) + end + + def test_sort_strings_case_insensitively_in_ascending_order_with_nils_large + assert_equal( + Sorter.new(direction: :ascending, nils: :large, case_sensitive: false).sort(@random_string_array_with_nil), + ['a', 'A', 'z', 'Z', nil] + ) + end + + def test_sort_strings_case_insensitively_in_descending_order_with_nils_small + assert_equal( + Sorter.new(direction: :descending, nils: :small, case_sensitive: false).sort(@random_string_array_with_nil), + ['z', 'Z', 'a', 'A', nil] + ) + end + + def test_sort_strings_case_insensitively_in_descending_order_with_nils_large + assert_equal( + Sorter.new(direction: :descending, nils: :large, case_sensitive: false).sort(@random_string_array_with_nil), + [nil, 'z', 'Z', 'a', 'A'] + ) + end +end + +class TestSimpleObjectSorter < Test::Unit::TestCase + def setup + obj = Struct.new(:bool, :int) + boolean_array = [true, false] + integer_array = (1..2).to_a + + @array_of_tuples_to_array_of_objs_transformer = ->(array) { array.map { |bool, int| obj.new(bool, int) } } + @random_object_array = @array_of_tuples_to_array_of_objs_transformer.call( + boolean_array.product(integer_array).shuffle + ) + end + + def test_sort_object_bool_then_int_in_ascending_then_ascending_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool }, + { direction: :ascending, accessor: :int }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 1], [false, 2], [true, 1], [true, 2]] + ) + ) + end + + def test_sort_object_bool_then_int_in_ascending_then_descending_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool }, + { direction: :descending, accessor: :int }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 2], [false, 1], [true, 2], [true, 1]] + ) + ) + end + + def test_sort_object_bool_then_int_in_descending_then_ascending_order + assert_equal( + Sorter.new({ direction: :descending, accessor: :bool }, + { direction: :ascending, accessor: :int }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[true, 1], [true, 2], [false, 1], [false, 2]] + ) + ) + end + + def test_sort_object_bool_then_int_in_descending_then_descending_order + assert_equal( + Sorter.new({ direction: :descending, accessor: :bool }, + { direction: :descending, accessor: :int }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[true, 2], [true, 1], [false, 2], [false, 1]] + ) + ) + end + + def test_sort_object_int_then_bool_in_ascending_then_ascending_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :int }, + { direction: :ascending, accessor: :bool }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 1], [true, 1], [false, 2], [true, 2]] + ) + ) + end + + def test_sort_object_int_then_bool_in_ascending_then_descending_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :int }, + { direction: :descending, accessor: :bool }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[true, 1], [false, 1], [true, 2], [false, 2]] + ) + ) + end + + def test_sort_object_int_then_bool_in_descending_then_ascending_order + assert_equal( + Sorter.new({ direction: :descending, accessor: :int }, + { direction: :ascending, accessor: :bool }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 2], [true, 2], [false, 1], [true, 1]] + ) + ) + end + + def test_sort_object_int_then_bool_in_descending_then_descending_order + assert_equal( + Sorter.new({ direction: :descending, accessor: :int }, + { direction: :descending, accessor: :bool }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[true, 2], [false, 2], [true, 1], [false, 1]] + ) + ) + end +end + +class TestSimpleObjectWithNilsSorter < Test::Unit::TestCase + def setup + obj = Struct.new(:bool, :int) + boolean_array = [true, false] + integer_array = (1..2).to_a + nil_array = [nil] + boolean_integer_tuple_array = boolean_array.product(integer_array) + boolean_nil_tuple_array = boolean_array.product(nil_array) + nil_integer_tuple_array = nil_array.product(integer_array) + + @array_of_tuples_to_array_of_objs_transformer = ->(array) { array.map { |bool, int| obj.new(bool, int) } } + @random_object_array_with_nil = @array_of_tuples_to_array_of_objs_transformer.call( + boolean_integer_tuple_array + + boolean_nil_tuple_array + + nil_integer_tuple_array + ).shuffle + end + + def test_sort_object_bool_then_int_in_ascending_with_nils_small_then_ascending_with_nils_small_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool, nils: :small }, + { direction: :ascending, accessor: :int, nils: :small }) + .sort(@random_object_array_with_nil), + @array_of_tuples_to_array_of_objs_transformer.call( + [[nil, 1], [nil, 2], [false, nil], [false, 1], [false, 2], [true, nil], [true, 1], [true, 2]] + ) + ) + end + + def test_sort_object_bool_then_int_in_ascending_with_nils_large_then_ascending_with_nils_small_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool, nils: :large }, + { direction: :ascending, accessor: :int, nils: :small }) + .sort(@random_object_array_with_nil), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, nil], [false, 1], [false, 2], [true, nil], [true, 1], [true, 2], [nil, 1], [nil, 2]] + ) + ) + end + + def test_sort_object_bool_then_int_in_ascending_with_nils_small_then_ascending_with_nils_large_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool, nils: :small }, + { direction: :ascending, accessor: :int, nils: :large }) + .sort(@random_object_array_with_nil), + @array_of_tuples_to_array_of_objs_transformer.call( + [[nil, 1], [nil, 2], [false, 1], [false, 2], [false, nil], [true, 1], [true, 2], [true, nil]] + ) + ) + end + + def test_sort_object_bool_then_int_in_ascending_with_nils_large_then_ascending_with_nils_large_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool, nils: :large }, + { direction: :ascending, accessor: :int, nils: :large }) + .sort(@random_object_array_with_nil), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 1], [false, 2], [false, nil], [true, 1], [true, 2], [true, nil], [nil, 1], [nil, 2]] + ) + ) + end +end + +class TestNestedObjectSorter < Test::Unit::TestCase + def setup + assoc = Struct.new(:int) + obj = Struct.new(:bool, :assoc) + boolean_array = [true, false] + integer_array = (1..2).to_a + + @array_of_tuples_to_array_of_objs_transformer = ->(array) { array.map { |bool, int| obj.new(bool, assoc.new(int)) } } + @random_object_array = @array_of_tuples_to_array_of_objs_transformer.call( + boolean_array.product(integer_array).shuffle + ) + end + + def test_sort_nested_object_bool_then_int_in_ascending_then_ascending_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool }, + { direction: :ascending, accessor: 'assoc.int' }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 1], [false, 2], [true, 1], [true, 2]] + ) + ) + end + + def test_sort_nested_object_bool_then_int_in_ascending_then_descending_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool }, + { direction: :descending, accessor: 'assoc.int' }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 2], [false, 1], [true, 2], [true, 1]] + ) + ) + end + + def test_sort_nested_object_bool_then_int_in_descending_then_ascending_order + assert_equal( + Sorter.new({ direction: :descending, accessor: :bool }, + { direction: :ascending, accessor: 'assoc.int' }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[true, 1], [true, 2], [false, 1], [false, 2]] + ) + ) + end + + def test_sort_nested_object_bool_then_int_in_descending_then_descending_order + assert_equal( + Sorter.new({ direction: :descending, accessor: :bool }, + { direction: :descending, accessor: 'assoc.int' }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[true, 2], [true, 1], [false, 2], [false, 1]] + ) + ) + end + + def test_sort_nested_object_int_then_bool_in_ascending_then_ascending_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: 'assoc.int' }, + { direction: :ascending, accessor: :bool }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 1], [true, 1], [false, 2], [true, 2]] + ) + ) + end + + def test_sort_nested_object_int_then_bool_in_ascending_then_descending_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: 'assoc.int' }, + { direction: :descending, accessor: :bool }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[true, 1], [false, 1], [true, 2], [false, 2]] + ) + ) + end + + def test_sort_nested_object_int_then_bool_in_descending_then_ascending_order + assert_equal( + Sorter.new({ direction: :descending, accessor: 'assoc.int' }, + { direction: :ascending, accessor: :bool }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 2], [true, 2], [false, 1], [true, 1]] + ) + ) + end + + def test_sort_nested_object_int_then_bool_in_descending_then_descending_order + assert_equal( + Sorter.new({ direction: :descending, accessor: 'assoc.int' }, + { direction: :descending, accessor: :bool }) + .sort(@random_object_array), + @array_of_tuples_to_array_of_objs_transformer.call( + [[true, 2], [false, 2], [true, 1], [false, 1]] + ) + ) + end +end + +class TestNestedObjectWithNilsSorter < Test::Unit::TestCase + def setup + assoc = Struct.new(:int) + obj = Struct.new(:bool, :assoc) + boolean_array = [true, false] + integer_array = (1..2).to_a + nil_array = [nil] + boolean_integer_tuple_array = boolean_array.product(integer_array) + boolean_nil_tuple_array = boolean_array.product(nil_array) + nil_integer_tuple_array = nil_array.product(integer_array) + + @array_of_tuples_to_array_of_objs_transformer = ->(array) { array.map { |bool, int| obj.new(bool, assoc.new(int)) } } + @random_object_array_with_nil = @array_of_tuples_to_array_of_objs_transformer.call( + boolean_integer_tuple_array + + boolean_nil_tuple_array + + nil_integer_tuple_array + ).shuffle + end + + def test_sort_nested_object_bool_then_int_in_ascending_with_nils_small_then_ascending_with_nils_small_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool, nils: :small }, + { direction: :ascending, accessor: 'assoc.int', nils: :small }) + .sort(@random_object_array_with_nil), + @array_of_tuples_to_array_of_objs_transformer.call( + [[nil, 1], [nil, 2], [false, nil], [false, 1], [false, 2], [true, nil], [true, 1], [true, 2]] + ) + ) + end + + def test_sort_nested_object_bool_then_int_in_ascending_with_nils_large_then_ascending_with_nils_small_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool, nils: :large }, + { direction: :ascending, accessor: 'assoc.int', nils: :small }) + .sort(@random_object_array_with_nil), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, nil], [false, 1], [false, 2], [true, nil], [true, 1], [true, 2], [nil, 1], [nil, 2]] + ) + ) + end + + def test_sort_nested_object_bool_then_int_in_ascending_with_nils_small_then_ascending_with_nils_large_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool, nils: :small }, + { direction: :ascending, accessor: 'assoc.int', nils: :large }) + .sort(@random_object_array_with_nil), + @array_of_tuples_to_array_of_objs_transformer.call( + [[nil, 1], [nil, 2], [false, 1], [false, 2], [false, nil], [true, 1], [true, 2], [true, nil]] + ) + ) + end + + def test_sort_nested_object_bool_then_int_in_ascending_with_nils_large_then_ascending_with_nils_large_order + assert_equal( + Sorter.new({ direction: :ascending, accessor: :bool, nils: :large }, + { direction: :ascending, accessor: 'assoc.int', nils: :large }) + .sort(@random_object_array_with_nil), + @array_of_tuples_to_array_of_objs_transformer.call( + [[false, 1], [false, 2], [false, nil], [true, 1], [true, 2], [true, nil], [nil, 1], [nil, 2]] + ) + ) + end +end + +class TestUnicodeStringSorter < Test::Unit::TestCase + def test_sort_unicode_unaccented_strings_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending, normalized: true).sort(%w[b a á ä o ó x ö í i c]), + %w[a á ä b c i í o ó ö x] + ) + end + + def test_sort_unicode_unaccented_strings_in_descending_order + assert_equal( + Sorter.new(direction: :descending, normalized: true).sort(%w[b a á ä o ó x ö í i c]), + %w[x ö ó o í i c b ä á a] + ) + end + + def test_sort_unicode_mixed_strings_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending, normalized: true).sort(%w[AA AB ÄA]), + %w[AA ÄA AB] + ) + end + + def test_sort_unicode_mixed_strings_in_descending_order + assert_equal( + Sorter.new(direction: :descending, normalized: true).sort(%w[AA AB ÄA]), + %w[AB ÄA AA] + ) + end + + def test_sort_unicode_word_strings_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending, normalized: true).sort(%w[hellö hello hellá]), + %w[hellá hello hellö] + ) + end + + def test_sort_unicode_word_strings_in_descending_order + assert_equal( + Sorter.new(direction: :descending, normalized: true).sort(%w[hellö hello hellá]), + %w[hellö hello hellá] + ) + end + + def test_sort_unicode_ligatures_strings_in_ascending_order + assert_equal( + Sorter.new(direction: :ascending, normalized: true).sort(%w[assb aßc assd]), + %w[assb aßc assd] + ) + end + + def test_sort_unicode_ligatures_strings_in_descending_order + assert_equal( + Sorter.new(direction: :descending, normalized: true).sort(%w[assb aßc assd]), + %w[assd aßc assb] + ) + end +end + +class TestNaturalStringSorter < Test::Unit::TestCase + def test_sort_basic_strings_in_ascending_order_naturally + assert_equal( + Sorter.new(direction: :ascending, natural: true).sort(%w[a10 a a20 a1b a1a a2 a0 a1]), + %w[a a0 a1 a1a a1b a2 a10 a20] + ) + end + + def test_sort_basic_strings_in_descending_order_naturally + assert_equal( + Sorter.new(direction: :descending, natural: true).sort(%w[a10 a a20 a1b a1a a2 a0 a1]), + %w[a20 a10 a2 a1b a1a a1 a0 a] + ) + end + + def test_sort_multiple_alphanum_segment_strings_in_ascending_order_naturally + assert_equal( + Sorter.new(direction: :ascending, natural: true).sort(%w[x2-g8 x8-y8 x2-y7 x2-y08]), + %w[x2-g8 x2-y7 x2-y08 x8-y8] + ) + end + + def test_sort_multiple_alphanum_segment_strings_in_descending_order_naturally + assert_equal( + Sorter.new(direction: :descending, natural: true).sort(%w[x2-g8 x8-y8 x2-y7 x2-y08]), + %w[x8-y8 x2-y08 x2-y7 x2-g8] + ) + end + + def test_sort_multiple_numeric_segment_strings_in_ascending_order_naturally + assert_equal( + Sorter.new(direction: :ascending, natural: true).sort(%w[1.2.3.2 1.2.3.10 1.2.3.1]), + %w[1.2.3.1 1.2.3.2 1.2.3.10] + ) + end + + def test_sort_multiple_numeric_segment_strings_in_descending_order_naturally + assert_equal( + Sorter.new(direction: :descending, natural: true).sort(%w[1.2.3.2 1.2.3.10 1.2.3.1]), + %w[1.2.3.10 1.2.3.2 1.2.3.1] + ) + end + + def test_sort_mixed_segment_strings_in_ascending_order_naturally + assert_equal( + Sorter.new(direction: :ascending, natural: true).sort(%w[a 10 a10 10a a10a a10.a a10.A 10.20a 10.20]), + %w[10 10.20 10.20a 10a a a10 a10.A a10.a a10a] + ) + end + + def test_sort_mixed_segment_strings_in_descending_order_naturally + assert_equal( + Sorter.new(direction: :descending, natural: true).sort(%w[a 10 a10 10a a10a a10.a a10.A 10.20a 10.20]), + %w[a10a a10.a a10.A a10 a 10a 10.20a 10.20 10] + ) + end +end + +Test::Unit::AutoRunner.run diff --git a/spec/action_set/attribute_value_spec.rb b/spec/action_set/attribute_value_spec.rb index 4da3e16..3dfa500 100644 --- a/spec/action_set/attribute_value_spec.rb +++ b/spec/action_set/attribute_value_spec.rb @@ -9,7 +9,7 @@ describe '#cast' do ApplicationRecord::FIELD_TYPES.each do |type| - it do + it "casts into #{type} when passed type class" do type_value = @thing.public_send(type) string_value = type_value.to_s attribute_value = ActionSet::AttributeValue.new(string_value) @@ -18,7 +18,7 @@ expect(cast_value).to eql type_value end - it do + it "casts into #{type} when passed no type class" do type_value = @thing.public_send(type) string_value = type_value.to_s attribute_value = ActionSet::AttributeValue.new(string_value) diff --git a/spec/active_set/filter/predicates_spec.rb b/spec/active_set/filter/predicates_spec.rb index 226ee48..0ec6500 100644 --- a/spec/active_set/filter/predicates_spec.rb +++ b/spec/active_set/filter/predicates_spec.rb @@ -24,7 +24,7 @@ context "{ #{path}: }" do let(:matching_item) { instance_variable_get("@thing_#{id}") } let(:instruction_single_value) do - value_for(object: matching_item, path: path) + attr_value_for(object: matching_item, path: path) end let(:instructions) do { @@ -42,7 +42,7 @@ context "{ #{path}: }" do let(:matching_item) { instance_variable_get("@thing_#{id}") } let(:instruction_single_value) do - value_for(object: matching_item, path: path) + attr_value_for(object: matching_item, path: path) end let(:instructions) do { @@ -60,7 +60,7 @@ context "{ #{path}: }" do let(:matching_item) { instance_variable_get("@thing_#{id}") } let(:instruction_single_value) do - value_for(object: matching_item, path: path) + attr_value_for(object: matching_item, path: path) end let(:instructions) do { @@ -90,8 +90,8 @@ guaranteed_unique_object_for(matching_item, only: guaranteed_unique_object_for(matching_item.only)) end - let(:matching_value) { value_for(object: matching_item, path: path) } - let(:other_value) { value_for(object: other_thing, path: path) } + let(:matching_value) { attr_value_for(object: matching_item, path: path) } + let(:other_value) { attr_value_for(object: other_thing, path: path) } let(:instruction_multi_value) do if operator.to_s.split('_').include?('IN') && (operator.to_s.split('_') & %w[ANY ALL]).any? [ [matching_value], [other_value] ] @@ -116,8 +116,8 @@ guaranteed_unique_object_for(matching_item, only: guaranteed_unique_object_for(matching_item.only)) end - let(:matching_value) { value_for(object: matching_item, path: path) } - let(:other_value) { value_for(object: other_thing, path: path) } + let(:matching_value) { attr_value_for(object: matching_item, path: path) } + let(:other_value) { attr_value_for(object: other_thing, path: path) } let(:instruction_multi_value) do if operator.to_s.split('_').include?('IN') && (operator.to_s.split('_') & %w[ANY ALL]).any? [ [matching_value], [other_value] ] @@ -146,8 +146,8 @@ end let(:instruction_multi_value) do [ - value_for(object: matching_item, path: path), - value_for(object: other_thing, path: path) + attr_value_for(object: matching_item, path: path), + attr_value_for(object: other_thing, path: path) ] end let(:instructions) do diff --git a/spec/factories/generic.rb b/spec/factories/generic.rb index bc99a61..30cf0f6 100644 --- a/spec/factories/generic.rb +++ b/spec/factories/generic.rb @@ -23,9 +23,9 @@ def fit_to_minmax(number, max:, min: 1) sequence(:datetime) do |n| "#{date}T#{time}:#{fit_to_minmax(n, max: 60).to_s.rjust(2, '0')}+00:00" end - sequence(:decimal) { |n| (n.to_s + '.' + Faker::Number.number(digits: 2).to_s).to_f } - sequence(:float) { |n| (n.to_s + '.' + Faker::Number.number(digits: 2).to_s).to_f } - sequence(:integer, &:to_i) + sequence(:decimal) { |n| ((n + 10000).to_s + '.' + Faker::Number.number(digits: 2).to_s).to_f } + sequence(:float) { |n| ((n + 10000).to_s + '.' + Faker::Number.number(digits: 2).to_s).to_f } + sequence(:integer) { |n| n + 10000 } sequence(:string) do |n| n.hash.abs.to_s.split('').map { |i| ('a'..'z').to_a.shuffle[i.to_i] }.join end diff --git a/spec/internal/app/models/alot.rb b/spec/internal/app/models/alot.rb index 662a83a..b5f8a5e 100644 --- a/spec/internal/app/models/alot.rb +++ b/spec/internal/app/models/alot.rb @@ -1,6 +1,8 @@ # frozen_string_literal: true class Alot < ApplicationRecord + include Scopes + belongs_to :thing, inverse_of: :alots end diff --git a/spec/internal/app/models/application_record.rb b/spec/internal/app/models/application_record.rb index 6d2e514..7b2a5ad 100644 --- a/spec/internal/app/models/application_record.rb +++ b/spec/internal/app/models/application_record.rb @@ -3,13 +3,13 @@ class ApplicationRecord < ActiveRecord::Base self.abstract_class = true + # float is a major PITA, so taking it out for now DB_FIELD_TYPES = %w[ binary boolean date datetime decimal - float integer string text @@ -24,22 +24,6 @@ class ApplicationRecord < ActiveRecord::Base SORTABLE_TYPES = ApplicationRecord::FIELD_TYPES + ['string/i/', 'text/i/', 'symbol/i/'] FILTERABLE_TYPES = ApplicationRecord::FIELD_TYPES + ['string/i/', 'text/i/', 'symbol/i/'] - DB_FIELD_TYPES.each do |field| - scope "#{field}_scope_method", ->(v) { where(field => v) } - - define_singleton_method("#{field}_collection_method") do |v| - where(field => v) - end - - define_singleton_method("#{field}_item_method") do |v| - find_by(field => v) - end - - define_singleton_method("#{field}_nil_method") do |_v| - nil - end - end - def method_missing(method_name, *args, &block) return super unless method_name.to_s.start_with?('computed') return super unless method_name.to_s.end_with?(*fields, *associations) diff --git a/spec/internal/app/models/concerns/scopes.rb b/spec/internal/app/models/concerns/scopes.rb new file mode 100644 index 0000000..7f39713 --- /dev/null +++ b/spec/internal/app/models/concerns/scopes.rb @@ -0,0 +1,39 @@ +require 'active_support/concern' + +module Scopes + extend ActiveSupport::Concern + + included do + ApplicationRecord::DB_FIELD_TYPES.each do |field| + scope "#{field}_scope_method", (lambda do |v| + if ::ActiveRecord::Base.connection.adapter_name.downcase.presence_in(['mysql', 'mysql2']) && field == 'float' + column = Arel::Nodes::NamedFunction.new('CAST', [arel_table[field].as('DECIMAL(8,2)')]) + where(column.eq(v)) + else + where(field => v) + end + end) + + define_singleton_method("#{field}_collection_method") do |v| + if ::ActiveRecord::Base.connection.adapter_name.downcase.presence_in(['mysql', 'mysql2']) && field == 'float' + column = Arel::Nodes::NamedFunction.new('CAST', [arel_table[field].as('DECIMAL(8,2)')]) + where(column.eq(v)) + else + where(field => v) + end + end + + define_singleton_method("#{field}_item_method") do |v| + find_by(field => v) + end + + define_singleton_method("#{field}_nil_method") do |_v| + nil + end + end + end + + class_methods do + # ... + end +end diff --git a/spec/internal/app/models/joint.rb b/spec/internal/app/models/joint.rb index 4554ac5..c35678b 100644 --- a/spec/internal/app/models/joint.rb +++ b/spec/internal/app/models/joint.rb @@ -1,6 +1,8 @@ # frozen_string_literal: true class Joint < ApplicationRecord + include Scopes + belongs_to :thing, inverse_of: :joints belongs_to :related, diff --git a/spec/internal/app/models/only.rb b/spec/internal/app/models/only.rb index 60b181f..3de8d2f 100644 --- a/spec/internal/app/models/only.rb +++ b/spec/internal/app/models/only.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true class Only < ApplicationRecord + include Scopes + has_one :things end diff --git a/spec/internal/app/models/poly.rb b/spec/internal/app/models/poly.rb index 51dd812..c76eb10 100644 --- a/spec/internal/app/models/poly.rb +++ b/spec/internal/app/models/poly.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true class Poly < ApplicationRecord + include Scopes + belongs_to :polyable, polymorphic: true end diff --git a/spec/internal/app/models/related.rb b/spec/internal/app/models/related.rb index b3b26dc..d73efe7 100644 --- a/spec/internal/app/models/related.rb +++ b/spec/internal/app/models/related.rb @@ -1,6 +1,8 @@ # frozen_string_literal: true class Related < ApplicationRecord + include Scopes + has_many :things, through: :joint, inverse_of: :relateds diff --git a/spec/internal/app/models/sti.rb b/spec/internal/app/models/sti.rb index 02d5eb1..347ff8f 100644 --- a/spec/internal/app/models/sti.rb +++ b/spec/internal/app/models/sti.rb @@ -1,4 +1,5 @@ # frozen_string_literal: true class Sti < ApplicationRecord + include Scopes end diff --git a/spec/internal/app/models/thing.rb b/spec/internal/app/models/thing.rb index c3e5978..4eb9736 100644 --- a/spec/internal/app/models/thing.rb +++ b/spec/internal/app/models/thing.rb @@ -1,8 +1,9 @@ # frozen_string_literal: true class Thing < ApplicationRecord - belongs_to :only, - optional: true + include Scopes + + belongs_to :only has_many :alots, inverse_of: :thing has_many :relateds, diff --git a/spec/internal/config/database.travis.yml b/spec/internal/config/database.travis.yml new file mode 100644 index 0000000..0f3f41f --- /dev/null +++ b/spec/internal/config/database.travis.yml @@ -0,0 +1,16 @@ +sqlite: + adapter: sqlite3 + database: db/actionset_test.sqlite + timeout: 500 + +mysql: + adapter: mysql2 + database: actionset_test + username: travis + encoding: utf8 + +postgresql: + adapter: postgresql + database: actionset_test + user: postgres + password: diff --git a/spec/internal/config/database.yml b/spec/internal/config/database.yml index b978119..3582a3f 100644 --- a/spec/internal/config/database.yml +++ b/spec/internal/config/database.yml @@ -1,3 +1,16 @@ -test: +sqlite: adapter: sqlite3 - database: db/combustion_test.sqlite + database: db/actionset_test.sqlite + +mysql: + adapter: mysql2 + database: actionset_test + host: localhost + username: root + password: + +postgresql: + adapter: postgresql + database: actionset_test + user: + password: diff --git a/spec/internal/db/schema.rb b/spec/internal/db/schema.rb index d5fa1a7..a615dee 100644 --- a/spec/internal/db/schema.rb +++ b/spec/internal/db/schema.rb @@ -6,7 +6,7 @@ t.boolean :boolean t.date :date t.datetime :datetime - t.decimal :decimal + t.decimal :decimal, precision: 8, scale: 2 t.float :float t.integer :integer t.string :string @@ -22,7 +22,7 @@ t.boolean :boolean t.date :date t.datetime :datetime - t.decimal :decimal + t.decimal :decimal, precision: 8, scale: 2 t.float :float t.integer :integer t.string :string @@ -37,7 +37,7 @@ t.boolean :boolean t.date :date t.datetime :datetime - t.decimal :decimal + t.decimal :decimal, precision: 8, scale: 2 t.float :float t.integer :integer t.string :string @@ -53,7 +53,7 @@ t.boolean :boolean t.date :date t.datetime :datetime - t.decimal :decimal + t.decimal :decimal, precision: 8, scale: 2 t.float :float t.integer :integer t.string :string @@ -68,7 +68,7 @@ t.boolean :boolean t.date :date t.datetime :datetime - t.decimal :decimal + t.decimal :decimal, precision: 8, scale: 2 t.float :float t.integer :integer t.string :string @@ -86,7 +86,7 @@ t.boolean :boolean t.date :date t.datetime :datetime - t.decimal :decimal + t.decimal :decimal, precision: 8, scale: 2 t.float :float t.integer :integer t.string :string @@ -101,7 +101,7 @@ t.boolean :boolean t.date :date t.datetime :datetime - t.decimal :decimal + t.decimal :decimal, precision: 8, scale: 2 t.float :float t.integer :integer t.string :string diff --git a/spec/requests/export_spec.rb b/spec/requests/export_spec.rb index d5f96fb..839f662 100644 --- a/spec/requests/export_spec.rb +++ b/spec/requests/export_spec.rb @@ -13,19 +13,25 @@ let(:result) { response.body } before(:each) do - get things_path(format: :csv), - params: { export: instructions }, - as: :json + if Gemika::Env.gem?('rspec', '>= 4') + get things_path(format: :csv), + params: { export: instructions }, + as: :json + else + get things_path(format: :csv), + export: instructions, + as: :json + end end context 'with ActiveRecord collection' do before(:all) { @active_set = ActiveSet.new(Thing.all) } - context '{ columns: [{}] }' do + context "{ columns: [{meaningless: 'value'}] }" do let(:instructions) do { columns: [ - {} + {meaningless: 'value'} ] } end @@ -41,27 +47,6 @@ it { expect(result).to eq expected_csv } end - context '{ columns: [{}, {}] }' do - let(:instructions) do - { - columns: [ - {}, - {} - ] - } - end - let(:expected_csv) do - ::CSV.generate do |output| - output << ['', ''] - @active_set.each do |_| - output << %w[— —] - end - end - end - - it { expect(result).to eq expected_csv } - end - context "{ columns: [{key: 'ID'}] }" do let(:instructions) do { diff --git a/spec/requests/filtering/predicates_spec.rb b/spec/requests/filtering/predicates_spec.rb index f672bc8..aa3d105 100644 --- a/spec/requests/filtering/predicates_spec.rb +++ b/spec/requests/filtering/predicates_spec.rb @@ -15,8 +15,13 @@ let(:result_ids) { results.map { |f| f['id'] } } before(:each) do - get things_path(format: :json), - params: { filter: instructions } + if Gemika::Env.gem?('rspec', '>= 4') + get things_path(format: :json), + params: { filter: instructions } + else + get things_path(format: :json), + filter: instructions + end end ApplicationRecord::DB_FIELD_TYPES.each do |type| @@ -26,7 +31,7 @@ context "{ #{path}: }" do let(:matching_item) { instance_variable_get("@thing_#{id}") } let(:instruction_single_value) do - value_for(object: matching_item, path: path) + attr_value_for(object: matching_item, path: path) end let(:instructions) do { @@ -44,7 +49,7 @@ context "{ #{path}: }" do let(:matching_item) { instance_variable_get("@thing_#{id}") } let(:instruction_single_value) do - value_for(object: matching_item, path: path) + attr_value_for(object: matching_item, path: path) end let(:instructions) do { @@ -62,7 +67,7 @@ context "{ #{path}: }" do let(:matching_item) { instance_variable_get("@thing_#{id}") } let(:instruction_single_value) do - value_for(object: matching_item, path: path) + attr_value_for(object: matching_item, path: path) end let(:instructions) do { @@ -94,8 +99,8 @@ guaranteed_unique_object_for(matching_item, only: guaranteed_unique_object_for(matching_item.only)) end - let(:matching_value) { value_for(object: matching_item, path: path) } - let(:other_value) { value_for(object: other_thing, path: path) } + let(:matching_value) { attr_value_for(object: matching_item, path: path) } + let(:other_value) { attr_value_for(object: other_thing, path: path) } let(:instruction_multi_value) do if operator.to_s.split('_').include?('IN') && (operator.to_s.split('_') & %w[ANY ALL]).any? [ [matching_value], [other_value] ] @@ -122,8 +127,8 @@ guaranteed_unique_object_for(matching_item, only: guaranteed_unique_object_for(matching_item.only)) end - let(:matching_value) { value_for(object: matching_item, path: path) } - let(:other_value) { value_for(object: other_thing, path: path) } + let(:matching_value) { attr_value_for(object: matching_item, path: path) } + let(:other_value) { attr_value_for(object: other_thing, path: path) } let(:instruction_multi_value) do if operator.to_s.split('_').include?('IN') && (operator.to_s.split('_') & %w[ANY ALL]).any? [ [matching_value], [other_value] ] @@ -154,8 +159,8 @@ end let(:instruction_multi_value) do [ - value_for(object: matching_item, path: path), - value_for(object: other_thing, path: path) + attr_value_for(object: matching_item, path: path), + attr_value_for(object: other_thing, path: path) ] end let(:instructions) do diff --git a/spec/requests/filtering/scopes_spec.rb b/spec/requests/filtering/scopes_spec.rb index 0d4ec3d..cd3b63d 100644 --- a/spec/requests/filtering/scopes_spec.rb +++ b/spec/requests/filtering/scopes_spec.rb @@ -14,8 +14,13 @@ let(:result_ids) { results.map { |f| f['id'] } } before(:each) do - get things_path(format: :json), - params: { filter: instructions } + if Gemika::Env.gem?('rspec', '>= 4') + get things_path(format: :json), + params: { filter: instructions } + else + get things_path(format: :json), + filter: instructions + end end # TODO: make request typecasting handle scopes diff --git a/spec/requests/filtering/types_spec.rb b/spec/requests/filtering/types_spec.rb index 6aad621..ca0c83c 100644 --- a/spec/requests/filtering/types_spec.rb +++ b/spec/requests/filtering/types_spec.rb @@ -19,8 +19,14 @@ .and_return({ types: instructions.transform_values(&:class) }) if defined?(filter_set_types) - get things_path(format: :json), - params: { filter: instructions } + + if Gemika::Env.gem?('rspec', '>= 4') + get things_path(format: :json), + params: { filter: instructions } + else + get things_path(format: :json), + filter: instructions + end end ApplicationRecord::FIELD_TYPES.each do |type| diff --git a/spec/requests/paginate_spec.rb b/spec/requests/paginate_spec.rb index a680607..a2ed826 100644 --- a/spec/requests/paginate_spec.rb +++ b/spec/requests/paginate_spec.rb @@ -14,8 +14,13 @@ let(:result_ids) { results.map { |f| f['id'] } } before(:each) do - get things_path(format: :json), - params: { paginate: instructions } + if Gemika::Env.gem?('rspec', '>= 4') + get things_path(format: :json), + params: { paginate: instructions } + else + get things_path(format: :json), + paginate: instructions + end end context 'with ActiveRecord collection' do diff --git a/spec/requests/sort_spec.rb b/spec/requests/sort_spec.rb index 598ff8a..943c954 100644 --- a/spec/requests/sort_spec.rb +++ b/spec/requests/sort_spec.rb @@ -43,8 +43,13 @@ let(:result) { JSON.parse(response.body) } before(:each) do - get things_path(format: :json), - params: { sort: instructions } + if Gemika::Env.gem?('rspec', '>= 4') + get things_path(format: :json), + params: { sort: instructions } + else + get things_path(format: :json), + sort: instructions + end end ApplicationRecord::SORTABLE_TYPES.each do |type| diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 1d44a2f..8d345bb 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,17 +1,8 @@ # frozen_string_literal: true - -require 'simplecov_helper' -require 'database_cleaner_helper' -require 'inspect_failure_helper' +$VERBOSE = nil require 'bundler' -require 'combustion' -Combustion.initialize! :active_record, :action_controller, :action_view do - if ActiveRecord::VERSION::MAJOR < 6 && - config.active_record.sqlite3.respond_to?(:represent_boolean_as_integer) - config.active_record.sqlite3.represent_boolean_as_integer = true - end -end +require 'support/initializers/combustion' Bundler.require :default, :development require 'bundler/setup' @@ -22,9 +13,26 @@ require 'rspec/rails' require 'database_cleaner' require 'capybara/rspec' +require 'gemika' + +database = Gemika::Database.new(config_folder: 'spec/internal/config') +database.connect Dir[File.expand_path('support/**/*.rb', __dir__)].each { |f| require f } +deprecation_warnings_to_silence = [ + /attempted to assign a value which is not explicitly `true` or `false`/, + /`#column_for_attribute` will return a null object for non-existent columns in Rails 5. Use `#has_attribute?/, + /warning: BigDecimal.new is deprecated; use BigDecimal() method instead./, + /rb_check_safe_obj will be removed in Ruby 3.0/, + /Capturing the given block using Proc.new is deprecated/, +] +ActiveSupport::Deprecation.behavior = lambda do |message, callstack| + unless message =~ Regexp.new(deprecation_warnings_to_silence.join('|')) + ActiveSupport::Deprecation::DEFAULT_BEHAVIORS[:stderr].call(message, callstack) + end +end + RSpec.configure do |config| include PathHelpers include FilteringHelpers diff --git a/spec/support/factory_helpers.rb b/spec/support/helpers/factory_helpers.rb similarity index 64% rename from spec/support/factory_helpers.rb rename to spec/support/helpers/factory_helpers.rb index ade02d1..c6fa3d1 100644 --- a/spec/support/factory_helpers.rb +++ b/spec/support/helpers/factory_helpers.rb @@ -13,18 +13,23 @@ def guaranteed_unique_attributes_for(obj) {}.tap do |h| h[:binary] = guaranteed_unique_string_for(obj.binary) h[:boolean] = !obj.boolean - h[:date] = obj.date.next_day - h[:datetime] = obj.datetime.next_day + h[:date] = obj.date.to_date.next_day + h[:datetime] = obj.datetime.to_datetime.next_day h[:decimal] = obj.decimal + 1 h[:float] = obj.float + 1 h[:integer] = obj.integer + 1 h[:string] = guaranteed_unique_string_for(obj.string) h[:text] = obj.text.split.map { |w| guaranteed_unique_string_for(w) }.join(' ') - h[:time] = obj.time.advance(hours: 1) + h[:time] = obj.time.to_time.advance(hours: 1) end end def guaranteed_unique_string_for(string) - string.codepoints.map(&:next).pack('U*') + # 'z' and 'Z' will transform into '{' and '[', + # which did occasionally cause problems with the tests + string # 'qwerty' + .codepoints # [113, 119, 101, 114, 116, 121] + .map(&:next) # [114, 120, 102, 115, 117, 122] + .pack('U*') # 'rxfsuz' end end diff --git a/spec/support/filtering_helpers.rb b/spec/support/helpers/filtering_helpers.rb similarity index 97% rename from spec/support/filtering_helpers.rb rename to spec/support/helpers/filtering_helpers.rb index 375cd1d..5dc093d 100644 --- a/spec/support/filtering_helpers.rb +++ b/spec/support/helpers/filtering_helpers.rb @@ -82,7 +82,7 @@ def filter_value_for(object:, path:) path = path.remove('_item_method') path = path.remove('_nil_method') - value = value_for(object: object, path: path) + value = attr_value_for(object: object, path: path) return value&.upcase if path.end_with? '/i/' value diff --git a/spec/support/path_helpers.rb b/spec/support/helpers/path_helpers.rb similarity index 79% rename from spec/support/path_helpers.rb rename to spec/support/helpers/path_helpers.rb index efd36cd..31cebae 100644 --- a/spec/support/path_helpers.rb +++ b/spec/support/helpers/path_helpers.rb @@ -38,7 +38,14 @@ def all_possible_path_combinations_for(type_1, type_2) relevant_paths_for_testing_given_environment(paths_for_test) end - def value_for(object:, path:) + def attr_value_for(object:, path:) + # MySQL :float columns are truncated after a precision of 6. + # This means the Ruby in-memory value and the value returned from + # the database will be out-of-sync for values >= 10000.00 + if path.include?('computed_') || path.downcase.include?('match') + object.reload if object.respond_to?(:reload) + end + ActiveSet::AttributeInstruction.new(path, nil).value_for(item: object) end end diff --git a/spec/support/sorting_helpers.rb b/spec/support/helpers/sorting_helpers.rb similarity index 94% rename from spec/support/sorting_helpers.rb rename to spec/support/helpers/sorting_helpers.rb index 49c57af..420b0d4 100644 --- a/spec/support/sorting_helpers.rb +++ b/spec/support/helpers/sorting_helpers.rb @@ -22,7 +22,7 @@ def all_possible_sort_instruction_combinations_for(type_1, type_2) end def sort_value_for(object:, path:) - value = value_for(object: object, path: path) + value = attr_value_for(object: object, path: path) return value.to_s if [true, false].include? value return value&.upcase if path.end_with? '/i/' diff --git a/spec/support/initializers/combustion.rb b/spec/support/initializers/combustion.rb new file mode 100644 index 0000000..6a15baf --- /dev/null +++ b/spec/support/initializers/combustion.rb @@ -0,0 +1,36 @@ +# frozen_string_literal: true + +require 'gemika' +require 'combustion' + +class Combustion::Database::Reset + def call + configuration = resettable_db_configs[Rails.env] + adapter = configuration['adapter'] || + configuration['url'].split('://').first + + operator_class(adapter).new(configuration).reset + end +end + +Combustion.initialize! :active_record, :action_controller, :action_view do + Rails.env = if Gemika::Env.gem? 'pg' + 'postgresql' + elsif Gemika::Env.gem? 'mysql2' + 'mysql' + else + 'sqlite' + end + + if ActiveRecord::VERSION::MAJOR < 6 && + config.active_record.sqlite3.respond_to?(:represent_boolean_as_integer) + config.active_record.sqlite3.represent_boolean_as_integer = true + end + + if ActiveRecord::VERSION::MAJOR <= 4 && Gemika::Env.gem?('pg') + # pg 1.0 gem has removed these constants, but 4.2 ActiveRecord still expects them + PGconn = PG::Connection + PGresult = PG::Result + PGError = PG::Error + end +end diff --git a/spec/database_cleaner_helper.rb b/spec/support/initializers/database_cleaner.rb similarity index 100% rename from spec/database_cleaner_helper.rb rename to spec/support/initializers/database_cleaner.rb diff --git a/spec/inspect_failure_helper.rb b/spec/support/initializers/inspect_failure.rb similarity index 76% rename from spec/inspect_failure_helper.rb rename to spec/support/initializers/inspect_failure.rb index c48dc47..4a0b064 100644 --- a/spec/inspect_failure_helper.rb +++ b/spec/support/initializers/inspect_failure.rb @@ -21,8 +21,15 @@ @loaded_fixtures] } .map { |v| - [v, instance_variable_get(v)] + object = instance_variable_get(v) + if object.is_a?(Thing) + [[v, object], [v.to_s + '_only', object.only]] + else + [v, object] + end } + .flatten + .each_slice(2) .to_h # https://www.jvt.me/posts/2019/03/29/pretty-printing-json-ruby/ diff --git a/spec/support/initializers/interrupt_failure.rb b/spec/support/initializers/interrupt_failure.rb new file mode 100644 index 0000000..9cb7308 --- /dev/null +++ b/spec/support/initializers/interrupt_failure.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +if ENV['INTERRUPT_FAILURE'] == 'true' + RSpec.configure do |config| + # http://bensnape.com/2014/08/01/rspec-after-failure-hook/ + config.after(:each) do |example| + next unless example.exception + + byebug + end + end +end diff --git a/spec/simplecov_helper.rb b/spec/support/initializers/simplecov.rb similarity index 100% rename from spec/simplecov_helper.rb rename to spec/support/initializers/simplecov.rb