Packages

  • package root
    Definition Classes
    root
  • package quasar
    Definition Classes
    root
  • package config
    Definition Classes
    quasar
  • package connector
    Definition Classes
    quasar
  • BackendModule
  • ChrootedInterpreter
  • DefaultAnalyzeModule
  • EnvironmentError
  • ManagedQueryFile
  • ManagedReadFile
  • ManagedWriteFile
  • PhysicalPlan
  • package fp
    Definition Classes
    quasar
  • package fs
    Definition Classes
    quasar
  • package qscript

    The various representations of an arbitrary query, as seen by the filesystem connectors, along with the operations for dealing with them.

    The various representations of an arbitrary query, as seen by the filesystem connectors, along with the operations for dealing with them.

    There are a few patterns that are worth noting: - (src: A, ..., lBranch: FreeQS[T], rBranch: FreeQS[T], ...) – used in operations that combine multiple data sources (notably joins and unions). This holds the divergent parts of the data sources in the branches, with SrcHole indicating a reference back to the common src of the two branches. There is not required to be a SrcHole. - Free[F, A] – we use this structure as a restricted form of variable binding, where F is some pattern functor, and A is some enumeration that has a specific referent. E.g., FreeMap is a recursive structure of MapFunc that has a single “variable”, SrcHole, which (usually) refers to the src parameter of that operation. JoinFunc, FreeQS, and the repair parameter to Reduce behave similarly. - We use the type parameter QS[_] to indicate QScript, as well as the type parameters IN[_] and OUT[_] to indicate the input and output coproducts in transformations where they can be different.

    Definition Classes
    quasar
p

quasar

connector

package connector

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. connector
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait BackendModule extends AnyRef
  2. trait ChrootedInterpreter extends BackendModule
  3. type CompileM[A] = EitherT[PhaseResultW, SemanticErrors, A]
  4. trait DefaultAnalyzeModule extends AnyRef
  5. type EnvErr[A] = Failure[EnvironmentError, A]
  6. type EnvErrT[F[_], A] = EitherT[F, EnvironmentError, A]
  7. sealed abstract class EnvironmentError extends AnyRef
  8. trait ManagedQueryFile[C] extends AnyRef
  9. trait ManagedReadFile[C] extends AnyRef
  10. trait ManagedWriteFile[C] extends AnyRef
  11. final case class PhysicalPlan[R](repr: R, paths: ISet[APath]) extends Product with Serializable
  12. type PlannerErrT[F[_], A] = EitherT[F, PlannerError, A]

Value Members

  1. object BackendModule
  2. object EnvironmentError

Inherited from AnyRef

Inherited from Any

Ungrouped