aboutsummaryrefslogtreecommitdiff
path: root/odb/relational/header.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/relational/header.cxx')
-rw-r--r--odb/relational/header.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/odb/relational/header.cxx b/odb/relational/header.cxx
index ddb9635..476aad3 100644
--- a/odb/relational/header.cxx
+++ b/odb/relational/header.cxx
@@ -706,12 +706,16 @@ traverse_object (type& c)
<< "root_image (image_type&);"
<< endl;
+ // Note that the original image is non-const since for some databases
+ // the copy "steals" stuff from the original (e.g., LOB descriptors in
+ // Oracle).
+ //
os << "static image_type*" << endl
- << "clone_image (const image_type&);"
+ << "clone_image (image_type&);"
<< endl;
os << "static void" << endl
- << "copy_image (image_type&, const image_type&);"
+ << "copy_image (image_type&, image_type&);"
<< endl;
os << "static void" << endl