-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
assign fss without conditions in estimation of group number
- Loading branch information
Andrey Kazarinov
authored and
Daniil Anisimov
committed
Jan 19, 2024
1 parent
a87a24f
commit 1978fee
Showing
2 changed files
with
80 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
use strict; | ||
use warnings; | ||
|
||
use Config; | ||
use PostgreSQL::Test::Cluster; | ||
use PostgreSQL::Test::Utils; | ||
|
||
use Test::More tests => 2; | ||
|
||
my $node = PostgreSQL::Test::Cluster->new('aqotest'); | ||
$node->init; | ||
$node->append_conf('postgresql.conf', qq{ | ||
shared_preload_libraries = 'aqo' | ||
log_statement = 'ddl' | ||
aqo.join_threshold = 0 | ||
aqo.mode = 'learn' | ||
aqo.show_details = 'on' | ||
aqo.show_hash = 'on' | ||
aqo.min_neighbors_for_predicting = 1 | ||
enable_nestloop = 'off' | ||
enable_mergejoin = 'off' | ||
enable_material = 'off' | ||
}); | ||
|
||
$node->start(); | ||
$node->safe_psql('postgres', 'CREATE EXTENSION aqo'); | ||
|
||
# Create tables with correlated datas in columns | ||
|
||
$node->safe_psql('postgres', 'CREATE TABLE a (x1 int, x2 int, x3 int); | ||
INSERT INTO a (x1, x2, x3) SELECT mod(ival,10), mod(ival,10), mod(ival,10) FROM generate_series(1,1000) As ival'); | ||
|
||
$node->safe_psql('postgres', 'CREATE TABLE b (y1 int, y2 int, y3 int); | ||
INSERT INTO b (y1, y2, y3) SELECT mod(ival + 1,10), mod(ival + 1,10), mod(ival + 1,10) FROM generate_series(1,1000) As ival'); | ||
|
||
my $result; | ||
|
||
my $plan = $node->safe_psql('postgres', 'EXPLAIN (analyze true, verbose true) | ||
SELECT a.x1, b.y1, COUNT(*) FROM a, b WHERE a.x2 = b.y2 GROUP BY a.x1, b.y1;'); | ||
my @fss = $plan =~ /fss=(-?\d+)/g; | ||
|
||
$result = $node->safe_psql('postgres', 'SELECT count(*) FROM aqo_data;'); | ||
is($result, 4); | ||
|
||
$result = $node->safe_psql('postgres', 'SELECT fss FROM aqo_data;'); | ||
|
||
my @storage = split(/\n/, $result); | ||
|
||
# compare fss from plan and fss from storage | ||
my $test2 = 1; | ||
if (scalar @fss == scalar @storage) { | ||
foreach my $numb1 (@fss) { | ||
my $found = 0; | ||
|
||
# check fss not zero | ||
if ($numb1 == 0) { | ||
$test2 = 0; | ||
last; | ||
} | ||
|
||
foreach my $numb2 (@storage) { | ||
if ($numb2 == $numb1) { | ||
$found = 1; | ||
last; | ||
} | ||
} | ||
|
||
if (!$found) { | ||
$test2 = 0; | ||
last; | ||
} | ||
} | ||
} else { | ||
$test2 = 0; | ||
} | ||
|
||
is($test2, 1); | ||
|
||
$node->stop(); |