diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-10-24 08:52:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-10-24 08:52:58 +0200 |
commit | ec63060967e1c764e80655e8fd3bf40bd3872efd (patch) | |
tree | d9625ad14a9cee34f24acc9587a344ce4cff91e5 /common/section/basics/driver.cxx | |
parent | e121dc6a5d73c53a3c1aebc9fa4ed187dd87aae5 (diff) |
Don't use auto id for BLOB test
This causes problems with SQL Server 2005.
Diffstat (limited to 'common/section/basics/driver.cxx')
-rw-r--r-- | common/section/basics/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/section/basics/driver.cxx b/common/section/basics/driver.cxx index 67e09ef..f34ed90 100644 --- a/common/section/basics/driver.cxx +++ b/common/section/basics/driver.cxx @@ -1125,7 +1125,7 @@ main (int argc, char* argv[]) { using namespace test14; - object o (123, "\x01\x02\x03\x04\x05"); + object o (1, 123, "\x01\x02\x03\x04\x05"); { transaction t (db->begin ()); |