Skip to content

Commit

Permalink
Whitespace fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dcamper committed Dec 27, 2023
1 parent cd56cfd commit 03be8ee
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions ecl/hql/hqlgram2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9004,16 +9004,16 @@ void HqlGram::setPluggableModeExpr(attribute & targetAttr, attribute & mode, Hql
// TODO: Look for a plugin filetype of name fileFormatStr
DBGLOG("HqlGram::setPluggableModeExpr processing file type %s", fileFormatStr.str());

// Following is a placeholder to make the parser happy -- note the hardwiring
// of CSV format....
if (options)
{
targetAttr.setExpr(createValue(no_csv, makeNullType(), *options));
}
else
{
targetAttr.setExpr(createValue(no_csv, makeNullType()));
}
// Following is a placeholder to make the parser happy -- note the hardwiring
// of CSV format....
if (options)
{
targetAttr.setExpr(createValue(no_csv, makeNullType(), *options));
}
else
{
targetAttr.setExpr(createValue(no_csv, makeNullType()));
}
}

void HqlGram::checkValidRecordMode(IHqlExpression * dataset, attribute & atr, attribute & modeattr)
Expand Down

0 comments on commit 03be8ee

Please sign in to comment.