internal virtual void FlatMap(GremlinToSqlContext currentContext, GremlinToSqlContext flatMapContext) { GremlinFlatMapVariable flatMapVariable = new GremlinFlatMapVariable(flatMapContext, flatMapContext.PivotVariable.GetVariableType()); currentContext.VariableList.Add(flatMapVariable); currentContext.TableReferences.Add(flatMapVariable); currentContext.SetPivotVariable(flatMapVariable); }
internal virtual void FlatMap(GremlinToSqlContext currentContext, GremlinToSqlContext flatMapContext) { GremlinTableVariable flatMapVariable = GremlinFlatMapVariable.Create(flatMapContext); currentContext.VariableList.Add(flatMapVariable); currentContext.TableReferences.Add(flatMapVariable); currentContext.SetPivotVariable(flatMapVariable); }