fix offset to skip records just like SQL databases do, and not position us on it
[webpac2] / t / conf / schema.sql
1 drop table if exists test;
2
3 create table test (
4         id serial,
5         foo int not null,
6         bar int,
7         baz text
8 );