use camelCase aNotB

This commit is contained in:
pzhdfy 2022-08-17 11:24:19 +08:00
parent 40e0192bbc
commit 172b5025e2
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ public:
u->update(theta_intersection.get_result());
}
void a_not_b(const ThetaSketchData & rhs)
void aNotB(const ThetaSketchData & rhs)
{
datasketches::theta_union * u = getSkUnion();

View File

@ -53,7 +53,7 @@ namespace DB
{
static void apply(AggregateFunctionUniqThetaData & sketch_data_1, const AggregateFunctionUniqThetaData & sketch_data_2)
{
sketch_data_1.set.a_not_b(sketch_data_2.set);
sketch_data_1.set.aNotB(sketch_data_2.set);
}
};