aboutsummaryrefslogtreecommitdiff
path: root/common/schema/embedded
AgeCommit message (Collapse)AuthorFilesLines
2015-02-06Update copyrightBoris Kolpackov7-7/+7
2014-06-03Support for VC12 (2013), initial workBoris Kolpackov2-2/+8
2013-07-08Add support for Visual Studio 2005Boris Kolpackov2-4/+8
2013-06-21Add support for running tests in dynamic multi-database modeBoris Kolpackov4-48/+39
Only possible in the development build system at this stage.
2013-06-13Handle --database option directly in automake and VC++ projectsBoris Kolpackov2-4/+6
2013-06-03Use database name in options and driver files (build part)Boris Kolpackov2-2/+2
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-12Disable constraint checking in MySQLBoris Kolpackov1-3/+9
This test can either create tables or drop them in the "wrong" order, depending on the static initialization order. For MySQL we can create things but not drop (no IF EXISTS or similar support).
2013-02-09Update copyright yearBoris Kolpackov7-7/+7
2013-02-08Add schema_catalog::exists() functionBoris Kolpackov5-1/+200
2013-02-08Misc fixesBoris Kolpackov1-4/+4
2013-02-07Use multi-pass table creation in MySQLBoris Kolpackov5-0/+221
This deals with table creation order and circular dependencies. Unfortunately, there doesn't seem to be a way in MySQL to drop a foreign key only if it exists without resorting to stored procedures.