postgresql/contrib/seg/sort-segments.pl
Bruce Momjian 29275b1d17 Update copyright for 2024
Reported-by: Michael Paquier

Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz

Backpatch-through: 12
2024-01-03 20:49:05 -05:00

31 lines
468 B
Perl
Executable File

#!/usr/bin/perl
# Copyright (c) 2021-2024, PostgreSQL Global Development Group
# this script will sort any table with the segment data type in its last column
use strict;
use warnings FATAL => 'all';
my @rows;
while (<>)
{
chomp;
push @rows, $_;
}
foreach (
sort {
my @ar = split("\t", $a);
my $valA = pop @ar;
$valA =~ s/[~<> ]+//g;
@ar = split("\t", $b);
my $valB = pop @ar;
$valB =~ s/[~<> ]+//g;
$valA <=> $valB
} @rows)
{
print "$_\n";
}