From 050f9e110a40eca49fa44ca90e25aeefcd9f6638 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 28 Jun 2023 12:52:57 +0000 Subject: [PATCH] Bug 33537: Fix some POD in Installer.pm Test plan: Run qa tools. Signed-off-by: Marcel de Rooy Signed-off-by: Pedro Amorim --- C4/Installer.pm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/C4/Installer.pm b/C4/Installer.pm index 1a2d93e82c..d41694d9d7 100644 --- a/C4/Installer.pm +++ b/C4/Installer.pm @@ -686,6 +686,12 @@ sub column_exists { return $exists; } +=head2 TableExists + + Test if a table exists + +=cut + sub TableExists { # Legacy name my $table = shift; eval { @@ -698,6 +704,12 @@ sub TableExists { # Legacy name return 0; } +=head2 table_exists + + Better name for legacy TableExists + +=cut + sub table_exists { # More consistently named alias for TableExists return TableExists(@_); } @@ -1041,7 +1053,7 @@ sub sanitize_zero_date { } } -=head3 has_non_dynamic_row_format +=head2 has_non_dynamic_row_format Return the number of tables with row_format that is not Dynamic -- 2.30.2