MssqlWindowExpression.denseRank constructor

MssqlWindowExpression.denseRank(
  1. MssqlWindow over
)

DENSE_RANK() OVER (…).

Implementation

factory MssqlWindowExpression.denseRank(MssqlWindow over) =>
    MssqlWindowExpression._(
      function: MssqlWindowFunction.denseRank,
      arguments: const <MssqlExpression>[],
      window: over,
      resultType: const MssqlColumnType(
        type: MssqlType.int64,
        nullable: false,
      ),
      literalSuffix: '',
    );