File fix-bad-cs-comments.patch of Package ironpython
diff -uprN main-ipy-2.7.5.old/Languages/IronPython/IronPython.SQLite/c#sqlite/select_c.cs main-ipy-2.7.5/Languages/IronPython/IronPython.SQLite/c#sqlite/select_c.cs
--- main-ipy-2.7.5.old/Languages/IronPython/IronPython.SQLite/c#sqlite/select_c.cs 2014-12-06 19:06:58.000000000 +0300
+++ main-ipy-2.7.5/Languages/IronPython/IronPython.SQLite/c#sqlite/select_c.cs 2017-05-03 22:57:21.955801885 +0300
@@ -4969,7 +4969,7 @@ if (sqlite3AuthCheck(pParse, SQLITE_SELE
Debug.Assert( !ExprHasProperty( p.pEList.a[0].pExpr, EP_xIsSelect ) );
pMinMax = sqlite3ExprListDup( db, p.pEList.a[0].pExpr.x.pList, 0 );
pDel = pMinMax;
- if ( pMinMax != null )///* && 0 == db.mallocFailed */ )
+ if ( pMinMax != null )// /* && 0 == db.mallocFailed */ )
{
pMinMax.a[0].sortOrder = (u8)( flag != WHERE_ORDERBY_MIN ? 1 : 0 );
pMinMax.a[0].pExpr.op = TK_COLUMN;
diff -uprN main-ipy-2.7.5.old/Languages/IronPython/IronPython.SQLite/c#sqlite/where_c.cs main-ipy-2.7.5/Languages/IronPython/IronPython.SQLite/c#sqlite/where_c.cs
--- main-ipy-2.7.5.old/Languages/IronPython/IronPython.SQLite/c#sqlite/where_c.cs 2014-12-06 19:06:58.000000000 +0300
+++ main-ipy-2.7.5/Languages/IronPython/IronPython.SQLite/c#sqlite/where_c.cs 2017-05-03 22:56:37.155801885 +0300
@@ -5795,7 +5795,7 @@ whereBeginError:
** that reference the table and converts them into opcodes that
** reference the index.
*/
- if ( ( pLevel.plan.wsFlags & WHERE_INDEXED ) != 0 )///* && 0 == db.mallocFailed */ )
+ if ( ( pLevel.plan.wsFlags & WHERE_INDEXED ) != 0 )// /* && 0 == db.mallocFailed */ )
{
int k, j, last;
VdbeOp pOp;