Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions t/ValuesAndExpressions/PreventSQLInjection.run
Original file line number Diff line number Diff line change
Expand Up @@ -306,3 +306,13 @@ $test
$test
? 'insert into ' . $table
: 'update' . ' ' . $table;

## name (GH-14) Another heredoc with variable in last line.
## failures 1
## cut

my $heredoc = <<"HERE"
SELECT
FROM $table
HERE