diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-09-26 11:04:20 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-09-26 11:04:20 +0200 |
commit | c43fc7926bc38c116019bd313f13f6380c63c6c3 (patch) | |
tree | 7c1ea42ffc6a5d8ae4c4cc96513c6a00cad23854 | |
parent | 927b42789bd3c3f108867bf067a89013a932cab3 (diff) |
Redefine id_int64 image type to be a byte array
-rw-r--r-- | odb/oracle/traits.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/oracle/traits.hxx b/odb/oracle/traits.hxx index 532f091..c739c61 100644 --- a/odb/oracle/traits.hxx +++ b/odb/oracle/traits.hxx @@ -63,7 +63,7 @@ namespace odb struct image_traits<id_int32> {typedef int image_type;}; template <> - struct image_traits<id_int64> {typedef long long image_type;}; + struct image_traits<id_int64> {typedef unsigned char[12] image_type;}; template <> struct image_traits<id_big_int> {typedef unsigned char[21] image_type;}; |