summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/couchdb/couch_httpd.erl12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/couchdb/couch_httpd.erl b/src/couchdb/couch_httpd.erl
index 81217a74..b9244b1b 100644
--- a/src/couchdb/couch_httpd.erl
+++ b/src/couchdb/couch_httpd.erl
@@ -251,18 +251,6 @@ handle_db_request(Req, 'POST', {_DbName, Db, ["_compact"]}) ->
handle_db_request(_Req, _Method, {_DbName, _Db, ["_compact"]}) ->
throw({method_not_allowed, "POST"});
-handle_db_request(Req, 'GET', {DbName, _Db, ["_search"]}) ->
- case Req:parse_qs() of
- [{"q", Query}] when (length(Query) > 0) ->
- {ok, Response} = couch_ft_query:execute(DbName, Query),
- send_json(Req, {obj, [{ok, true} | Response]});
- _Error ->
- throw({no_fulltext_query, "Empty Query String"})
- end;
-
-handle_db_request(_Req, _Method, {_DbName, _Db, ["_search"]}) ->
- throw({method_not_allowed, "GET,HEAD"});
-
% View request handlers
handle_db_request(Req, 'GET', {_DbName, Db, ["_all_docs"]}) ->