(column, pivotValue)
| 126 | breakRetrieval = False |
| 127 | |
| 128 | def _(column, pivotValue): |
| 129 | if column == colList[0]: |
| 130 | query = dumpNode.query.replace("'%s'" if unescaper.escape(pivotValue, False) != pivotValue else "%s", "%s") % (agent.preprocessField(table, column), table, agent.preprocessField(table, column), unescaper.escape(pivotValue, False)) |
| 131 | else: |
| 132 | query = dumpNode.query2.replace("'%s'" if unescaper.escape(pivotValue, False) != pivotValue else "%s", "%s") % (agent.preprocessField(table, column), table, agent.preprocessField(table, colList[0]), unescaper.escape(pivotValue, False) if SINGLE_QUOTE_MARKER not in dumpNode.query2 else pivotValue) |
| 133 | |
| 134 | query = agent.whereQuery(query) |
| 135 | return unArrayizeValue(inject.getValue(query, blind=blind, time=blind, union=not blind, error=not blind)) |
| 136 | |
| 137 | try: |
| 138 | for i in xrange(count): |
no test coverage detected