Bug 24305: (follow-up) Add small comment for square brackets in get_prepped_report
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Fri, 24 Jan 2020 11:04:05 +0000 (11:04 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 24 Jan 2020 15:19:45 +0000 (15:19 +0000)
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

reports/guided_reports.pl

index 3cae7cd..5059e95 100755 (executable)
@@ -1083,6 +1083,9 @@ sub get_prepped_report {
     my ($sql, $param_names, $sql_params ) = @_;
 
     # First we split out the placeholders
+    # This part of the code supports using [[ table.field | alias ]] in the
+    # query and replaces it by table.field AS alias. Not sure why we would
+    # need it if we can type the latter (which is simpler)?
     my @split = split /\[\[|\]\]/,$sql;
     my $headers;
     for(my $i=0;$i<$#split/2;$i++){ #The placeholders are always the odd elements of the array