SQLServer2005Dialect: Made some comments more specific

This commit is contained in:
Yoryos Valotasios 2010-11-23 00:46:48 +02:00
parent 2ae06c9469
commit 38cd2fe25c
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public class SQLServer2005Dialect extends SQLServerDialect {
@Override
public int convertToFirstRowValue(int zeroBasedFirstResult) {
// Our dialect isn't zero based. The first row should get the number 1
// Our dialect paginated results aren't zero based. The first row should get the number 1 and so on
return zeroBasedFirstResult + 1;
}