mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Merge pull request #33510 from bharatnc/ncb/h3-misc-minor-fixes
fix variable name in h3 misc funcs
This commit is contained in:
commit
62babe928a
@ -60,8 +60,8 @@ public:
|
||||
|
||||
for (size_t row = 0; row < input_rows_count; ++row)
|
||||
{
|
||||
const UInt64 resolution = data[row];
|
||||
Float64 res = cellAreaM2(resolution);
|
||||
const UInt64 index = data[row];
|
||||
Float64 res = cellAreaM2(index);
|
||||
dst_data[row] = res;
|
||||
}
|
||||
|
||||
|
@ -60,8 +60,8 @@ public:
|
||||
|
||||
for (size_t row = 0; row < input_rows_count; ++row)
|
||||
{
|
||||
const UInt64 resolution = data[row];
|
||||
Float64 res = cellAreaRads2(resolution);
|
||||
const UInt64 index = data[row];
|
||||
Float64 res = cellAreaRads2(index);
|
||||
dst_data[row] = res;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user