File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -288,8 +288,8 @@ _PG_init(void)
288288 NULL
289289 );
290290
291- DefineCustomIntVariable ("aqo.k_neighbors_threshold " ,
292- "Set the threshold of number of neighbors for predicting. " ,
291+ DefineCustomIntVariable ("aqo.min_neighbors_for_predicting " ,
292+ "Set how many neighbors the cardinality prediction will be calculated " ,
293293 NULL ,
294294 & aqo_k ,
295295 3 ,
@@ -301,7 +301,7 @@ _PG_init(void)
301301 NULL );
302302
303303 DefineCustomBoolVariable ("aqo.predict_with_few_neighbors" ,
304- "Make prediction with less neighbors than we should have ." ,
304+ "Establish the ability to make predictions with fewer neighbors than were found ." ,
305305 NULL ,
306306 & aqo_predict_with_few_neighbors ,
307307 true,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ SET aqo.join_threshold = 0;
33SET aqo.mode = 'learn';
44SET aqo.show_details = 'on';
55set aqo.show_hash = 'off';
6- SET aqo.k_neighbors_threshold = 1;
6+ SET aqo.min_neighbors_for_predicting = 1;
77SET enable_nestloop = 'off';
88SET enable_mergejoin = 'off';
99SET enable_material = 'off';
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ SET aqo.join_threshold = 0;
33SET aqo .mode = ' learn' ;
44SET aqo .show_details = ' on' ;
55set aqo .show_hash = ' off' ;
6- SET aqo .k_neighbors_threshold = 1 ;
6+ SET aqo .min_neighbors_for_predicting = 1 ;
77SET enable_nestloop = ' off' ;
88SET enable_mergejoin = ' off' ;
99SET enable_material = ' off' ;
You can’t perform that action at this time.
0 commit comments