MssqlWindowExpression.rank constructor

MssqlWindowExpression.rank(
  1. MssqlWindow over
)

RANK() OVER (…).

Implementation

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