MssqlWindowExpression.rowNumber constructor

MssqlWindowExpression.rowNumber(
  1. MssqlWindow over
)

ROW_NUMBER() OVER (…), whose result is bigint.

Implementation

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