Skip to content

Commit

Permalink
Update startkey/endkey params to match DP4 naming
Browse files Browse the repository at this point in the history
Change-Id: I6c236351bc8cf5de714827476e313b2db5d8d32b
Reviewed-on: http://review.couchbase.org/14302
Tested-by: John C. Zablocki <john@couchbase.com>
Reviewed-by: Matt Ingenthron <matt@couchbase.com>
  • Loading branch information
jzablocki authored and John C. Zablocki committed Mar 27, 2012
1 parent b3168ca commit bd408a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Couchbase/CouchbaseViewBase.cs
Expand Up @@ -133,10 +133,10 @@ internal abstract class CouchbaseViewBase<T> : IView<T> {
private IHttpRequest CreateRequest(IHttpClient client) {
var retval = client.CreateRequest(this.designDocument + "/_view/" + this.indexName);

AddOptionalRequestParam(retval, "start_key", this.startKey);
AddOptionalRequestParam(retval, "end_key", this.endKey);
AddOptionalRequestParam(retval, "startKey_docid", this.startId);
AddOptionalRequestParam(retval, "endKey_docid", this.endId);
AddOptionalRequestParam(retval, "startkey", this.startKey);
AddOptionalRequestParam(retval, "endkey", this.endKey);
AddOptionalRequestParam(retval, "startkey_docid", this.startId);
AddOptionalRequestParam(retval, "endkey_docid", this.endId);
AddOptionalRequestParam(retval, "skip", this.skip);
AddOptionalRequestParam(retval, "limit", this.limit);

Expand Down

0 comments on commit bd408a8

Please sign in to comment.