Kaydet (Commit) e294b529 authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS dba205c (1.44.10); FILE MERGED

2006/10/10 13:40:07 fs 1.44.10.1: #i69227# when stepping down a sub query, don't forget to erase its name from the pSubQueryHistory, to allow repeated occurances
üst 7fe81625
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: sqlnode.cxx,v $ * $RCSfile: sqlnode.cxx,v $
* *
* $Revision: 1.44 $ * $Revision: 1.45 $
* *
* last change: $Author: obo $ $Date: 2006-09-17 03:09:39 $ * last change: $Author: hr $ $Date: 2006-10-24 15:06:24 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -721,6 +721,11 @@ bool OSQLParseNode::impl_parseTableNameNodeToString_throw( ::rtl::OUString& rStr ...@@ -721,6 +721,11 @@ bool OSQLParseNode::impl_parseTableNameNodeToString_throw( ::rtl::OUString& rStr
rString += SetQuotation( sTableOrQueryName, rParam.aIdentifierQuote, rParam.aIdentifierQuote ); rString += SetQuotation( sTableOrQueryName, rParam.aIdentifierQuote, rParam.aIdentifierQuote );
} }
// don't forget to remove the query name from the history, else multiple inclusions
// won't work
// #i69227# / 2006-10-10 / frank.schoenheit@sun.com
rParam.pSubQueryHistory->erase( sTableOrQueryName );
return true; return true;
} }
catch( const SQLException& ) catch( const SQLException& )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment