diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-06-05 16:47:06 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-06-05 17:17:09 +0100 |
commit | b9aaad1d4d8be6604c84aa11651b99ac932794af (patch) | |
tree | 907695b54295aaf3b25240c8c0cb20d56ecc14c6 /libpqpp/unittests/pqschema.sql | |
parent | Fix memory leak in unit test (diff) | |
download | libdbpp-postgresql-b9aaad1d4d8be6604c84aa11651b99ac932794af.tar.bz2 libdbpp-postgresql-b9aaad1d4d8be6604c84aa11651b99ac932794af.tar.xz libdbpp-postgresql-b9aaad1d4d8be6604c84aa11651b99ac932794af.zip |
Add support for bytea / blob type data
Diffstat (limited to 'libpqpp/unittests/pqschema.sql')
-rw-r--r-- | libpqpp/unittests/pqschema.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpqpp/unittests/pqschema.sql b/libpqpp/unittests/pqschema.sql index 2a7dd09..a79b678 100644 --- a/libpqpp/unittests/pqschema.sql +++ b/libpqpp/unittests/pqschema.sql @@ -38,4 +38,7 @@ CREATE TABLE bulktest( CREATE TABLE idtest( id serial, foo int); +CREATE TABLE blobtest( + data bytea, + md5 text); |