[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929307#action_12929307
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929306#action_12929306
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929305#action_12929305
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929303#action_12929303
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929301#action_12929301
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929300#action_12929300
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929299#action_12929299
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929298#action_12929298
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929297#action_12929297
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929296#action_12929296
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929295#action_12929295
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929294#action_12929294
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929292#action_12929292
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929290#action_12929290
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929289#action_12929289
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929285#action_12929285
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929283#action_12929283
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929282#action_12929282
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929281#action_12929281
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929280#action_12929280
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929279#action_12929279
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929278#action_12929278
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929277#action_12929277
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929275#action_12929275
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929274#action_12929274
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929273#action_12929273
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929270#action_12929270
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929269#action_12929269
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929268#action_12929268
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929266#action_12929266
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929265#action_12929265
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929264#action_12929264
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929262#action_12929262
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929260#action_12929260
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929259#action_12929259
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929258#action_12929258
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929257#action_12929257
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929256#action_12929256
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929255#action_12929255
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929253#action_12929253
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929252#action_12929252
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929251#action_12929251
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929250#action_12929250
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929249#action_12929249
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929246#action_12929246
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929245#action_12929245
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929244#action_12929244
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929243#action_12929243
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929241#action_12929241
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929240#action_12929240
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929238#action_12929238
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929236#action_12929236
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929234#action_12929234
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929233#action_12929233
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929232#action_12929232
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929231#action_12929231
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929230#action_12929230
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929228#action_12929228
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929227#action_12929227
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929226#action_12929226
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929225#action_12929225
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929224#action_12929224
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929222#action_12929222
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929221#action_12929221
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929218#action_12929218
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929216#action_12929216
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929215#action_12929215
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929214#action_12929214
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929213#action_12929213
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Bad array check in _users/_design/_auth

2010-11-06 Thread Gabriel Farrell
In trying to figure out how to test for an array value in
validate_doc_update I ran across the following in
_users/_design/_auth:

if (!(newDoc.roles && (typeof newDoc.roles.length !== 'undefined'))) {
  throw({forbidden: 'doc.roles must be an array'});
}

Strings also have a length method, so this is a bad test for an array.
Setting "roles" to a string for any user got no complaint from
validate_doc_update, but thereafter I could no longer perform any
administrative tasks in Futon, nor log in or out, and I got "An error
occurred getting session info: function_clause" popping up on every
page. Deleting the cookie allowed me to log back in and fix the doc.

Now that I look at it, there's also an erroneous exclamation point at
the start of that condition.

After a lot of trial and error I got it working with the following:

if (newDoc.roles && !(eval(uneval(newDoc.roles)) instanceof Array)) {
throw({forbidden: 'doc.roles must be an array'});
}

If there's a less-convoluted way to test for an array, I'd be happy to see it.

Should I put this in JIRA? If so, would the component be Futon?


Bad array check in _users/_design/_auth

2010-11-06 Thread Gabriel Farrell
In trying to figure out how to test for an array value in
validate_doc_update I ran across the following in
_users/_design/_auth:

   if (!(newDoc.roles && (typeof newDoc.roles.length !== 'undefined'))) {
     throw({forbidden: 'doc.roles must be an array'});
   }

Strings also have a length method, so this is a bad test for an array.
Setting "roles" to a string for any user got no complaint from
validate_doc_update, but thereafter I could no longer perform any
administrative tasks in Futon, nor log in or out, and I got "An error
occurred getting session info: function_clause" popping up on every
page. Deleting the cookie allowed me to log back in and fix the doc.

Now that I look at it, there's also an erroneous exclamation point at
the start of that condition.

After a lot of trial and error I got it working with the following:

   if (newDoc.roles && !(eval(uneval(newDoc.roles)) instanceof Array)) {
       throw({forbidden: 'doc.roles must be an array'});
   }

If there's a less-convoluted way to test for an array, I'd be happy to see it.

Should I put this in JIRA? If so, would the component be Futon?


Gabriel


[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929211#action_12929211
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929210#action_12929210
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929208#action_12929208
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929207#action_12929207
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929206#action_12929206
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929205#action_12929205
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929204#action_12929204
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929202#action_12929202
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929201#action_12929201
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929200#action_12929200
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929198#action_12929198
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929196#action_12929196
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929194#action_12929194
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929193#action_12929193
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929192#action_12929192
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929191#action_12929191
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929189#action_12929189
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929187#action_12929187
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929186#action_12929186
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929185#action_12929185
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929183#action_12929183
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929182#action_12929182
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929181#action_12929181
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929180#action_12929180
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929179#action_12929179
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929178#action_12929178
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929177#action_12929177
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929176#action_12929176
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (COUCHDB-937) inclusive_end does not work as expected

2010-11-06 Thread postmas...@blackrock.com (JIRA)

[ 
https://issues.apache.org/jira/browse/COUCHDB-937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12929175#action_12929175
 ] 

postmas...@blackrock.com commented on COUCHDB-937:
--

Please note that the address:
 dev@couchdb.apache.org
will cease working on December 1, 2010.  Please update your contact address to 
the same address @blackrock.com.

Thank you.

THIS MESSAGE AND ANY ATTACHMENTS ARE CONFIDENTIAL, PROPRIETARY, AND MAY BE 
PRIVILEGED.  If this message was misdirected, BlackRock, Inc. and its 
subsidiaries, ("BlackRock") does not waive any confidentiality or privilege.  
If you are not the intended recipient, please notify us immediately and destroy 
the message without disclosing its contents to anyone.  Any distribution, use 
or copying of this e-mail or the information it contains by other than an 
intended recipient is unauthorized.  The views and opinions expressed in this 
e-mail message are the author's own and may not reflect the views and opinions 
of BlackRock, unless the author is authorized by BlackRock to express such 
views or opinions on its behalf.  All email sent to or from this address is 
subject to electronic storage and review by BlackRock.  Although BlackRock 
operates anti-virus programs, it does not accept responsibility for any damage 
whatsoever caused by viruses being passed.




> inclusive_end does not work as expected
> ---
>
> Key: COUCHDB-937
> URL: https://issues.apache.org/jira/browse/COUCHDB-937
> Project: CouchDB
>  Issue Type: Bug
>Affects Versions: 1.0.1
> Environment: x86 64bit Arch Linux 2.6.35
>Reporter: Robert Newson
>
> On behalf of Marco Monteiro;
> I expected both of the following queries to return the result of the first 
> one. 
> The difference betwen the two queries is the inclusive_end argument. 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>true)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
>  => nil 
> ruby-1.9.2-p0 > 
> db.view("calculate/work_duration_by_project_id_and_start_time", 
> :group_level=>2, :startkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2000"], 
> :endkey => ["0da7979149f2d71f1f5c2361c400c8f2", "2011"], 
> :inclusive_end=>false)["rows"].each do |r| puts r end; nil 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2000-03-01 00:00:00"], 
> "value"=>12340} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-19 23:00:00"], 
> "value"=>8400} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-24 23:00:00"], 
> "value"=>12900} 
> {"key"=>["0da7979149f2d71f1f5c2361c400c8f2", "2010-10-28 23:00:00"], 
> "value"=>70975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c11d5", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c6920", "2010-10-28 23:00:00"], 
> "value"=>16975} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c73ee", "2010-10-28 23:00:00"], 
> "value"=>24100} 
> {"key"=>["0da7979149f2d71f1f5c2361c40c7ddb", "2010-10-28 23:00:00"], 
> "value"=>7275} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2000-03-01 00:00:00"], 
> "value"=>600} 
> {"key"=>["5465fdb28f9aae885dba76e4860010d4", "2010-10-27 23:00:00"], 
> "value"=>7200} 
> {"key"=>["5465fdb28f9aae885dba76e486001d07", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860020b4", "2000-03-01 00:00:00"], 
> "value"=>1420} 
> {"key"=>["5465fdb28f9aae885dba76e4860021c8", "2000-03-01 00:00:00"], 
> "value"=>600} 
>  => nil 
> All other agruments being equal, I expect a query with inclusive_end set to 
> true to never return less rows than one with inclusive_end set to false. 
> Am I missing something? 
> I have checked the request made by the CouchRest library (this could be a 
> CouchRest bug), and the request url is as expected. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



  1   2   3   >