You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/12 20:53:43 UTC

couch-index commit: updated refs/heads/1843-feature-bigcouch to 510599f

Updated Branches:
  refs/heads/1843-feature-bigcouch aeb7911eb -> 510599f10


Remove old notes module

This module was never intended to be compiled. Including it just
confuses rebar so we'll remove it.


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/commit/510599f1
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/tree/510599f1
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/diff/510599f1

Branch: refs/heads/1843-feature-bigcouch
Commit: 510599f103d74729839d210155852e79d1ec8402
Parents: aeb7911
Author: Paul J. Davis <pa...@gmail.com>
Authored: Tue Feb 4 17:31:52 2014 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Feb 4 17:31:52 2014 -0600

----------------------------------------------------------------------
 src/couch_index_api.erl | 54 --------------------------------------------
 1 file changed, 54 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/510599f1/src/couch_index_api.erl
----------------------------------------------------------------------
diff --git a/src/couch_index_api.erl b/src/couch_index_api.erl
deleted file mode 100644
index 9d3a67c..0000000
--- a/src/couch_index_api.erl
+++ /dev/null
@@ -1,54 +0,0 @@
-% Licensed under the Apache License, Version 2.0 (the "License"); you may not
-% use this file except in compliance with the License. You may obtain a copy of
-% the License at
-%
-%   http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-% License for the specific language governing permissions and limitations under
-% the License.
-
--module(couch_index_api).
-
-get(Field, State) ->
-    ok.
-
-init(Db, Ddoc) ->
-    ok.
-
-open(Db, State) ->
-    ok.
-
-close(State) ->
-    ok.
-
-delete(State) ->
-    ok.
-
-reset(State) ->
-    ok.
-
-
-start_update(State, PurgedState, NumChanges) ->
-    {ok, State}.
-
-purge(Db, PurgeSeq, PurgedIdRevs, State) ->
-    ok.
-
-process_doc(Doc, Seq, State) ->
-    ok.
-
-finish_update(State) ->
-    {ok, State}.
-
-commit(State) ->
-    ok.
-
-
-compact(Parent, State, Opts) ->
-    ok.
-
-swap_compacted(OldState, NewState) ->
-    ok.