summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Sqlite.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2011-12-08 21:01:57 +0100
committerDave Lawrence <dlawrence@mozilla.com>2011-12-08 21:01:57 +0100
commit60fb0c9b84f771a16a8abed0e1847b409b197217 (patch)
tree91630354cc75f081c38a95a30907e9aa2647bc13 /Bugzilla/DB/Sqlite.pm
parent720db163b9814b294b163347d994e513b8771ae7 (diff)
parent62410084926e1473c903c43b53d09c99311746c2 (diff)
downloadbugzilla-60fb0c9b84f771a16a8abed0e1847b409b197217.tar.gz
bugzilla-60fb0c9b84f771a16a8abed0e1847b409b197217.tar.xz
merged with bugzilla/4.2
Diffstat (limited to 'Bugzilla/DB/Sqlite.pm')
-rw-r--r--Bugzilla/DB/Sqlite.pm6
1 files changed, 0 insertions, 6 deletions
diff --git a/Bugzilla/DB/Sqlite.pm b/Bugzilla/DB/Sqlite.pm
index fb6aaba97..e13fd18e1 100644
--- a/Bugzilla/DB/Sqlite.pm
+++ b/Bugzilla/DB/Sqlite.pm
@@ -237,12 +237,6 @@ sub sql_date_math {
return "DATETIME($date, '$operator' || $interval || ' $units')";
}
-sub sql_string_until {
- my ($self, $string, $substring) = @_;
- my $position = $self->sql_position($substring, $string);
- return "SUBSTR($string, 1, $position - 1)"
-}
-
###############
# bz_ methods #
###############