├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.ci ├── LICENCE.md ├── Manifest.txt ├── README.md ├── Rakefile ├── alf.gemspec ├── alf.noespec ├── fixtures ├── mobile-city │ ├── README.md │ ├── Rakefile │ ├── lib │ │ ├── mobile_city.rb │ │ └── mobile_city │ │ │ ├── viewpoint.rb │ │ │ └── viewpoint │ │ │ ├── contextualized.rb │ │ │ ├── ethics.rb │ │ │ ├── native.rb │ │ │ ├── privacy.rb │ │ │ ├── restore.rb │ │ │ └── user_info.rb │ ├── migrations │ │ └── 20130730085800_create_initial_schema.rb │ ├── mobile-city.db │ ├── seeds │ │ └── base │ │ │ ├── poi_descriptions.rash │ │ │ ├── poi_image_descriptions.rash │ │ │ ├── poi_images.rash │ │ │ ├── poi_owners.rash │ │ │ ├── poi_parents.rash │ │ │ ├── pois.rash │ │ │ └── user_profiles.rash │ └── test │ │ ├── test_helper.rb │ │ ├── test_seeds_constraints.rb │ │ ├── test_sqlite_database_creation.rb │ │ └── viewpoint │ │ ├── contextualized │ │ ├── test_poi_descriptions.rb │ │ ├── test_poi_image_descriptions.rb │ │ ├── test_poi_images.rb │ │ └── test_pois.rb │ │ ├── ethics │ │ └── test_pois.rb │ │ ├── full │ │ ├── test_poi_descriptions.rb │ │ ├── test_poi_image_descriptions.rb │ │ ├── test_poi_images.rb │ │ ├── test_poi_owners.rb │ │ ├── test_poi_parents.rb │ │ ├── test_pois.rb │ │ └── test_user_profiles.rb │ │ ├── privacy │ │ ├── test_pois.rb │ │ └── test_user_profiles.rb │ │ └── user_info │ │ └── test_current_user.rb └── suppliers-and-parts │ ├── lib │ ├── sap.rb │ └── sap │ │ ├── viewpoints.rb │ │ └── viewpoints │ │ ├── native.rb │ │ └── views.rb │ ├── migrations │ └── 20130723164400_create_initial_schema.rb │ ├── seeds │ └── base │ │ ├── cities.rash │ │ ├── parts.rash │ │ ├── suppliers.rash │ │ └── supplies.rash │ └── suppliers-and-parts.db ├── lib ├── alf.rb └── alf │ ├── loader.rb │ └── version.rb ├── spec ├── dd-operators │ └── test_shortcut_operator.rb ├── facade │ ├── test_query.rb │ └── test_tuple.rb ├── io │ ├── suppliers.rash │ └── test_rash_loader.rb ├── key-inference │ ├── queries.yml │ └── test_all.rb ├── migrations │ ├── test_folder_migration.rb │ └── test_sequel_migration.rb ├── operators │ ├── test_image.rb │ ├── ungroup │ │ ├── grouped.json │ │ └── test_on_json_content.rb │ └── unwrap │ │ ├── test_on_json_content.rb │ │ └── wrapped.json ├── optimizer │ ├── project │ │ ├── extend.yml │ │ ├── intersect.yml │ │ ├── join.yml │ │ ├── matching.yml │ │ ├── minus.yml │ │ ├── not_matching.yml │ │ ├── project.yml │ │ ├── rename.yml │ │ ├── sort.yml │ │ └── union.yml │ ├── restrict │ │ ├── clip.yml │ │ ├── compact.yml │ │ ├── generator.yml │ │ ├── intersect.yml │ │ ├── leaf_operand.yml │ │ ├── minus.yml │ │ ├── page.yml │ │ ├── project.yml │ │ ├── sort.yml │ │ └── union.yml │ └── test_all.rb ├── regression │ ├── test_0001.rb │ ├── test_0002.rb │ └── test_0003.rb ├── sql │ ├── helpers.rb │ ├── queries │ │ ├── 01-leaf-operand.yml │ │ ├── 02-clip.yml │ │ ├── 03-sort.yml │ │ ├── 04-frame.yml │ │ ├── 05-intersect.yml │ │ ├── 06-join.yml │ │ ├── 07-matching.yml │ │ ├── 08-minus.yml │ │ ├── 09-not-matching.yml │ │ ├── 10-page.yml │ │ ├── 11-project.yml │ │ ├── 12-rename.yml │ │ ├── 13-restrict.yml │ │ ├── 15-union.yml │ │ ├── 16-wrap.yml │ │ └── 91-reuse.yml │ ├── test_sequel_compiler.rb │ └── test_sql_compiler.rb ├── test_alf.rb ├── test_helpers.rb └── typing │ └── test_typing_on_coerce.rb └── tasks ├── doc.rake ├── fixtures.rake ├── gem.rake ├── mod.rake ├── release.rake └── test.rake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/Gemfile.ci -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/LICENCE.md -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/Manifest.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/Rakefile -------------------------------------------------------------------------------- /alf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/alf.gemspec -------------------------------------------------------------------------------- /alf.noespec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/alf.noespec -------------------------------------------------------------------------------- /fixtures/mobile-city/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/README.md -------------------------------------------------------------------------------- /fixtures/mobile-city/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/Rakefile -------------------------------------------------------------------------------- /fixtures/mobile-city/lib/mobile_city.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/lib/mobile_city.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/lib/mobile_city/viewpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/lib/mobile_city/viewpoint.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/lib/mobile_city/viewpoint/contextualized.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/lib/mobile_city/viewpoint/contextualized.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/lib/mobile_city/viewpoint/ethics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/lib/mobile_city/viewpoint/ethics.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/lib/mobile_city/viewpoint/native.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/lib/mobile_city/viewpoint/native.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/lib/mobile_city/viewpoint/privacy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/lib/mobile_city/viewpoint/privacy.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/lib/mobile_city/viewpoint/restore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/lib/mobile_city/viewpoint/restore.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/lib/mobile_city/viewpoint/user_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/lib/mobile_city/viewpoint/user_info.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/migrations/20130730085800_create_initial_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/migrations/20130730085800_create_initial_schema.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/mobile-city.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/mobile-city.db -------------------------------------------------------------------------------- /fixtures/mobile-city/seeds/base/poi_descriptions.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/seeds/base/poi_descriptions.rash -------------------------------------------------------------------------------- /fixtures/mobile-city/seeds/base/poi_image_descriptions.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/seeds/base/poi_image_descriptions.rash -------------------------------------------------------------------------------- /fixtures/mobile-city/seeds/base/poi_images.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/seeds/base/poi_images.rash -------------------------------------------------------------------------------- /fixtures/mobile-city/seeds/base/poi_owners.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/seeds/base/poi_owners.rash -------------------------------------------------------------------------------- /fixtures/mobile-city/seeds/base/poi_parents.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/seeds/base/poi_parents.rash -------------------------------------------------------------------------------- /fixtures/mobile-city/seeds/base/pois.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/seeds/base/pois.rash -------------------------------------------------------------------------------- /fixtures/mobile-city/seeds/base/user_profiles.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/seeds/base/user_profiles.rash -------------------------------------------------------------------------------- /fixtures/mobile-city/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/test_helper.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/test_seeds_constraints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/test_seeds_constraints.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/test_sqlite_database_creation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/test_sqlite_database_creation.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/contextualized/test_poi_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/contextualized/test_poi_descriptions.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/contextualized/test_poi_image_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/contextualized/test_poi_image_descriptions.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/contextualized/test_poi_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/contextualized/test_poi_images.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/contextualized/test_pois.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/contextualized/test_pois.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/ethics/test_pois.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/ethics/test_pois.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/full/test_poi_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/full/test_poi_descriptions.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/full/test_poi_image_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/full/test_poi_image_descriptions.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/full/test_poi_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/full/test_poi_images.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/full/test_poi_owners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/full/test_poi_owners.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/full/test_poi_parents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/full/test_poi_parents.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/full/test_pois.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/full/test_pois.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/full/test_user_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/full/test_user_profiles.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/privacy/test_pois.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/privacy/test_pois.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/privacy/test_user_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/privacy/test_user_profiles.rb -------------------------------------------------------------------------------- /fixtures/mobile-city/test/viewpoint/user_info/test_current_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/mobile-city/test/viewpoint/user_info/test_current_user.rb -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/lib/sap.rb: -------------------------------------------------------------------------------- 1 | require_relative 'sap/viewpoints' 2 | -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/lib/sap/viewpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/lib/sap/viewpoints.rb -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/lib/sap/viewpoints/native.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/lib/sap/viewpoints/native.rb -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/lib/sap/viewpoints/views.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/lib/sap/viewpoints/views.rb -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/migrations/20130723164400_create_initial_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/migrations/20130723164400_create_initial_schema.rb -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/seeds/base/cities.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/seeds/base/cities.rash -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/seeds/base/parts.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/seeds/base/parts.rash -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/seeds/base/suppliers.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/seeds/base/suppliers.rash -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/seeds/base/supplies.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/seeds/base/supplies.rash -------------------------------------------------------------------------------- /fixtures/suppliers-and-parts/suppliers-and-parts.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/fixtures/suppliers-and-parts/suppliers-and-parts.db -------------------------------------------------------------------------------- /lib/alf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/lib/alf.rb -------------------------------------------------------------------------------- /lib/alf/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/lib/alf/loader.rb -------------------------------------------------------------------------------- /lib/alf/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/lib/alf/version.rb -------------------------------------------------------------------------------- /spec/dd-operators/test_shortcut_operator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/dd-operators/test_shortcut_operator.rb -------------------------------------------------------------------------------- /spec/facade/test_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/facade/test_query.rb -------------------------------------------------------------------------------- /spec/facade/test_tuple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/facade/test_tuple.rb -------------------------------------------------------------------------------- /spec/io/suppliers.rash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/io/suppliers.rash -------------------------------------------------------------------------------- /spec/io/test_rash_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/io/test_rash_loader.rb -------------------------------------------------------------------------------- /spec/key-inference/queries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/key-inference/queries.yml -------------------------------------------------------------------------------- /spec/key-inference/test_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/key-inference/test_all.rb -------------------------------------------------------------------------------- /spec/migrations/test_folder_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/migrations/test_folder_migration.rb -------------------------------------------------------------------------------- /spec/migrations/test_sequel_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/migrations/test_sequel_migration.rb -------------------------------------------------------------------------------- /spec/operators/test_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/operators/test_image.rb -------------------------------------------------------------------------------- /spec/operators/ungroup/grouped.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "suppliers": [ {"sid": "S1"} ] 3 | }] -------------------------------------------------------------------------------- /spec/operators/ungroup/test_on_json_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/operators/ungroup/test_on_json_content.rb -------------------------------------------------------------------------------- /spec/operators/unwrap/test_on_json_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/operators/unwrap/test_on_json_content.rb -------------------------------------------------------------------------------- /spec/operators/unwrap/wrapped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/operators/unwrap/wrapped.json -------------------------------------------------------------------------------- /spec/optimizer/project/extend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/extend.yml -------------------------------------------------------------------------------- /spec/optimizer/project/intersect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/intersect.yml -------------------------------------------------------------------------------- /spec/optimizer/project/join.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/join.yml -------------------------------------------------------------------------------- /spec/optimizer/project/matching.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/matching.yml -------------------------------------------------------------------------------- /spec/optimizer/project/minus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/minus.yml -------------------------------------------------------------------------------- /spec/optimizer/project/not_matching.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/not_matching.yml -------------------------------------------------------------------------------- /spec/optimizer/project/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/project.yml -------------------------------------------------------------------------------- /spec/optimizer/project/rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/rename.yml -------------------------------------------------------------------------------- /spec/optimizer/project/sort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/sort.yml -------------------------------------------------------------------------------- /spec/optimizer/project/union.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/project/union.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/clip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/clip.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/compact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/compact.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/generator.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/intersect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/intersect.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/leaf_operand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/leaf_operand.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/minus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/minus.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/page.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/project.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/sort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/sort.yml -------------------------------------------------------------------------------- /spec/optimizer/restrict/union.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/restrict/union.yml -------------------------------------------------------------------------------- /spec/optimizer/test_all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/optimizer/test_all.rb -------------------------------------------------------------------------------- /spec/regression/test_0001.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/regression/test_0001.rb -------------------------------------------------------------------------------- /spec/regression/test_0002.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/regression/test_0002.rb -------------------------------------------------------------------------------- /spec/regression/test_0003.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/regression/test_0003.rb -------------------------------------------------------------------------------- /spec/sql/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/helpers.rb -------------------------------------------------------------------------------- /spec/sql/queries/01-leaf-operand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/01-leaf-operand.yml -------------------------------------------------------------------------------- /spec/sql/queries/02-clip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/02-clip.yml -------------------------------------------------------------------------------- /spec/sql/queries/03-sort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/03-sort.yml -------------------------------------------------------------------------------- /spec/sql/queries/04-frame.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/04-frame.yml -------------------------------------------------------------------------------- /spec/sql/queries/05-intersect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/05-intersect.yml -------------------------------------------------------------------------------- /spec/sql/queries/06-join.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/06-join.yml -------------------------------------------------------------------------------- /spec/sql/queries/07-matching.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/07-matching.yml -------------------------------------------------------------------------------- /spec/sql/queries/08-minus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/08-minus.yml -------------------------------------------------------------------------------- /spec/sql/queries/09-not-matching.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/09-not-matching.yml -------------------------------------------------------------------------------- /spec/sql/queries/10-page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/10-page.yml -------------------------------------------------------------------------------- /spec/sql/queries/11-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/11-project.yml -------------------------------------------------------------------------------- /spec/sql/queries/12-rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/12-rename.yml -------------------------------------------------------------------------------- /spec/sql/queries/13-restrict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/13-restrict.yml -------------------------------------------------------------------------------- /spec/sql/queries/15-union.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/15-union.yml -------------------------------------------------------------------------------- /spec/sql/queries/16-wrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/16-wrap.yml -------------------------------------------------------------------------------- /spec/sql/queries/91-reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/queries/91-reuse.yml -------------------------------------------------------------------------------- /spec/sql/test_sequel_compiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/test_sequel_compiler.rb -------------------------------------------------------------------------------- /spec/sql/test_sql_compiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/sql/test_sql_compiler.rb -------------------------------------------------------------------------------- /spec/test_alf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/test_alf.rb -------------------------------------------------------------------------------- /spec/test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/test_helpers.rb -------------------------------------------------------------------------------- /spec/typing/test_typing_on_coerce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/spec/typing/test_typing_on_coerce.rb -------------------------------------------------------------------------------- /tasks/doc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/tasks/doc.rake -------------------------------------------------------------------------------- /tasks/fixtures.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/tasks/fixtures.rake -------------------------------------------------------------------------------- /tasks/gem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/tasks/gem.rake -------------------------------------------------------------------------------- /tasks/mod.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/tasks/mod.rake -------------------------------------------------------------------------------- /tasks/release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/tasks/release.rake -------------------------------------------------------------------------------- /tasks/test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alf-tool/alf/HEAD/tasks/test.rake --------------------------------------------------------------------------------