summaryrefslogtreecommitdiff
path: root/libpqpp/unittests/pqschema.sql
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-10-17 22:11:44 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-10-17 22:11:44 +0100
commitcf7a1dc4c55d9388ba4015c36627f507d1b3f73a (patch)
tree0fe50b1812647f219deae4eef8b2b9727dad39bd /libpqpp/unittests/pqschema.sql
parentAdd override attributes (diff)
downloadlibdbpp-postgresql-cf7a1dc4c55d9388ba4015c36627f507d1b3f73a.tar.bz2
libdbpp-postgresql-cf7a1dc4c55d9388ba4015c36627f507d1b3f73a.tar.xz
libdbpp-postgresql-cf7a1dc4c55d9388ba4015c36627f507d1b3f73a.zip
Add support for getting last insert valuelibdbpp-postgresql-0.9.1
Diffstat (limited to 'libpqpp/unittests/pqschema.sql')
-rw-r--r--libpqpp/unittests/pqschema.sql4
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);
+