class PG::Result

def inspect

## Return a String representation of the object suitable for debugging.
def inspect
	str = self.to_s
	str[-1,0] = " status=#{res_status(result_status)} ntuples=#{ntuples} nfields=#{nfields} cmd_tuples=#{cmd_tuples}"
	return str
end