mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
parent
483409f2e1
commit
ae17810201
@ -8,7 +8,6 @@
|
|||||||
|
|
||||||
namespace ErrorCodes
|
namespace ErrorCodes
|
||||||
{
|
{
|
||||||
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
||||||
extern const int NOT_IMPLEMENTED;
|
extern const int NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -195,7 +195,7 @@ public:
|
|||||||
|
|
||||||
while (j < size - 1)
|
while (j < size - 1)
|
||||||
{
|
{
|
||||||
if (value[j].first == value[j + 1].first)
|
if (tmp_values[j].first == tmp_values[j + 1].first)
|
||||||
{
|
{
|
||||||
// rank of (j + 1)th number
|
// rank of (j + 1)th number
|
||||||
rank += 1;
|
rank += 1;
|
||||||
@ -232,7 +232,7 @@ public:
|
|||||||
|
|
||||||
while (j < size - 1)
|
while (j < size - 1)
|
||||||
{
|
{
|
||||||
if (value[j].second == value[j + 1].second)
|
if (tmp_values[j].second == tmp_values[j + 1].second)
|
||||||
{
|
{
|
||||||
// rank of (j + 1)th number
|
// rank of (j + 1)th number
|
||||||
rank += 1;
|
rank += 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user