diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-10-17 22:11:44 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-10-17 22:11:44 +0100 |
commit | 576e4b9894157341815ca48cb8317b71499f82df (patch) | |
tree | 3f3959304b6172116006779cccb3c1d02b111dc2 /libpqpp/unittests/pqschema.sql | |
parent | Add override attributes (diff) | |
download | libdbpp-postgresql-576e4b9894157341815ca48cb8317b71499f82df.tar.bz2 libdbpp-postgresql-576e4b9894157341815ca48cb8317b71499f82df.tar.xz libdbpp-postgresql-576e4b9894157341815ca48cb8317b71499f82df.zip |
Add support for getting last insert value
Diffstat (limited to 'libpqpp/unittests/pqschema.sql')
-rw-r--r-- | libpqpp/unittests/pqschema.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpqpp/unittests/pqschema.sql b/libpqpp/unittests/pqschema.sql index 80d9183..2a7dd09 100644 --- a/libpqpp/unittests/pqschema.sql +++ b/libpqpp/unittests/pqschema.sql @@ -35,3 +35,7 @@ CREATE TABLE bulktest( id int, string text); +CREATE TABLE idtest( + id serial, + foo int); + |