Filename | /usr/share/koha/lib/Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm |
Statements | Executed 10 statements in 148µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 16µs | 173µs | BEGIN@2 | Koha::QueryParser::Driver::PQF::query_plan::node::atom::
1 | 1 | 1 | 12µs | 16µs | BEGIN@4 | Koha::QueryParser::Driver::PQF::query_plan::node::atom::
1 | 1 | 1 | 11µs | 23µs | BEGIN@5 | Koha::QueryParser::Driver::PQF::query_plan::node::atom::
0 | 0 | 0 | 0s | 0s | target_syntax | Koha::QueryParser::Driver::PQF::query_plan::node::atom::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package Koha::QueryParser::Driver::PQF::query_plan::node::atom; | ||||
2 | 3 | 36µs | 2 | 329µs | # spent 173µs (16+156) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@2 which was called:
# once (16µs+156µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 2 # spent 173µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@2
# spent 156µs making 1 call to base::import |
3 | |||||
4 | 3 | 27µs | 2 | 19µs | # spent 16µs (12+3) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@4 which was called:
# once (12µs+3µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 4 # spent 16µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@4
# spent 3µs making 1 call to strict::import |
5 | 3 | 83µs | 2 | 35µs | # spent 23µs (11+12) within Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@5 which was called:
# once (11µs+12µs) by Koha::QueryParser::Driver::PQF::BEGIN@14 at line 5 # spent 23µs making 1 call to Koha::QueryParser::Driver::PQF::query_plan::node::atom::BEGIN@5
# spent 12µs making 1 call to warnings::import |
6 | |||||
7 | =head1 NAME | ||||
8 | |||||
- - | |||||
22 | sub target_syntax { | ||||
23 | my ($self, $server) = @_; | ||||
24 | |||||
25 | my $content = $self->content; | ||||
26 | $content =~ s/"/\\"/g; | ||||
27 | |||||
28 | return ' "' . $content . '" '; | ||||
29 | } | ||||
30 | |||||
31 | 1 | 2µs | 1; |