aboutsummaryrefslogtreecommitdiff
path: root/odb
diff options
context:
space:
mode:
Diffstat (limited to 'odb')
-rw-r--r--odb/relational/header.cxx8
-rw-r--r--odb/relational/inline.hxx4
2 files changed, 8 insertions, 4 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
diff --git a/odb/relational/inline.hxx b/odb/relational/inline.hxx
index d1a4393..ed10e09 100644
--- a/odb/relational/inline.hxx
+++ b/odb/relational/inline.hxx
@@ -510,7 +510,7 @@ namespace relational
os << "inline" << endl
<< traits << "::image_type*" << endl
<< traits << "::" << endl
- << "clone_image (const image_type& i)"
+ << "clone_image (image_type& i)"
<< "{";
if (poly_derived)
@@ -528,7 +528,7 @@ namespace relational
//
os << "inline" << endl
<< "void " << traits << "::" << endl
- << "copy_image (image_type& d, const image_type& s)"
+ << "copy_image (image_type& d, image_type& s)"
<< "{";
if (poly_derived)