Tag: cws_src680_dba24a User: oj Date: 2007-09-20 05:54:40+0000 Modified: dba/connectivity/source/drivers/file/FResultSet.cxx dba/connectivity/source/drivers/file/fcomp.cxx
Log: #i81582# fill select row File Changes: Directory: /dba/connectivity/source/drivers/file/ ================================================= File [changed]: FResultSet.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/FResultSet.cxx?r1=1.97.118.1&r2=1.97.118.2 Delta lines: +6 -2 ------------------- --- FResultSet.cxx 2007-08-09 07:51:16+0000 1.97.118.1 +++ FResultSet.cxx 2007-09-20 05:54:38+0000 1.97.118.2 @@ -4,9 +4,9 @@ * * $RCSfile: FResultSet.cxx,v $ * - * $Revision: 1.97.118.1 $ + * $Revision: 1.97.118.2 $ * - * last change: $Author: oj $ $Date: 2007/08/09 07:51:16 $ + * last change: $Author: oj $ $Date: 2007/09/20 05:54:38 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1059,6 +1059,10 @@ // now set the bookmark for outside *(*m_aRow->begin()) = sal_Int32(m_nRowPos + 1); + if ( (bRetrieveData || m_pSQLAnalyzer->hasRestriction()) && m_pSQLAnalyzer->hasFunctions() ) + { + m_pSQLAnalyzer->setSelectionEvaluationResult(m_aSelectRow,m_aColMapping); + } } else // Index muss weiter aufgebaut werden { File [changed]: fcomp.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/fcomp.cxx?r1=1.26&r2=1.26.118.1 Delta lines: +5 -3 ------------------- --- fcomp.cxx 2006-09-17 02:36:18+0000 1.26 +++ fcomp.cxx 2007-09-20 05:54:38+0000 1.26.118.1 @@ -4,9 +4,9 @@ * * $RCSfile: fcomp.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.26.118.1 $ * - * last change: $Author: obo $ $Date: 2006/09/17 02:36:18 $ + * last change: $Author: oj $ $Date: 2007/09/20 05:54:38 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -892,6 +892,7 @@ case SQL_TOKEN_MOD: case SQL_TOKEN_ROUND: case SQL_TOKEN_LOGF: + case SQL_TOKEN_LOG: case SQL_TOKEN_POWER: case SQL_TOKEN_ATAN2: case SQL_TOKEN_PI: @@ -939,6 +940,7 @@ pOperator = new OOp_Round(); break; case SQL_TOKEN_LOGF: + case SQL_TOKEN_LOG: pOperator = new OOp_Log(); break; case SQL_TOKEN_POWER: --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
