Browse Source

Bug 24883: Add POD entry and remove unused variable

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Bernardo Gonzalez Kriegel 4 years ago
committed by Martin Renvoize
parent
commit
52b1314154
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 23
      C4/Installer.pm
  2. 2
      misc/load_yaml.pl

23
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;

2
misc/load_yaml.pl

@ -41,7 +41,7 @@ USAGE
}
# Getting parameters
my ( @files, $dump, $load, $help );
my ( @files, $load, $help );
GetOptions(
'help|h' => \$help,

Loading…
Cancel
Save