diff options
author | Ocke Janssen [oj] <Ocke.Janssen@sun.com> | 2010-05-28 11:37:27 +0200 |
---|---|---|
committer | Ocke Janssen [oj] <Ocke.Janssen@sun.com> | 2010-05-28 11:37:27 +0200 |
commit | b8076ccb49b2fa9730230490b4c34d15878a8ad7 (patch) | |
tree | 4fc2670d836be908f6d9933c7a0977d87954a1db /connectivity/source/drivers | |
parent | 7e53e4596a9460fb3d4750f6cf51f8d9f03e2544 (diff) |
dba33f: #i111900# fix between
Diffstat (limited to 'connectivity/source/drivers')
-rw-r--r-- | connectivity/source/drivers/file/fcomp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/file/fcomp.cxx b/connectivity/source/drivers/file/fcomp.cxx index 0588b15a158f..eeaec1ff40f1 100644 --- a/connectivity/source/drivers/file/fcomp.cxx +++ b/connectivity/source/drivers/file/fcomp.cxx @@ -333,8 +333,8 @@ OOperand* OPredicateCompiler::execute_BETWEEN(OSQLParseNode* pPredicateNode) thr OSQLParseNode* pColumn = pPredicateNode->getChild(0); const OSQLParseNode* pPart2 = pPredicateNode->getChild(1); - OSQLParseNode* p1stValue = pPart2->getChild(3); - OSQLParseNode* p2ndtValue = pPart2->getChild(5); + OSQLParseNode* p1stValue = pPart2->getChild(2); + OSQLParseNode* p2ndtValue = pPart2->getChild(4); if ( !(p1stValue->getNodeType() == SQL_NODE_STRING || SQL_ISRULE(p1stValue,parameter)) |