my $qtxt_common_rev_ok = sub {
my ($table) = @_;
[<<END];
- ($table.name LIKE E'built\\_revision\\_%' OR
- $table.name LIKE E'revision\\_%')
+ ($table.name LIKE 'built\_revision\_%' OR
+ $table.name LIKE 'revision\_%')
END
};
my $qtxt_common_tree_ok = sub {
my ($table) = @_;
[<<END];
- $table.name LIKE E'tree\\_%'
+ $table.name LIKE 'tree\_%'
END
};
INTO TEMP bisection_runvars
FROM runvars
WHERE flight=? AND job=? AND synth='f'
- AND name NOT LIKE E'revision\\_%'
+ AND name NOT LIKE 'revision\_%'
AND name NOT LIKE '%host'
END
my (@trevisions) = split / /, $choose->{Rtuple};
our $revisionsq= db_prepare(<<END);
SELECT * FROM runvars
WHERE flight=? AND job=?
- AND name LIKE E'built\\_revision\\_\%'
+ AND name LIKE 'built\_revision\_%'
END
# (We report on non-main-revision jobs just as for main-revision ones.)
our $buildsq= db_prepare(<<END);
SELECT * FROM runvars
WHERE flight=? AND job=?
- AND name LIKE E'\%buildjob'
+ AND name LIKE '%buildjob'
END
sub processjobbranch ($$) {