@malloydata/malloy 0.0.16-dev221217002701 → 0.0.16-dev221220164559
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -215,7 +215,7 @@ declare class QueryQuery extends QueryField {
|
|
|
215
215
|
static makeQuery(fieldDef: TurtleDef, parentStruct: QueryStruct, stageWriter?: StageWriter | undefined): QueryQuery;
|
|
216
216
|
getFieldList(): QueryFieldDef[];
|
|
217
217
|
expandField(f: QueryFieldDef): {
|
|
218
|
-
as:
|
|
218
|
+
as: any;
|
|
219
219
|
field: QuerySomething;
|
|
220
220
|
};
|
|
221
221
|
expandDependantField(resultStruct: FieldInstanceResult, fieldRef: FieldRef): void;
|
|
@@ -247,10 +247,7 @@ declare class QueryQuery extends QueryField {
|
|
|
247
247
|
generateTurtleSQL(resultStruct: FieldInstanceResult, stageWriter: StageWriter, sqlFieldName: string, outputPipelinedSQL: OutputPipelinedSQL[]): string;
|
|
248
248
|
generateTurtlePipelineSQL(fi: FieldInstanceResult, stageWriter: StageWriter, sourceSQLExpression: string): {
|
|
249
249
|
structDef: StructDef;
|
|
250
|
-
pipeOut:
|
|
251
|
-
lastStageName: string;
|
|
252
|
-
outputStruct: StructDef;
|
|
253
|
-
} | undefined;
|
|
250
|
+
pipeOut: any;
|
|
254
251
|
};
|
|
255
252
|
generateComplexSQL(stageWriter: StageWriter): string;
|
|
256
253
|
generateSQL(stageWriter: StageWriter): string;
|
|
@@ -286,7 +283,7 @@ declare class QueryStruct extends QueryNode {
|
|
|
286
283
|
getJoinableParent(): QueryStruct;
|
|
287
284
|
addFieldToNameMap(as: string, n: QuerySomething): void;
|
|
288
285
|
/** the the primary key or throw an error. */
|
|
289
|
-
getPrimaryKeyField(fieldDef: FieldDef):
|
|
286
|
+
getPrimaryKeyField(fieldDef: FieldDef): any;
|
|
290
287
|
/**
|
|
291
288
|
* called after all structure has been loaded. Examine this structure to see
|
|
292
289
|
* if if it is based on a query and if it is, add the output fields (unless
|