From fa7dc92e91ed03fb26d8b9e71cf7782e4dbcaf2a Mon Sep 17 00:00:00 2001 From: Bernardo Gonzalez Kriegel Date: Fri, 20 Mar 2020 19:35:29 -0300 Subject: [PATCH] Bug 24883: Add POD entry and remove unused variable Signed-off-by: Martin Renvoize --- C4/Installer.pm | 23 ++++++++++++++++------- misc/load_yaml.pl | 2 +- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/C4/Installer.pm b/C4/Installer.pm index ec56c0e2d0..db247e5243 100644 --- a/C4/Installer.pm +++ b/C4/Installer.pm @@ -473,15 +473,12 @@ sub set_languages_syspref { C4::Context->clear_syspref_cache(); } -=head2 load_sql - - my $error = $installer->load_sql($filename); +=head2 process_yml_table -Runs the specified input file using a sql loader DBIx::RunSQL, or a yaml loader -Returns any strings sent to STDERR + my $query_info = $installer->process_yml_table($table); -# FIXME This should be improved: sometimes the caller and load_sql warn the same -error. +Analyzes a table loaded in YAML format. +Returns the values required to build an insert statement. =cut @@ -506,6 +503,18 @@ sub process_yml_table { return { query => $query, placeholders => $placeholders, values => \@values }; } +=head2 load_sql + + my $error = $installer->load_sql($filename); + +Runs the specified input file using a sql loader DBIx::RunSQL, or a yaml loader +Returns any strings sent to STDERR + +# FIXME This should be improved: sometimes the caller and load_sql warn the same +error. + +=cut + sub load_sql { my $self = shift; my $filename = shift; diff --git a/misc/load_yaml.pl b/misc/load_yaml.pl index b12d88d886..118c394e13 100755 --- a/misc/load_yaml.pl +++ b/misc/load_yaml.pl @@ -41,7 +41,7 @@ USAGE } # Getting parameters -my ( @files, $dump, $load, $help ); +my ( @files, $load, $help ); GetOptions( 'help|h' => \$help, -- 2.20.1