From 984ba8792b6d790223210ac570cbbdf368a953f7 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Mon, 14 Sep 2020 14:17:58 +0200 Subject: [PATCH] fix tablespace postgres --- database/postgres/mode/tablespace.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/database/postgres/mode/tablespace.pm b/database/postgres/mode/tablespace.pm index 0248da07b..2140bcb94 100644 --- a/database/postgres/mode/tablespace.pm +++ b/database/postgres/mode/tablespace.pm @@ -77,9 +77,9 @@ sub manage_selection { next; } - $self->{tablespaces}->{ $_->[0] } = { - display => $_->[0], - space_used => $_->[1] + $self->{tablespaces}->{ $row->[0] } = { + display => $row->[0], + space_used => $row->[1] }; } }