GenerationContext constructor

GenerationContext(
  1. SqlTypeSystem typeSystem,
  2. DatabaseConnectionUser? executor, {
  3. bool supportsVariables = true,
})

Constructs a custom GenerationContext by setting the fields manually. See GenerationContext.fromDb for a more convenient factory.

Implementation

GenerationContext(this.typeSystem, this.executor,
    {this.supportsVariables = true});