aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArne Georg Gleditsch <argggh@lxr.linpro.no>2007-12-04 13:05:59 +0100
committerArne Georg Gleditsch <argggh@lxr.linpro.no>2007-12-04 13:05:59 +0100
commit638561d6543da2ccf981ceab456e0b64789a5524 (patch)
tree21e0b3904ff0ccebd2d2cb468f2242b5bd0fa918
parent738dd43449b86da6f61ad10ee7f2f0cea6f505f5 (diff)
Hardcoded prefix reference snuck in...
-rw-r--r--lib/LXRng/Index/DBI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LXRng/Index/DBI.pm b/lib/LXRng/Index/DBI.pm
index 2069db3..f22ebab 100644
--- a/lib/LXRng/Index/DBI.pm
+++ b/lib/LXRng/Index/DBI.pm
@@ -532,7 +532,7 @@ sub files_by_wildcard {
my $sth = $$self{'sth'}{'files_by_wildcard'} ||=
$dbh->prepare(qq{
select f.path
- from lxgit_files f, lxgit_revisions v, lxgit_filereleases r
+ from ${pre}files f, ${pre}revisions v, ${pre}filereleases r
where f.path like ? and f.id = v.id_file and v.id = r.id_rfile
and r.id_release = ?
order by f.path});