├── .github ├── ISSUE_TEMPLATE │ ├── design-template.md │ ├── feature-request-template.md │ └── issue-template.md └── pull_request_template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.txt ├── README.md ├── ROADMAP.md ├── SECURITY.md ├── azure-pipelines.yml ├── ci ├── linux_test.yml └── windows_test.yml ├── dev ├── .gitconfig └── .scalafmt.conf ├── docs ├── Gemfile ├── _config.dev.yml ├── _config.yml ├── _data │ └── navigation.yml ├── _docs │ ├── 01-ug-quick-start-guide.md │ ├── 02-ug-configuration.md │ ├── 03-ug-mutable-dataset.md │ ├── 04-ug-faqs.md │ ├── 05-ug-optimize.md │ ├── 06-dg-building-from-source.md │ ├── 07-dg-code-structure.md │ ├── 08-ug-supported-data-formats.md │ ├── 10-toh-introduction.md │ ├── 11-toh-design-goals.md │ ├── 12-toh-indexes.md │ ├── 13-toh-overview.md │ └── 14-toh-indexes-on-the-lake.md ├── _includes │ ├── feature_row_small │ └── footer.html ├── _layouts │ └── default.html ├── _pages │ ├── 404.md │ └── home.md ├── assets │ ├── css │ │ └── main.scss │ └── images │ │ ├── contrast-code-block.jpg │ │ ├── default-code-block.jpg │ │ ├── hyperspace-architectural-overview.png │ │ ├── hyperspace-banner.jpg │ │ ├── hyperspace-overview-multi.png │ │ ├── hyperspace-overview-simple.png │ │ ├── hyperspace-overview-works.png │ │ ├── hyperspace-roadmap.png │ │ ├── hyperspace-small-banner.png │ │ ├── project_structure.png │ │ └── scalafmt_settings.png ├── coding-guidelines │ └── scala-coding-style.md └── img │ ├── ubuntu-icon-32.png │ └── windows-icon-32.png ├── examples ├── csharp │ ├── .gitignore │ └── HyperspaceApp │ │ ├── HyperspaceApp.csproj │ │ └── Program.cs └── scala │ ├── build.sbt │ └── src │ └── main │ └── scala │ └── App.scala ├── notebooks ├── csharp │ └── Hitchhikers Guide to Hyperspace.ipynb ├── python │ └── Hitchhikers Guide to Hyperspace.ipynb └── scala │ ├── Hitchhikers Guide to Hyperspace.ipynb │ └── Hyperspace for Delta Lake.ipynb ├── project ├── Dependencies.scala ├── Version.scala ├── build.properties └── plugins.sbt ├── python ├── .gitignore ├── hyperspace │ ├── __init__.py │ ├── hyperspace.py │ ├── indexconfig.py │ ├── testing │ │ ├── __init__.py │ │ └── utils.py │ └── tests │ │ ├── __init__.py │ │ ├── test_indexmanagement.py │ │ └── test_indexutilization.py └── run-tests.py ├── run-tests.py ├── scalastyle-config.xml ├── script └── download_spark.sh ├── spark2.4 └── src ├── spark3.0 └── src ├── spark3.1 └── src ├── src ├── main │ ├── scala-spark2 │ │ ├── com │ │ │ └── microsoft │ │ │ │ └── hyperspace │ │ │ │ ├── index │ │ │ │ └── sources │ │ │ │ │ ├── delta │ │ │ │ │ └── DeltaLakeShims.scala │ │ │ │ │ └── iceberg │ │ │ │ │ └── IcebergShims.scala │ │ │ │ └── shim │ │ │ │ ├── FirstNullSafe.scala │ │ │ │ ├── RepartitionByExpression.scala │ │ │ │ └── package.scala │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── hyperspace │ │ │ └── shim │ │ │ └── SparkPlannerShim.scala │ ├── scala-spark3.0 │ │ ├── com │ │ │ └── microsoft │ │ │ │ └── hyperspace │ │ │ │ ├── index │ │ │ │ └── sources │ │ │ │ │ └── iceberg │ │ │ │ │ └── IcebergShims.scala │ │ │ │ └── shim │ │ │ │ └── RepartitionByExpression.scala │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── hyperspace │ │ │ └── shim │ │ │ └── SparkPlannerShim.scala │ ├── scala-spark3.1 │ │ ├── com │ │ │ └── microsoft │ │ │ │ └── hyperspace │ │ │ │ ├── index │ │ │ │ └── sources │ │ │ │ │ └── iceberg │ │ │ │ │ └── IcebergShims.scala │ │ │ │ └── shim │ │ │ │ └── package.scala │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── sql │ │ │ └── hyperspace │ │ │ └── shim │ │ │ └── SparkPlannerShim.scala │ ├── scala-spark3 │ │ └── com │ │ │ └── microsoft │ │ │ └── hyperspace │ │ │ ├── index │ │ │ └── sources │ │ │ │ └── delta │ │ │ │ └── DeltaLakeShims.scala │ │ │ └── shim │ │ │ ├── FirstNullSafe.scala │ │ │ ├── JoinWithoutHint.scala │ │ │ └── SQLExecution.scala │ └── scala │ │ ├── com │ │ ├── fasterxml │ │ │ └── jackson │ │ │ │ └── hyperspace │ │ │ │ └── module │ │ │ │ └── scala │ │ │ │ └── ScalaObjectMapper.scala │ │ └── microsoft │ │ │ └── hyperspace │ │ │ ├── ActiveSparkSession.scala │ │ │ ├── Hyperspace.scala │ │ │ ├── HyperspaceException.scala │ │ │ ├── HyperspaceSparkSessionExtension.scala │ │ │ ├── actions │ │ │ ├── Action.scala │ │ │ ├── CancelAction.scala │ │ │ ├── Constants.scala │ │ │ ├── CreateAction.scala │ │ │ ├── CreateActionBase.scala │ │ │ ├── DeleteAction.scala │ │ │ ├── NoChangesException.scala │ │ │ ├── OptimizeAction.scala │ │ │ ├── RefreshAction.scala │ │ │ ├── RefreshActionBase.scala │ │ │ ├── RefreshIncrementalAction.scala │ │ │ ├── RefreshQuickAction.scala │ │ │ ├── RestoreAction.scala │ │ │ ├── VacuumAction.scala │ │ │ └── VacuumOutdatedAction.scala │ │ │ ├── index │ │ │ ├── Cache.scala │ │ │ ├── CachingIndexCollectionManager.scala │ │ │ ├── DataFrameWriterExtensions.scala │ │ │ ├── FileBasedSignatureProvider.scala │ │ │ ├── Index.scala │ │ │ ├── IndexCacheFactory.scala │ │ │ ├── IndexCollectionManager.scala │ │ │ ├── IndexConfigTrait.scala │ │ │ ├── IndexConstants.scala │ │ │ ├── IndexDataManager.scala │ │ │ ├── IndexLogEntry.scala │ │ │ ├── IndexLogEntryTags.scala │ │ │ ├── IndexLogManager.scala │ │ │ ├── IndexManager.scala │ │ │ ├── IndexSignatureProvider.scala │ │ │ ├── IndexStatistics.scala │ │ │ ├── IndexUtils.scala │ │ │ ├── IndexerContext.scala │ │ │ ├── LogEntry.scala │ │ │ ├── LogicalPlanSignatureProvider.scala │ │ │ ├── PathResolver.scala │ │ │ ├── PlanSignatureProvider.scala │ │ │ ├── RelationUtils.scala │ │ │ ├── covering │ │ │ │ ├── CoveringIndex.scala │ │ │ │ ├── CoveringIndexConfig.scala │ │ │ │ ├── CoveringIndexConfigTrait.scala │ │ │ │ ├── CoveringIndexRuleUtils.scala │ │ │ │ ├── CoveringIndexTrait.scala │ │ │ │ ├── FilterIndexRanker.scala │ │ │ │ ├── FilterIndexRule.scala │ │ │ │ ├── JoinIndexRanker.scala │ │ │ │ └── JoinIndexRule.scala │ │ │ ├── dataskipping │ │ │ │ ├── DataSkippingIndex.scala │ │ │ │ ├── DataSkippingIndexConfig.scala │ │ │ │ ├── execution │ │ │ │ │ └── DataSkippingFileIndex.scala │ │ │ │ ├── expressions │ │ │ │ │ ├── AttrValueExtractor.scala │ │ │ │ │ ├── BloomFilterAgg.scala │ │ │ │ │ ├── BloomFilterEncoder.scala │ │ │ │ │ ├── BloomFilterEncoderProvider.scala │ │ │ │ │ ├── BloomFilterMightContain.scala │ │ │ │ │ ├── BloomFilterMightContainAny.scala │ │ │ │ │ ├── BloomFilterUtils.scala │ │ │ │ │ ├── ExpressionExtractor.scala │ │ │ │ │ ├── ExpressionUtils.scala │ │ │ │ │ ├── FastBloomFilterEncoder.scala │ │ │ │ │ ├── NormalizedExprExtractor.scala │ │ │ │ │ ├── SortedArrayLowerBound.scala │ │ │ │ │ ├── SortedArrayUtils.scala │ │ │ │ │ ├── StreamBloomFilterEncoder.scala │ │ │ │ │ └── extractors.scala │ │ │ │ ├── rules │ │ │ │ │ ├── ApplyDataSkippingIndex.scala │ │ │ │ │ ├── DataSkippingIndexRanker.scala │ │ │ │ │ ├── FilterConditionFilter.scala │ │ │ │ │ └── FilterPlanNodeFilter.scala │ │ │ │ ├── sketches │ │ │ │ │ ├── BloomFilterSketch.scala │ │ │ │ │ ├── MinMaxSketch.scala │ │ │ │ │ ├── PartitionSketch.scala │ │ │ │ │ ├── SingleExprSketch.scala │ │ │ │ │ └── Sketch.scala │ │ │ │ └── util │ │ │ │ │ ├── ArrayUtils.scala │ │ │ │ │ ├── DataFrameUtils.scala │ │ │ │ │ └── ReflectionHelper.scala │ │ │ ├── execution │ │ │ │ ├── BucketUnionExec.scala │ │ │ │ └── BucketUnionStrategy.scala │ │ │ ├── factories.scala │ │ │ ├── package.scala │ │ │ ├── plananalysis │ │ │ │ ├── BufferStream.scala │ │ │ │ ├── CandidateIndexAnalyzer.scala │ │ │ │ ├── DisplayMode.scala │ │ │ │ ├── FilterReason.scala │ │ │ │ ├── PhysicalOperatorAnalyzer.scala │ │ │ │ └── PlanAnalyzer.scala │ │ │ ├── plans │ │ │ │ └── logical │ │ │ │ │ ├── BucketUnion.scala │ │ │ │ │ └── IndexHadoopFsRelation.scala │ │ │ ├── rules │ │ │ │ ├── ApplyHyperspace.scala │ │ │ │ ├── CandidateIndexCollector.scala │ │ │ │ ├── ColumnSchemaFilter.scala │ │ │ │ ├── ExtractRelation.scala │ │ │ │ ├── FileSignatureFilter.scala │ │ │ │ ├── HyperspaceRule.scala │ │ │ │ ├── IndexFilter.scala │ │ │ │ ├── IndexRankFilter.scala │ │ │ │ ├── IndexTypeFilter.scala │ │ │ │ ├── NoOpRule.scala │ │ │ │ ├── QueryPlanIndexFilter.scala │ │ │ │ ├── RuleUtils.scala │ │ │ │ ├── ScoreBasedIndexPlanOptimizer.scala │ │ │ │ └── SourcePlanIndexFilter.scala │ │ │ ├── sources │ │ │ │ ├── FileBasedSourceProviderManager.scala │ │ │ │ ├── default │ │ │ │ │ ├── DefaultFileBasedRelation.scala │ │ │ │ │ ├── DefaultFileBasedRelationMetadata.scala │ │ │ │ │ └── DefaultFileBasedSource.scala │ │ │ │ ├── delta │ │ │ │ │ ├── DeltaLakeFileBasedSource.scala │ │ │ │ │ ├── DeltaLakeRelation.scala │ │ │ │ │ └── DeltaLakeRelationMetadata.scala │ │ │ │ ├── iceberg │ │ │ │ │ ├── IcebergFileBasedSource.scala │ │ │ │ │ ├── IcebergRelation.scala │ │ │ │ │ └── IcebergRelationMetadata.scala │ │ │ │ └── interfaces.scala │ │ │ └── zordercovering │ │ │ │ ├── ZOrderCoveringIndex.scala │ │ │ │ ├── ZOrderCoveringIndexConfig.scala │ │ │ │ ├── ZOrderField.scala │ │ │ │ ├── ZOrderFilterIndexRule.scala │ │ │ │ └── ZOrderUDF.scala │ │ │ ├── package.scala │ │ │ ├── shim │ │ │ ├── FileSourceScanExec.scala │ │ │ └── Union.scala │ │ │ ├── telemetry │ │ │ ├── Constants.scala │ │ │ ├── HyperspaceEvent.scala │ │ │ └── HyperspaceEventLogging.scala │ │ │ └── util │ │ │ ├── CacheWithTransform.scala │ │ │ ├── FileUtils.scala │ │ │ ├── HashingUtils.scala │ │ │ ├── HyperspaceConf.scala │ │ │ ├── JavaConverters.scala │ │ │ ├── JsonUtils.scala │ │ │ ├── MinMaxAnalysisUtil.scala │ │ │ ├── PathUtils.scala │ │ │ ├── PythonUtils.scala │ │ │ └── ResolverUtils.scala │ │ └── org │ │ └── apache │ │ └── spark │ │ ├── deploy │ │ └── hyperspace │ │ │ └── SparkHadoopUtil.scala │ │ ├── sql │ │ └── hyperspace │ │ │ └── utils │ │ │ └── package.scala │ │ └── util │ │ └── hyperspace │ │ └── Utils.scala └── test │ ├── resources │ ├── expected │ │ ├── spark-2.4 │ │ │ ├── filter.txt │ │ │ ├── selfJoin.txt │ │ │ ├── selfJoin_Iceberg.txt │ │ │ ├── subquery.txt │ │ │ ├── whyNot_allIndex.txt │ │ │ └── whyNot_indexName.txt │ │ ├── spark-3.0 │ │ │ ├── filter.txt │ │ │ ├── selfJoin.txt │ │ │ ├── selfJoin_Iceberg.txt │ │ │ ├── subquery.txt │ │ │ ├── whyNot_allIndex.txt │ │ │ └── whyNot_indexName.txt │ │ └── spark-3.1 │ │ │ ├── filter.txt │ │ │ ├── selfJoin.txt │ │ │ ├── selfJoin_Iceberg.txt │ │ │ ├── subquery.txt │ │ │ ├── whyNot_allIndex.txt │ │ │ └── whyNot_indexName.txt │ └── tpcds │ │ ├── queries │ │ ├── q1.sql │ │ ├── q10.sql │ │ ├── q11.sql │ │ ├── q12.sql │ │ ├── q13.sql │ │ ├── q14a.sql │ │ ├── q14b.sql │ │ ├── q15.sql │ │ ├── q16.sql │ │ ├── q17.sql │ │ ├── q18.sql │ │ ├── q19.sql │ │ ├── q2.sql │ │ ├── q20.sql │ │ ├── q21.sql │ │ ├── q22.sql │ │ ├── q23a.sql │ │ ├── q23b.sql │ │ ├── q24a.sql │ │ ├── q24b.sql │ │ ├── q25.sql │ │ ├── q26.sql │ │ ├── q27.sql │ │ ├── q28.sql │ │ ├── q29.sql │ │ ├── q3.sql │ │ ├── q30.sql │ │ ├── q31.sql │ │ ├── q32.sql │ │ ├── q33.sql │ │ ├── q34.sql │ │ ├── q35.sql │ │ ├── q36.sql │ │ ├── q37.sql │ │ ├── q38.sql │ │ ├── q39a.sql │ │ ├── q39b.sql │ │ ├── q4.sql │ │ ├── q40.sql │ │ ├── q41.sql │ │ ├── q42.sql │ │ ├── q43.sql │ │ ├── q44.sql │ │ ├── q45.sql │ │ ├── q46.sql │ │ ├── q47.sql │ │ ├── q48.sql │ │ ├── q49.sql │ │ ├── q5.sql │ │ ├── q50.sql │ │ ├── q51.sql │ │ ├── q52.sql │ │ ├── q53.sql │ │ ├── q54.sql │ │ ├── q55.sql │ │ ├── q56.sql │ │ ├── q57.sql │ │ ├── q58.sql │ │ ├── q59.sql │ │ ├── q6.sql │ │ ├── q60.sql │ │ ├── q61.sql │ │ ├── q62.sql │ │ ├── q63.sql │ │ ├── q64.sql │ │ ├── q65.sql │ │ ├── q66.sql │ │ ├── q67.sql │ │ ├── q68.sql │ │ ├── q69.sql │ │ ├── q7.sql │ │ ├── q70.sql │ │ ├── q71.sql │ │ ├── q72.sql │ │ ├── q73.sql │ │ ├── q74.sql │ │ ├── q75.sql │ │ ├── q76.sql │ │ ├── q77.sql │ │ ├── q78.sql │ │ ├── q79.sql │ │ ├── q8.sql │ │ ├── q80.sql │ │ ├── q81.sql │ │ ├── q82.sql │ │ ├── q83.sql │ │ ├── q84.sql │ │ ├── q85.sql │ │ ├── q86.sql │ │ ├── q87.sql │ │ ├── q88.sql │ │ ├── q89.sql │ │ ├── q9.sql │ │ ├── q90.sql │ │ ├── q91.sql │ │ ├── q92.sql │ │ ├── q93.sql │ │ ├── q94.sql │ │ ├── q95.sql │ │ ├── q96.sql │ │ ├── q97.sql │ │ ├── q98.sql │ │ └── q99.sql │ │ └── spark-2.4 │ │ └── approved-plans-v1_4 │ │ ├── q1 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q10 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q11 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q12 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q13 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q14a │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q14b │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q15 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q16 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q17 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q18 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q19 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q2 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q20 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q21 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q22 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q23a │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q23b │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q24a │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q24b │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q25 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q26 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q27 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q28 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q29 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q3 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q30 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q31 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q32 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q33 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q34 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q35 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q36 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q37 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q38 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q39a │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q39b │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q4 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q40 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q41 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q42 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q43 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q44 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q45 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q46 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q47 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q48 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q49 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q5 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q50 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q51 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q52 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q53 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q54 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q55 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q56 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q57 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q58 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q59 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q6 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q60 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q61 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q62 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q63 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q64 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q65 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q66 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q67 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q68 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q69 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q7 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q70 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q71 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q72 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q73 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q74 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q75 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q76 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q77 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q78 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q79 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q8 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q80 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q81 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q82 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q83 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q84 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q85 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q86 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q87 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q88 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q89 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q9 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q90 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q91 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q92 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q93 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q94 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q95 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q96 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q97 │ │ ├── explain.txt │ │ └── simplified.txt │ │ ├── q98 │ │ ├── explain.txt │ │ └── simplified.txt │ │ └── q99 │ │ ├── explain.txt │ │ └── simplified.txt │ ├── scala-spark2 │ └── com │ │ └── microsoft │ │ └── hyperspace │ │ └── util │ │ └── SparkTestShims.scala │ ├── scala-spark3 │ └── com │ │ └── microsoft │ │ └── hyperspace │ │ └── util │ │ └── SparkTestShims.scala │ └── scala │ └── com │ └── microsoft │ └── hyperspace │ ├── HyperspaceConfTest.scala │ ├── HyperspaceExtensionTest.scala │ ├── HyperspaceTest.scala │ ├── IcebergTestUtils.scala │ ├── SampleData.scala │ ├── SampleNestedData.scala │ ├── SparkInvolvedSuite.scala │ ├── TestUtils.scala │ ├── actions │ ├── ActionTest.scala │ ├── CancelActionTest.scala │ ├── CreateActionTest.scala │ ├── DeleteActionTest.scala │ ├── RefreshActionTest.scala │ ├── RestoreActionTest.scala │ ├── TestLogEntry.scala │ ├── VacuumActionTest.scala │ └── VacuumOutdatedActionTest.scala │ ├── goldstandard │ ├── PlanStabilitySuite.scala │ └── TPCDSBase.scala │ ├── index │ ├── BucketUnionTest.scala │ ├── CreateIndexNestedTest.scala │ ├── CreateIndexTest.scala │ ├── DataFrameWriterExtensionsTest.scala │ ├── DeltaLakeIntegrationTest.scala │ ├── E2EHyperspaceRulesTest.scala │ ├── FileBasedSignatureProviderTest.scala │ ├── FileIdTrackerTest.scala │ ├── HybridScanForDeltaLakeTest.scala │ ├── HybridScanForIcebergTest.scala │ ├── HybridScanForNonPartitionedDataTest.scala │ ├── HybridScanForPartitionedDataTest.scala │ ├── HybridScanSuite.scala │ ├── HyperspaceRuleSuite.scala │ ├── HyperspaceSuite.scala │ ├── IcebergIntegrationTest.scala │ ├── IndexCacheTest.scala │ ├── IndexCollectionManagerTest.scala │ ├── IndexConfigTest.scala │ ├── IndexLogEntryTest.scala │ ├── IndexLogManagerImplTest.scala │ ├── IndexManagerTest.scala │ ├── IndexSignatureProviderTest.scala │ ├── IndexStatisticsTest.scala │ ├── IndexTest.scala │ ├── RefreshIndexNestedTest.scala │ ├── RefreshIndexTest.scala │ ├── RuleTestHelper.scala │ ├── SignatureProviderTestUtils.scala │ ├── covering │ │ ├── CoveringIndexRuleUtilsTest.scala │ │ ├── FilterIndexRankerTest.scala │ │ ├── FilterIndexRuleTest.scala │ │ ├── JoinIndexRankerTest.scala │ │ └── JoinIndexRuleTest.scala │ ├── dataskipping │ │ ├── ArrayTestUtils.scala │ │ ├── BloomFilterTestUtils.scala │ │ ├── DataSkippingIndexConfigTest.scala │ │ ├── DataSkippingIndexIntegrationTest.scala │ │ ├── DataSkippingIndexTest.scala │ │ ├── DataSkippingSuite.scala │ │ ├── execution │ │ │ └── DataSkippingFileIndexTest.scala │ │ ├── expressions │ │ │ ├── BloomFilterAggTest.scala │ │ │ ├── BloomFilterMightContainAnyTest.scala │ │ │ ├── BloomFilterMightContainTest.scala │ │ │ ├── BloomFilterUtilsTest.scala │ │ │ ├── ExpressionUtilsTest.scala │ │ │ ├── ExtractorsTest.scala │ │ │ ├── FastBloomFilterEncoderTest.scala │ │ │ ├── NormalizedExprExtractorTest.scala │ │ │ ├── SortedArrayLowerBoundTest.scala │ │ │ └── StreamBloomFilterEncoderTest.scala │ │ ├── rules │ │ │ ├── ApplyDataSkippingIndexTest.scala │ │ │ ├── FilterConditionFilterTest.scala │ │ │ └── FilterPlanNodeFilterTest.scala │ │ ├── sketches │ │ │ ├── BloomFilterSketchTest.scala │ │ │ ├── MinMaxSketchTest.scala │ │ │ └── PartitionSketchTest.scala │ │ └── util │ │ │ ├── ArrayUtilsTest.scala │ │ │ └── DataFrameUtilsTest.scala │ ├── plananalysis │ │ ├── BufferStreamTest.scala │ │ ├── DisplayModeTest.scala │ │ ├── ExplainTest.scala │ │ └── PhysicalOperatorAnalyzerTest.scala │ ├── rules │ │ ├── CandidateIndexCollectorTest.scala │ │ ├── RuleUtilsTest.scala │ │ └── ScoreBasedIndexPlanOptimizerTest.scala │ └── zordercovering │ │ ├── E2EHyperspaceZOrderIndexTest.scala │ │ ├── ZOrderFieldTest.scala │ │ └── ZOrderUDFTest.scala │ └── util │ ├── HashingUtilsTest.scala │ ├── JsonUtilsTest.scala │ └── ResolverUtilsTest.scala └── version.sbt /.github/ISSUE_TEMPLATE/design-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/.github/ISSUE_TEMPLATE/design-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/.github/ISSUE_TEMPLATE/feature-request-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/.github/ISSUE_TEMPLATE/issue-template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /ci/linux_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/ci/linux_test.yml -------------------------------------------------------------------------------- /ci/windows_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/ci/windows_test.yml -------------------------------------------------------------------------------- /dev/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/dev/.gitconfig -------------------------------------------------------------------------------- /dev/.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/dev/.scalafmt.conf -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_config.dev.yml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_data/navigation.yml -------------------------------------------------------------------------------- /docs/_docs/01-ug-quick-start-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/01-ug-quick-start-guide.md -------------------------------------------------------------------------------- /docs/_docs/02-ug-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/02-ug-configuration.md -------------------------------------------------------------------------------- /docs/_docs/03-ug-mutable-dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/03-ug-mutable-dataset.md -------------------------------------------------------------------------------- /docs/_docs/04-ug-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/04-ug-faqs.md -------------------------------------------------------------------------------- /docs/_docs/05-ug-optimize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/05-ug-optimize.md -------------------------------------------------------------------------------- /docs/_docs/06-dg-building-from-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/06-dg-building-from-source.md -------------------------------------------------------------------------------- /docs/_docs/07-dg-code-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/07-dg-code-structure.md -------------------------------------------------------------------------------- /docs/_docs/08-ug-supported-data-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/08-ug-supported-data-formats.md -------------------------------------------------------------------------------- /docs/_docs/10-toh-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/10-toh-introduction.md -------------------------------------------------------------------------------- /docs/_docs/11-toh-design-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/11-toh-design-goals.md -------------------------------------------------------------------------------- /docs/_docs/12-toh-indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/12-toh-indexes.md -------------------------------------------------------------------------------- /docs/_docs/13-toh-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/13-toh-overview.md -------------------------------------------------------------------------------- /docs/_docs/14-toh-indexes-on-the-lake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_docs/14-toh-indexes-on-the-lake.md -------------------------------------------------------------------------------- /docs/_includes/feature_row_small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_includes/feature_row_small -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_pages/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_pages/404.md -------------------------------------------------------------------------------- /docs/_pages/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/_pages/home.md -------------------------------------------------------------------------------- /docs/assets/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/css/main.scss -------------------------------------------------------------------------------- /docs/assets/images/contrast-code-block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/contrast-code-block.jpg -------------------------------------------------------------------------------- /docs/assets/images/default-code-block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/default-code-block.jpg -------------------------------------------------------------------------------- /docs/assets/images/hyperspace-architectural-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/hyperspace-architectural-overview.png -------------------------------------------------------------------------------- /docs/assets/images/hyperspace-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/hyperspace-banner.jpg -------------------------------------------------------------------------------- /docs/assets/images/hyperspace-overview-multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/hyperspace-overview-multi.png -------------------------------------------------------------------------------- /docs/assets/images/hyperspace-overview-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/hyperspace-overview-simple.png -------------------------------------------------------------------------------- /docs/assets/images/hyperspace-overview-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/hyperspace-overview-works.png -------------------------------------------------------------------------------- /docs/assets/images/hyperspace-roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/hyperspace-roadmap.png -------------------------------------------------------------------------------- /docs/assets/images/hyperspace-small-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/hyperspace-small-banner.png -------------------------------------------------------------------------------- /docs/assets/images/project_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/project_structure.png -------------------------------------------------------------------------------- /docs/assets/images/scalafmt_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/assets/images/scalafmt_settings.png -------------------------------------------------------------------------------- /docs/coding-guidelines/scala-coding-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/coding-guidelines/scala-coding-style.md -------------------------------------------------------------------------------- /docs/img/ubuntu-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/img/ubuntu-icon-32.png -------------------------------------------------------------------------------- /docs/img/windows-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/docs/img/windows-icon-32.png -------------------------------------------------------------------------------- /examples/csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/examples/csharp/.gitignore -------------------------------------------------------------------------------- /examples/csharp/HyperspaceApp/HyperspaceApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/examples/csharp/HyperspaceApp/HyperspaceApp.csproj -------------------------------------------------------------------------------- /examples/csharp/HyperspaceApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/examples/csharp/HyperspaceApp/Program.cs -------------------------------------------------------------------------------- /examples/scala/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/examples/scala/build.sbt -------------------------------------------------------------------------------- /examples/scala/src/main/scala/App.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/examples/scala/src/main/scala/App.scala -------------------------------------------------------------------------------- /notebooks/csharp/Hitchhikers Guide to Hyperspace.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/notebooks/csharp/Hitchhikers Guide to Hyperspace.ipynb -------------------------------------------------------------------------------- /notebooks/python/Hitchhikers Guide to Hyperspace.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/notebooks/python/Hitchhikers Guide to Hyperspace.ipynb -------------------------------------------------------------------------------- /notebooks/scala/Hitchhikers Guide to Hyperspace.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/notebooks/scala/Hitchhikers Guide to Hyperspace.ipynb -------------------------------------------------------------------------------- /notebooks/scala/Hyperspace for Delta Lake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/notebooks/scala/Hyperspace for Delta Lake.ipynb -------------------------------------------------------------------------------- /project/Dependencies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/project/Dependencies.scala -------------------------------------------------------------------------------- /project/Version.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/project/Version.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/project/build.properties -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/python/.gitignore -------------------------------------------------------------------------------- /python/hyperspace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/python/hyperspace/__init__.py -------------------------------------------------------------------------------- /python/hyperspace/hyperspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/python/hyperspace/hyperspace.py -------------------------------------------------------------------------------- /python/hyperspace/indexconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/python/hyperspace/indexconfig.py -------------------------------------------------------------------------------- /python/hyperspace/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyperspace/testing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/python/hyperspace/testing/utils.py -------------------------------------------------------------------------------- /python/hyperspace/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/hyperspace/tests/test_indexmanagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/python/hyperspace/tests/test_indexmanagement.py -------------------------------------------------------------------------------- /python/hyperspace/tests/test_indexutilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/python/hyperspace/tests/test_indexutilization.py -------------------------------------------------------------------------------- /python/run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/python/run-tests.py -------------------------------------------------------------------------------- /run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/run-tests.py -------------------------------------------------------------------------------- /scalastyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/scalastyle-config.xml -------------------------------------------------------------------------------- /script/download_spark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/script/download_spark.sh -------------------------------------------------------------------------------- /spark2.4/src: -------------------------------------------------------------------------------- 1 | ../src -------------------------------------------------------------------------------- /spark3.0/src: -------------------------------------------------------------------------------- 1 | ../src -------------------------------------------------------------------------------- /spark3.1/src: -------------------------------------------------------------------------------- 1 | ../src -------------------------------------------------------------------------------- /src/main/scala-spark2/com/microsoft/hyperspace/index/sources/delta/DeltaLakeShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark2/com/microsoft/hyperspace/index/sources/delta/DeltaLakeShims.scala -------------------------------------------------------------------------------- /src/main/scala-spark2/com/microsoft/hyperspace/index/sources/iceberg/IcebergShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark2/com/microsoft/hyperspace/index/sources/iceberg/IcebergShims.scala -------------------------------------------------------------------------------- /src/main/scala-spark2/com/microsoft/hyperspace/shim/FirstNullSafe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark2/com/microsoft/hyperspace/shim/FirstNullSafe.scala -------------------------------------------------------------------------------- /src/main/scala-spark2/com/microsoft/hyperspace/shim/RepartitionByExpression.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark2/com/microsoft/hyperspace/shim/RepartitionByExpression.scala -------------------------------------------------------------------------------- /src/main/scala-spark2/com/microsoft/hyperspace/shim/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark2/com/microsoft/hyperspace/shim/package.scala -------------------------------------------------------------------------------- /src/main/scala-spark2/org/apache/spark/sql/hyperspace/shim/SparkPlannerShim.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark2/org/apache/spark/sql/hyperspace/shim/SparkPlannerShim.scala -------------------------------------------------------------------------------- /src/main/scala-spark3.0/com/microsoft/hyperspace/index/sources/iceberg/IcebergShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3.0/com/microsoft/hyperspace/index/sources/iceberg/IcebergShims.scala -------------------------------------------------------------------------------- /src/main/scala-spark3.0/com/microsoft/hyperspace/shim/RepartitionByExpression.scala: -------------------------------------------------------------------------------- 1 | ../../../../../scala-spark2/com/microsoft/hyperspace/shim/RepartitionByExpression.scala -------------------------------------------------------------------------------- /src/main/scala-spark3.0/org/apache/spark/sql/hyperspace/shim/SparkPlannerShim.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3.0/org/apache/spark/sql/hyperspace/shim/SparkPlannerShim.scala -------------------------------------------------------------------------------- /src/main/scala-spark3.1/com/microsoft/hyperspace/index/sources/iceberg/IcebergShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3.1/com/microsoft/hyperspace/index/sources/iceberg/IcebergShims.scala -------------------------------------------------------------------------------- /src/main/scala-spark3.1/com/microsoft/hyperspace/shim/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3.1/com/microsoft/hyperspace/shim/package.scala -------------------------------------------------------------------------------- /src/main/scala-spark3.1/org/apache/spark/sql/hyperspace/shim/SparkPlannerShim.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3.1/org/apache/spark/sql/hyperspace/shim/SparkPlannerShim.scala -------------------------------------------------------------------------------- /src/main/scala-spark3/com/microsoft/hyperspace/index/sources/delta/DeltaLakeShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3/com/microsoft/hyperspace/index/sources/delta/DeltaLakeShims.scala -------------------------------------------------------------------------------- /src/main/scala-spark3/com/microsoft/hyperspace/shim/FirstNullSafe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3/com/microsoft/hyperspace/shim/FirstNullSafe.scala -------------------------------------------------------------------------------- /src/main/scala-spark3/com/microsoft/hyperspace/shim/JoinWithoutHint.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3/com/microsoft/hyperspace/shim/JoinWithoutHint.scala -------------------------------------------------------------------------------- /src/main/scala-spark3/com/microsoft/hyperspace/shim/SQLExecution.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala-spark3/com/microsoft/hyperspace/shim/SQLExecution.scala -------------------------------------------------------------------------------- /src/main/scala/com/fasterxml/jackson/hyperspace/module/scala/ScalaObjectMapper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/fasterxml/jackson/hyperspace/module/scala/ScalaObjectMapper.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/ActiveSparkSession.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/ActiveSparkSession.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/Hyperspace.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/Hyperspace.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/HyperspaceException.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/HyperspaceException.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/HyperspaceSparkSessionExtension.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/HyperspaceSparkSessionExtension.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/Action.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/Action.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/CancelAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/CancelAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/Constants.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/Constants.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/CreateAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/CreateAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/CreateActionBase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/CreateActionBase.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/DeleteAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/DeleteAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/NoChangesException.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/NoChangesException.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/OptimizeAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/OptimizeAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/RefreshAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/RefreshAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/RefreshActionBase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/RefreshActionBase.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/RefreshIncrementalAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/RefreshIncrementalAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/RefreshQuickAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/RefreshQuickAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/RestoreAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/RestoreAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/VacuumAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/VacuumAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/actions/VacuumOutdatedAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/actions/VacuumOutdatedAction.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/Cache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/Cache.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/CachingIndexCollectionManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/CachingIndexCollectionManager.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/DataFrameWriterExtensions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/DataFrameWriterExtensions.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/FileBasedSignatureProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/FileBasedSignatureProvider.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/Index.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/Index.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexCacheFactory.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexCacheFactory.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexCollectionManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexCollectionManager.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexConfigTrait.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexConfigTrait.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexConstants.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexConstants.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexDataManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexDataManager.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexLogEntry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexLogEntry.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexLogEntryTags.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexLogEntryTags.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexLogManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexLogManager.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexManager.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexSignatureProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexSignatureProvider.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexStatistics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexStatistics.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/IndexerContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/IndexerContext.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/LogEntry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/LogEntry.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/LogicalPlanSignatureProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/LogicalPlanSignatureProvider.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/PathResolver.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/PathResolver.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/PlanSignatureProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/PlanSignatureProvider.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/RelationUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/RelationUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndex.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndexConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndexConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndexConfigTrait.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndexConfigTrait.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndexRuleUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndexRuleUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndexTrait.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/CoveringIndexTrait.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/FilterIndexRanker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/FilterIndexRanker.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/FilterIndexRule.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/FilterIndexRule.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/JoinIndexRanker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/JoinIndexRanker.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/covering/JoinIndexRule.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/covering/JoinIndexRule.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndex.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndexConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndexConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/execution/DataSkippingFileIndex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/execution/DataSkippingFileIndex.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/AttrValueExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/AttrValueExtractor.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterAgg.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterAgg.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterEncoder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterEncoder.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterEncoderProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterEncoderProvider.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterMightContain.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterMightContain.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterMightContainAny.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterMightContainAny.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/ExpressionExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/ExpressionExtractor.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/ExpressionUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/ExpressionUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/FastBloomFilterEncoder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/FastBloomFilterEncoder.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/NormalizedExprExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/NormalizedExprExtractor.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/SortedArrayLowerBound.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/SortedArrayLowerBound.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/SortedArrayUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/SortedArrayUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/StreamBloomFilterEncoder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/StreamBloomFilterEncoder.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/extractors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/expressions/extractors.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/rules/ApplyDataSkippingIndex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/rules/ApplyDataSkippingIndex.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/rules/DataSkippingIndexRanker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/rules/DataSkippingIndexRanker.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/rules/FilterConditionFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/rules/FilterConditionFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/rules/FilterPlanNodeFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/rules/FilterPlanNodeFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/BloomFilterSketch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/BloomFilterSketch.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/MinMaxSketch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/MinMaxSketch.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/PartitionSketch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/PartitionSketch.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/SingleExprSketch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/SingleExprSketch.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/Sketch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/sketches/Sketch.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/util/ArrayUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/util/ArrayUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/util/DataFrameUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/util/DataFrameUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/dataskipping/util/ReflectionHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/dataskipping/util/ReflectionHelper.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/execution/BucketUnionExec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/execution/BucketUnionExec.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/execution/BucketUnionStrategy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/execution/BucketUnionStrategy.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/factories.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/factories.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/plananalysis/BufferStream.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/plananalysis/BufferStream.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/plananalysis/CandidateIndexAnalyzer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/plananalysis/CandidateIndexAnalyzer.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/plananalysis/DisplayMode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/plananalysis/DisplayMode.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/plananalysis/FilterReason.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/plananalysis/FilterReason.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/plananalysis/PhysicalOperatorAnalyzer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/plananalysis/PhysicalOperatorAnalyzer.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/plananalysis/PlanAnalyzer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/plananalysis/PlanAnalyzer.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/plans/logical/BucketUnion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/plans/logical/BucketUnion.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/plans/logical/IndexHadoopFsRelation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/plans/logical/IndexHadoopFsRelation.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/ApplyHyperspace.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/ApplyHyperspace.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/CandidateIndexCollector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/CandidateIndexCollector.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/ColumnSchemaFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/ColumnSchemaFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/ExtractRelation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/ExtractRelation.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/FileSignatureFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/FileSignatureFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/HyperspaceRule.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/HyperspaceRule.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/IndexFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/IndexFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/IndexRankFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/IndexRankFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/IndexTypeFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/IndexTypeFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/NoOpRule.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/NoOpRule.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/QueryPlanIndexFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/QueryPlanIndexFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/RuleUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/RuleUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/ScoreBasedIndexPlanOptimizer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/ScoreBasedIndexPlanOptimizer.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/rules/SourcePlanIndexFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/rules/SourcePlanIndexFilter.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/FileBasedSourceProviderManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/FileBasedSourceProviderManager.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/default/DefaultFileBasedRelation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/default/DefaultFileBasedRelation.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/default/DefaultFileBasedRelationMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/default/DefaultFileBasedRelationMetadata.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/default/DefaultFileBasedSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/default/DefaultFileBasedSource.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/delta/DeltaLakeFileBasedSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/delta/DeltaLakeFileBasedSource.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/delta/DeltaLakeRelation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/delta/DeltaLakeRelation.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/delta/DeltaLakeRelationMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/delta/DeltaLakeRelationMetadata.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/iceberg/IcebergFileBasedSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/iceberg/IcebergFileBasedSource.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/iceberg/IcebergRelation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/iceberg/IcebergRelation.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/iceberg/IcebergRelationMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/iceberg/IcebergRelationMetadata.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/sources/interfaces.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/sources/interfaces.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderCoveringIndex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderCoveringIndex.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderCoveringIndexConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderCoveringIndexConfig.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderField.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderField.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderFilterIndexRule.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderFilterIndexRule.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderUDF.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderUDF.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/shim/FileSourceScanExec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/shim/FileSourceScanExec.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/shim/Union.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/shim/Union.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/telemetry/Constants.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/telemetry/Constants.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/telemetry/HyperspaceEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/telemetry/HyperspaceEvent.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/telemetry/HyperspaceEventLogging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/telemetry/HyperspaceEventLogging.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/CacheWithTransform.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/CacheWithTransform.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/FileUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/FileUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/HashingUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/HashingUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/HyperspaceConf.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/HyperspaceConf.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/JavaConverters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/JavaConverters.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/JsonUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/JsonUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/MinMaxAnalysisUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/MinMaxAnalysisUtil.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/PathUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/PathUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/PythonUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/PythonUtils.scala -------------------------------------------------------------------------------- /src/main/scala/com/microsoft/hyperspace/util/ResolverUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/com/microsoft/hyperspace/util/ResolverUtils.scala -------------------------------------------------------------------------------- /src/main/scala/org/apache/spark/deploy/hyperspace/SparkHadoopUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/org/apache/spark/deploy/hyperspace/SparkHadoopUtil.scala -------------------------------------------------------------------------------- /src/main/scala/org/apache/spark/sql/hyperspace/utils/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/org/apache/spark/sql/hyperspace/utils/package.scala -------------------------------------------------------------------------------- /src/main/scala/org/apache/spark/util/hyperspace/Utils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/main/scala/org/apache/spark/util/hyperspace/Utils.scala -------------------------------------------------------------------------------- /src/test/resources/expected/spark-2.4/filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-2.4/filter.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-2.4/selfJoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-2.4/selfJoin.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-2.4/selfJoin_Iceberg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-2.4/selfJoin_Iceberg.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-2.4/subquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-2.4/subquery.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-2.4/whyNot_allIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-2.4/whyNot_allIndex.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-2.4/whyNot_indexName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-2.4/whyNot_indexName.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.0/filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.0/filter.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.0/selfJoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.0/selfJoin.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.0/selfJoin_Iceberg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.0/selfJoin_Iceberg.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.0/subquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.0/subquery.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.0/whyNot_allIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.0/whyNot_allIndex.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.0/whyNot_indexName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.0/whyNot_indexName.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.1/filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.1/filter.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.1/selfJoin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.1/selfJoin.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.1/selfJoin_Iceberg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.1/selfJoin_Iceberg.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.1/subquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.1/subquery.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.1/whyNot_allIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.1/whyNot_allIndex.txt -------------------------------------------------------------------------------- /src/test/resources/expected/spark-3.1/whyNot_indexName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/expected/spark-3.1/whyNot_indexName.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q1.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q10.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q11.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q12.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q13.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q14a.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q14a.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q14b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q14b.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q15.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q16.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q17.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q18.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q19.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q2.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q20.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q21.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q22.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q23a.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q23a.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q23b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q23b.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q24a.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q24a.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q24b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q24b.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q25.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q25.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q26.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q26.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q27.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q27.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q28.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q28.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q29.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q29.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q3.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q30.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q30.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q31.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q31.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q32.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q32.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q33.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q33.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q34.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q34.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q35.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q35.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q36.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q36.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q37.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q37.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q38.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q38.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q39a.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q39a.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q39b.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q39b.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q4.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q40.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q40.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q41.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q41.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q42.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q42.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q43.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q43.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q44.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q44.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q45.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q45.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q46.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q46.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q47.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q47.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q48.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q48.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q49.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q49.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q5.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q50.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q50.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q51.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q51.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q52.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q52.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q53.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q53.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q54.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q54.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q55.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q55.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q56.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q56.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q57.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q57.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q58.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q58.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q59.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q59.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q6.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q60.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q60.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q61.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q61.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q62.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q62.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q63.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q63.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q64.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q64.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q65.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q65.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q66.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q66.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q67.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q67.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q68.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q68.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q69.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q69.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q7.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q70.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q70.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q71.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q71.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q72.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q72.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q73.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q73.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q74.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q74.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q75.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q75.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q76.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q76.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q77.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q77.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q78.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q78.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q79.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q79.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q8.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q80.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q80.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q81.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q81.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q82.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q82.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q83.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q83.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q84.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q84.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q85.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q85.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q86.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q86.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q87.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q87.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q88.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q88.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q89.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q89.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q9.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q90.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q90.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q91.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q91.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q92.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q92.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q93.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q93.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q94.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q94.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q95.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q95.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q96.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q96.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q97.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q97.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q98.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q98.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/queries/q99.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/queries/q99.sql -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q1/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q1/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q1/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q1/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q10/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q10/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q10/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q10/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q11/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q11/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q11/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q11/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q12/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q12/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q12/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q12/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q13/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q13/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q13/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q13/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q14a/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q14a/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q14a/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q14a/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q14b/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q14b/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q14b/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q14b/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q15/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q15/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q15/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q15/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q16/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q16/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q16/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q16/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q17/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q17/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q17/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q17/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q18/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q18/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q18/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q18/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q19/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q19/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q19/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q19/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q2/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q2/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q2/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q2/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q20/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q20/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q20/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q20/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q21/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q21/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q21/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q21/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q22/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q22/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q22/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q22/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q23a/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q23a/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q23a/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q23a/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q23b/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q23b/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q23b/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q23b/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q24a/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q24a/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q24a/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q24a/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q24b/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q24b/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q24b/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q24b/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q25/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q25/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q25/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q25/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q26/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q26/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q26/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q26/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q27/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q27/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q27/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q27/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q28/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q28/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q28/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q28/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q29/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q29/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q29/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q29/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q3/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q3/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q3/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q3/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q30/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q30/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q30/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q30/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q31/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q31/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q31/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q31/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q32/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q32/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q32/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q32/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q33/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q33/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q33/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q33/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q34/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q34/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q34/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q34/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q35/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q35/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q35/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q35/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q36/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q36/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q36/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q36/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q37/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q37/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q37/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q37/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q38/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q38/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q38/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q38/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q39a/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q39a/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q39a/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q39a/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q39b/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q39b/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q39b/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q39b/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q4/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q4/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q4/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q4/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q40/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q40/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q40/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q40/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q41/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q41/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q41/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q41/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q42/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q42/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q42/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q42/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q43/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q43/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q43/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q43/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q44/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q44/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q44/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q44/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q45/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q45/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q45/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q45/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q46/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q46/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q46/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q46/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q47/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q47/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q47/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q47/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q48/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q48/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q48/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q48/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q49/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q49/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q49/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q49/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q5/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q5/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q5/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q5/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q50/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q50/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q50/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q50/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q51/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q51/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q51/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q51/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q52/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q52/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q52/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q52/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q53/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q53/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q53/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q53/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q54/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q54/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q54/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q54/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q55/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q55/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q55/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q55/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q56/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q56/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q56/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q56/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q57/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q57/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q57/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q57/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q58/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q58/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q58/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q58/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q59/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q59/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q59/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q59/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q6/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q6/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q6/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q6/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q60/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q60/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q60/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q60/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q61/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q61/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q61/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q61/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q62/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q62/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q62/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q62/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q63/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q63/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q63/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q63/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q64/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q64/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q64/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q64/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q65/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q65/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q65/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q65/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q66/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q66/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q66/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q66/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q67/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q67/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q67/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q67/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q68/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q68/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q68/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q68/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q69/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q69/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q69/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q69/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q7/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q7/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q7/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q7/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q70/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q70/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q70/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q70/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q71/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q71/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q71/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q71/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q72/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q72/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q72/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q72/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q73/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q73/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q73/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q73/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q74/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q74/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q74/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q74/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q75/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q75/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q75/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q75/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q76/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q76/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q76/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q76/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q77/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q77/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q77/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q77/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q78/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q78/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q78/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q78/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q79/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q79/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q79/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q79/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q8/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q8/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q8/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q8/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q80/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q80/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q80/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q80/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q81/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q81/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q81/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q81/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q82/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q82/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q82/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q82/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q83/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q83/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q83/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q83/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q84/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q84/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q84/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q84/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q85/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q85/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q85/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q85/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q86/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q86/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q86/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q86/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q87/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q87/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q87/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q87/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q88/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q88/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q88/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q88/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q89/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q89/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q89/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q89/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q9/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q9/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q9/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q9/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q90/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q90/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q90/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q90/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q91/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q91/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q91/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q91/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q92/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q92/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q92/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q92/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q93/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q93/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q93/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q93/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q94/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q94/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q94/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q94/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q95/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q95/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q95/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q95/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q96/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q96/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q96/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q96/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q97/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q97/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q97/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q97/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q98/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q98/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q98/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q98/simplified.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q99/explain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q99/explain.txt -------------------------------------------------------------------------------- /src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q99/simplified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/resources/tpcds/spark-2.4/approved-plans-v1_4/q99/simplified.txt -------------------------------------------------------------------------------- /src/test/scala-spark2/com/microsoft/hyperspace/util/SparkTestShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala-spark2/com/microsoft/hyperspace/util/SparkTestShims.scala -------------------------------------------------------------------------------- /src/test/scala-spark3/com/microsoft/hyperspace/util/SparkTestShims.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala-spark3/com/microsoft/hyperspace/util/SparkTestShims.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/HyperspaceConfTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/HyperspaceConfTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/HyperspaceExtensionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/HyperspaceExtensionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/HyperspaceTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/HyperspaceTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/IcebergTestUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/IcebergTestUtils.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/SampleData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/SampleData.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/SampleNestedData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/SampleNestedData.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/SparkInvolvedSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/SparkInvolvedSuite.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/TestUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/TestUtils.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/ActionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/ActionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/CancelActionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/CancelActionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/CreateActionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/CreateActionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/DeleteActionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/DeleteActionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/RefreshActionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/RefreshActionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/RestoreActionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/RestoreActionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/TestLogEntry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/TestLogEntry.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/VacuumActionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/VacuumActionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/actions/VacuumOutdatedActionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/actions/VacuumOutdatedActionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/goldstandard/PlanStabilitySuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/goldstandard/PlanStabilitySuite.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/goldstandard/TPCDSBase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/goldstandard/TPCDSBase.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/BucketUnionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/BucketUnionTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/CreateIndexNestedTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/CreateIndexNestedTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/CreateIndexTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/CreateIndexTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/DataFrameWriterExtensionsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/DataFrameWriterExtensionsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/DeltaLakeIntegrationTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/DeltaLakeIntegrationTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/E2EHyperspaceRulesTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/E2EHyperspaceRulesTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/FileBasedSignatureProviderTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/FileBasedSignatureProviderTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/FileIdTrackerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/FileIdTrackerTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/HybridScanForDeltaLakeTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/HybridScanForDeltaLakeTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/HybridScanForIcebergTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/HybridScanForIcebergTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/HybridScanForNonPartitionedDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/HybridScanForNonPartitionedDataTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/HybridScanForPartitionedDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/HybridScanForPartitionedDataTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/HybridScanSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/HybridScanSuite.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/HyperspaceRuleSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/HyperspaceRuleSuite.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/HyperspaceSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/HyperspaceSuite.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IcebergIntegrationTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IcebergIntegrationTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexCacheTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexCacheTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexCollectionManagerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexCollectionManagerTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexConfigTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexConfigTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexLogEntryTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexLogEntryTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexLogManagerImplTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexLogManagerImplTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexManagerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexManagerTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexSignatureProviderTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexSignatureProviderTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexStatisticsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexStatisticsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/IndexTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/IndexTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/RefreshIndexNestedTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/RefreshIndexNestedTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/RefreshIndexTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/RefreshIndexTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/RuleTestHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/RuleTestHelper.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/SignatureProviderTestUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/SignatureProviderTestUtils.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/covering/CoveringIndexRuleUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/covering/CoveringIndexRuleUtilsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/covering/FilterIndexRankerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/covering/FilterIndexRankerTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/covering/FilterIndexRuleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/covering/FilterIndexRuleTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/covering/JoinIndexRankerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/covering/JoinIndexRankerTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/covering/JoinIndexRuleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/covering/JoinIndexRuleTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/ArrayTestUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/ArrayTestUtils.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/BloomFilterTestUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/BloomFilterTestUtils.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndexConfigTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndexConfigTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndexIntegrationTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndexIntegrationTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndexTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingIndexTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/DataSkippingSuite.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/execution/DataSkippingFileIndexTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/execution/DataSkippingFileIndexTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterAggTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterAggTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterMightContainAnyTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterMightContainAnyTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterMightContainTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterMightContainTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/BloomFilterUtilsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/ExpressionUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/ExpressionUtilsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/ExtractorsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/ExtractorsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/FastBloomFilterEncoderTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/FastBloomFilterEncoderTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/NormalizedExprExtractorTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/NormalizedExprExtractorTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/SortedArrayLowerBoundTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/SortedArrayLowerBoundTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/StreamBloomFilterEncoderTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/expressions/StreamBloomFilterEncoderTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/rules/ApplyDataSkippingIndexTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/rules/ApplyDataSkippingIndexTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/rules/FilterConditionFilterTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/rules/FilterConditionFilterTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/rules/FilterPlanNodeFilterTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/rules/FilterPlanNodeFilterTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/sketches/BloomFilterSketchTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/sketches/BloomFilterSketchTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/sketches/MinMaxSketchTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/sketches/MinMaxSketchTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/sketches/PartitionSketchTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/sketches/PartitionSketchTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/util/ArrayUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/util/ArrayUtilsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/dataskipping/util/DataFrameUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/dataskipping/util/DataFrameUtilsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/plananalysis/BufferStreamTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/plananalysis/BufferStreamTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/plananalysis/DisplayModeTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/plananalysis/DisplayModeTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/plananalysis/ExplainTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/plananalysis/ExplainTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/plananalysis/PhysicalOperatorAnalyzerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/plananalysis/PhysicalOperatorAnalyzerTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/rules/CandidateIndexCollectorTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/rules/CandidateIndexCollectorTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/rules/RuleUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/rules/RuleUtilsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/rules/ScoreBasedIndexPlanOptimizerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/rules/ScoreBasedIndexPlanOptimizerTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/zordercovering/E2EHyperspaceZOrderIndexTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/zordercovering/E2EHyperspaceZOrderIndexTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderFieldTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderFieldTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderUDFTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/index/zordercovering/ZOrderUDFTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/util/HashingUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/util/HashingUtilsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/util/JsonUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/util/JsonUtilsTest.scala -------------------------------------------------------------------------------- /src/test/scala/com/microsoft/hyperspace/util/ResolverUtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/hyperspace/HEAD/src/test/scala/com/microsoft/hyperspace/util/ResolverUtilsTest.scala -------------------------------------------------------------------------------- /version.sbt: -------------------------------------------------------------------------------- 1 | ThisBuild / version := "0.5.0-SNAPSHOT" 2 | --------------------------------------------------------------------------------