Kaydet (Commit) ed9f8387 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

Revert "fdo#65653, fdo#65619, fdo#65216: Missing check"

This reverts commit 10777b37.

The problem has been fixed in a more safe way by making columnMatchP
treat the case where rParam.xField is not set instead of requiring
it from all callers.

Change-Id: Ic68a764e08446a7b669c6030c2bcd55c7d31772b
üst 20499497
......@@ -755,7 +755,7 @@ void OSQLParseNode::impl_parseLikeNodeToString_throw( OUStringBuffer& rString, c
SQLParseNodeParameter aNewParam(rParam);
//aNewParam.bQuote = sal_True; // why setting this to true? @see http://www.openoffice.org/issues/show_bug.cgi?id=75557
if (bSimple && (!rParam.xField.is() || !columnMatchP(m_aChildren[0], rParam)))
if (bSimple && !columnMatchP(m_aChildren[0], rParam))
m_aChildren[0]->impl_parseNodeToString_throw( rString, aNewParam, bSimple );
const OSQLParseNode* pPart2 = m_aChildren[1];
......
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