aboutsummaryrefslogtreecommitdiff
path: root/pgsql/types
AgeCommit message (Collapse)AuthorFilesLines
2019-01-17Update copyright yearKaren Arutyunov4-4/+4
2018-05-24Update copyright yearKaren Arutyunov4-4/+4
2017-01-03Update copyright yearBoris Kolpackov4-4/+4
2015-10-29Fix UUID char[16] query_type aliasBoris Kolpackov1-0/+35
Instead of pre-decaying it to const char*, let the normal decay do it for us. This fixes a compilation issue when used with dynamic multi- database support.
2015-02-08Recode strncpy as memcpyBoris Kolpackov1-3/+3
VC12 deprecated those hard, as in, it is now an error.
2015-02-06Update copyrightBoris Kolpackov4-4/+4
2014-06-03Support for VC12 (2013), initial workBoris Kolpackov1-1/+4
2013-07-08Add support for Visual Studio 2005Boris Kolpackov1-1/+4
2013-06-21Add support for running tests in dynamic multi-database modeBoris Kolpackov1-16/+5
Only possible in the development build system at this stage.
2013-06-06Use fixed options file names in database-specific testsBoris Kolpackov1-1/+1
2013-06-03Use database name in options and driver files (build part)Boris Kolpackov1-1/+1
This way we will be able to have several databases configured at the same time, which is needed for multi-database support testing.
2013-02-09Update copyright yearBoris Kolpackov4-4/+4
2013-01-24Add support for mapping char[N] to CHAR/VARCHAR database typesBoris Kolpackov2-9/+74
Also improve query support for arrays (decaying).
2012-10-29Don't make database default in database-specific testsBoris Kolpackov1-3/+3
2012-10-08Ground work for multi-database supportBoris Kolpackov1-2/+3
All generated code now includes database id. The database-specific database class interface has been updated to include all the database operations. The database-specific tests now use this interface.
2012-09-16Add support for Visual Studio 2012Boris Kolpackov1-1/+4
2012-09-11Add support for mapping std::array to BLOB and char[16] to UUID typesBoris Kolpackov3-28/+5
2012-02-24C++11 support (pass --std ODB compiler option in build makefiles)Boris Kolpackov1-0/+5
2012-01-29Update copyright yearBoris Kolpackov4-4/+4
2012-01-29Remove author field from file headerBoris Kolpackov4-4/+0
Too much effort to maintain.
2011-08-24Make tests use unique table prefixesBoris Kolpackov1-2/+2
2011-08-04Style changesBoris Kolpackov1-2/+2
2011-07-28Add value_traits specializations for std::vector<char>Boris Kolpackov3-41/+4
This allows using it as a buffer for BLOB mapping.
2011-07-25Add type qualifier to large integer literalsBoris Kolpackov1-2/+2
2011-07-25Use initialization syntax instead of assignmentBoris Kolpackov1-1/+1
2011-07-24Remove all references to NUMERICConstantin Michael2-6/+1
2011-07-24Correct bug in calculation of varbit byte lengthConstantin Michael1-1/+1
2011-07-19New design for NULL semanticsBoris Kolpackov1-20/+20
Now, instead of being specified as part of the SQL type with the type pragma, there are separate null and not_null pragmas. The not_null pragma was used to control NULL-ness of object pointers. Now the two pragmas are used consistently for object pointers and simple values (and in the future will work for composite values and containers).
2011-07-14Aesthetic changes to PostgreSQL BIT testConstantin Michael1-3/+11
2011-07-14Test VARBIT bit length is handled correctlyConstantin Michael3-18/+78
2011-07-14Remove duplicated libodb-pgsql import stubsConstantin Michael1-6/+2
2011-07-12Add PostgreSQL types and truncation testsConstantin Michael5-0/+568