Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  01_workitems.pl

  Sprache: Shell
 


# Copyright (c) 2021-2025, PostgreSQL Global Development Group

# Verify that work items work correctly

use strict;
use warnings FATAL => 'all';

use PostgreSQL::Test::Utils;
use Test::More;
use PostgreSQL::Test::Cluster;

my $node = PostgreSQL::Test::Cluster->new('tango');
$node->init;
$node->append_conf('postgresql.conf''autovacuum_naptime=1s');
$node->start;

$node->safe_psql('postgres''create extension pageinspect');

# Create a table with an autosummarizing BRIN index
$node->safe_psql(
 'postgres',
 'create table brin_wi (a int) with (fillfactor = 10);
  create index brin_wi_idx on brin_wi using brin (a) with (pages_per_range=1, autosummarize=on);
  '
);
# Another table with an index that requires a snapshot to run
$node->safe_psql(
 'postgres',
 'create table journal (d timestamp) with (fillfactor = 10);
  create function packdate(d timestamp) returns text language plpgsql
    as $$ begin return to_char(d, \'yyyymm\'); end; $$
    returns null on null input immutable;
  create index brin_packdate_idx on journal using brin (packdate(d))
    with (autosummarize = on, pages_per_range = 1);
  '
);

my $count = $node->safe_psql('postgres',
 "select count(*) from brin_page_items(get_raw_page('brin_wi_idx', 2), 'brin_wi_idx'::regclass)"
);
is($count, '1'"initial brin_wi_index index state is correct");
$count = $node->safe_psql('postgres',
 "select count(*) from brin_page_items(get_raw_page('brin_packdate_idx', 2), 'brin_packdate_idx'::regclass)"
);
is($count, '1'"initial brin_packdate_idx index state is correct");

$node->safe_psql('postgres',
 'insert into brin_wi select * from generate_series(1, 100)');
$node->safe_psql('postgres',
 "insert into journal select * from generate_series(timestamp '1976-08-01', '1976-10-28', '1 day')");

$node->poll_query_until(
 'postgres',
 "select count(*) > 1 from brin_page_items(get_raw_page('brin_wi_idx', 2), 'brin_wi_idx'::regclass)",
 't');

$count = $node->safe_psql('postgres',
 "select count(*) from brin_page_items(get_raw_page('brin_wi_idx', 2), 'brin_wi_idx'::regclass)
  where not placeholder;"
);
cmp_ok($count, '>''1'"$count brin_wi_idx ranges got summarized");

$node->poll_query_until(
 'postgres',
 "select count(*) > 1 from brin_page_items(get_raw_page('brin_packdate_idx', 2), 'brin_packdate_idx'::regclass)",
 't');

$count = $node->safe_psql('postgres',
 "select count(*) from brin_page_items(get_raw_page('brin_packdate_idx', 2), 'brin_packdate_idx'::regclass)
  where not placeholder;"
);
cmp_ok($count, '>''1'"$count brin_packdate_idx ranges got summarized");

$node->stop;

done_testing();

Messung V0.5 in Prozent
C=82 H=79 G=80

¤ Dauer der Verarbeitung: 0.24 Sekunden  (vorverarbeitet am  2026-08-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002