mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-29 22:49:41 +03:00 
			
		
		
		
	Run pgindent, pgperltidy, and reformat-dat-files. This set of diffs is a bit larger than typical. We've updated to pg_bsd_indent 2.1.2, which properly indents variable declarations that have multi-line initialization expressions (the continuation lines are now indented one tab stop). We've also updated to perltidy version 20230309 and changed some of its settings, which reduces its desire to add whitespace to lines to make assignments etc. line up. Going forward, that should make for fewer random-seeming changes to existing code. Discussion: https://postgr.es/m/20230428092545.qfb3y5wcu4cm75ur@alvherre.pgsql
		
			
				
	
	
		
			92 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/perl
 | |
| 
 | |
| # Copyright (c) 2021-2023, PostgreSQL Global Development Group
 | |
| 
 | |
| # contrib/intarray/bench/create_test.pl
 | |
| 
 | |
| use strict;
 | |
| use warnings;
 | |
| 
 | |
| print <<EOT;
 | |
| create table message (
 | |
| 	mid	int not null,
 | |
| 	sections	int[]
 | |
| );
 | |
| create table message_section_map (
 | |
| 	mid	int not null,
 | |
| 	sid	int not null
 | |
| );
 | |
| 
 | |
| EOT
 | |
| 
 | |
| open(my $msg, '>', "message.tmp") || die;
 | |
| open(my $map, '>', "message_section_map.tmp") || die;
 | |
| 
 | |
| srand(1);
 | |
| 
 | |
| #foreach my $i ( 1..1778 ) {
 | |
| #foreach my $i ( 1..3443 ) {
 | |
| #foreach my $i ( 1..5000 ) {
 | |
| #foreach my $i ( 1..29362 ) {
 | |
| #foreach my $i ( 1..33331 ) {
 | |
| #foreach my $i ( 1..83268 ) {
 | |
| foreach my $i (1 .. 200000)
 | |
| {
 | |
| 	my @sect;
 | |
| 	if (rand() < 0.7)
 | |
| 	{
 | |
| 		$sect[0] = int((rand()**4) * 100);
 | |
| 	}
 | |
| 	else
 | |
| 	{
 | |
| 		my %hash;
 | |
| 		@sect =
 | |
| 		  grep { $hash{$_}++; $hash{$_} <= 1 }
 | |
| 		  map { int((rand()**4) * 100) } 0 .. (int(rand() * 5));
 | |
| 	}
 | |
| 	if ($#sect < 0 || rand() < 0.1)
 | |
| 	{
 | |
| 		print $msg "$i\t\\N\n";
 | |
| 	}
 | |
| 	else
 | |
| 	{
 | |
| 		print $msg "$i\t{" . join(',', @sect) . "}\n";
 | |
| 		print $map "$i\t$_\n" foreach @sect;
 | |
| 	}
 | |
| }
 | |
| close $map;
 | |
| close $msg;
 | |
| 
 | |
| copytable('message');
 | |
| copytable('message_section_map');
 | |
| 
 | |
| print <<EOT;
 | |
| 
 | |
| CREATE unique index message_key on message ( mid );
 | |
| --CREATE unique index message_section_map_key1 on message_section_map ( mid, sid );
 | |
| CREATE unique index message_section_map_key2 on message_section_map ( sid, mid );
 | |
| CREATE INDEX message_rdtree_idx on message using gist ( sections gist__int_ops );
 | |
| VACUUM ANALYZE;
 | |
| 
 | |
| select count(*) from message;
 | |
| select count(*) from message_section_map;
 | |
| 
 | |
| 
 | |
| 
 | |
| EOT
 | |
| 
 | |
| 
 | |
| unlink 'message.tmp', 'message_section_map.tmp';
 | |
| 
 | |
| sub copytable
 | |
| {
 | |
| 	my $t = shift;
 | |
| 
 | |
| 	print "COPY $t from stdin;\n";
 | |
| 	open(my $fff, '<', "$t.tmp") || die;
 | |
| 	while (<$fff>) { print; }
 | |
| 	close $fff;
 | |
| 	print "\\.\n";
 | |
| 	return;
 | |
| }
 |