import type { Sampling, AtomicTypeDef, TimeTruncExpr, TimeExtractExpr, TimeDeltaExpr, TypecastExpr, RegexMatchExpr, TimeLiteralNode, MeasureTimeExpr, BasicAtomicTypeDef, RecordLiteralNode, ArrayLiteralNode } from '../../model/malloy_types'; import type { DialectFunctionOverloadDef } from '../functions'; import type { DialectFieldList, OrderByRequest, QueryInfo } from '../dialect'; import { Dialect } from '../dialect'; export declare class StandardSQLDialect extends Dialect { name: string; experimental: boolean; defaultNumberType: string; defaultDecimalType: string; udfPrefix: string; hasFinalStage: boolean; divisionIsInteger: boolean; supportsSumDistinctFunction: boolean; unnestWithNumbers: boolean; defaultSampling: { enable: boolean; }; supportUnnestArrayAgg: boolean; supportsAggDistinct: boolean; supportsCTEinCoorelatedSubQueries: boolean; dontUnionIndex: boolean; supportsQualify: boolean; supportsSafeCast: boolean; supportsNesting: boolean; cantPartitionWindowFunctionsOnExpressions: boolean; hasModOperator: boolean; nestedArrays: boolean; supportsHyperLogLog: boolean; likeEscape: boolean; quoteTablePath(tablePath: string): string; sqlGroupSetTable(groupSetCount: number): string; sqlAnyValue(groupSet: number, fieldName: string): string; sqlOrderBy(orderTerms: string[], obr?: OrderByRequest): string; sqlAggregateTurtle(groupSet: number, fieldList: DialectFieldList, orderBy: string | undefined): string; sqlAnyValueTurtle(groupSet: number, fieldList: DialectFieldList): string; sqlAnyValueLastTurtle(name: string, groupSet: number, sqlName: string): string; sqlCoaleseMeasuresInline(groupSet: number, fieldList: DialectFieldList): string; sqlUnnestAlias(source: string, alias: string, fieldList: DialectFieldList, needDistinctKey: boolean, isArray: boolean, _isInNestedPipeline: boolean): string; sqlSumDistinctHashedKey(sqlDistinctKey: string): string; sqlGenerateUUID(): string; sqlFieldReference(parentAlias: string, _parentType: unknown, childName: string, _childType: string): string; sqlUnnestPipelineHead(isSingleton: boolean, sourceSQLExpression: string): string; sqlCreateFunction(id: string, funcText: string): string; sqlCreateTableAsSelect(tableName: string, sql: string): string; sqlCreateFunctionCombineLastStage(lastStageName: string): string; sqlSelectAliasAsStruct(alias: string): string; sqlMaybeQuoteIdentifier(identifier: string): string; sqlNowExpr(): string; sqlTruncExpr(qi: QueryInfo, trunc: TimeTruncExpr): string; sqlTimeExtractExpr(qi: QueryInfo, te: TimeExtractExpr): string; sqlAlterTimeExpr(df: TimeDeltaExpr): string; ignoreInProject(fieldName: string): boolean; sqlCast(qi: QueryInfo, cast: TypecastExpr): string; sqlRegexpMatch(match: RegexMatchExpr): string; sqlLiteralTime(qi: QueryInfo, lit: TimeLiteralNode): string; sqlMeasureTimeExpr(measure: MeasureTimeExpr): string; sqlSampleTable(tableSQL: string, sample: Sampling | undefined): string; sqlLiteralString(literal: string): string; sqlLiteralRegexp(literal: string): string; getDialectFunctionOverrides(): { [name: string]: DialectFunctionOverloadDef[]; }; getDialectFunctions(): { [name: string]: DialectFunctionOverloadDef[]; }; malloyTypeToSQLType(malloyType: AtomicTypeDef): string; sqlTypeToMalloyType(sqlType: string): BasicAtomicTypeDef; castToString(expression: string): string; concat(...values: string[]): string; validateTypeName(sqlType: string): boolean; sqlLiteralRecord(lit: RecordLiteralNode): string; sqlLiteralArray(lit: ArrayLiteralNode): string; }