Hi, In order to support ORDER BY OFFSET FETCH, we add the Table API `limit`. But the api is confused. For example: "table.limit(3)" means unlimited number of records beginning with the 4th record. In fact I prefer "table.limit(3)" means taking the first `3` rows. So I prefer to use the API "offset().fetch()" support ORDER BY OFFSET FETCH. Of course, the "table.limit(n)" equivalent with the "table.offset(0).fetch(n)",
-- Regards John Fang