linearregression / hypertable

Automatically exported from code.google.com/p/hypertable
GNU General Public License v2.0
0 stars 0 forks source link

select deleted cell with cell_predicate. #526

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
hypertable> DESCRIBE TABLE foo1;
<Schema>
  <AccessGroup name="default">
    <ColumnFamily>
      <Name>a</Name>
      <deleted>false</deleted>
    </ColumnFamily>
  </AccessGroup>
</Schema>

2.
hypertable> select * from foo1;
rowkey1 a:a1    value
rowkey1 a:a2    value

3.
delete "a:a1" from foo1 where row="rowkey1";

4 
hypertable> select * from foo1;
rowkey1 a:a2    value

5 
hypertable> select * from foo1 where cell="rowkey1","a:a1";
rowkey1 a:a1    value               //why deleted cell can be selected without 
RETURN_DELETES????

6
Hypertable 0.9.3.4  and Hypertable 0.9.2.7
Linux DPC4 2.6.18-164.el5xen #1 SMP Tue Aug 18 16:06:30 EDT 2009 i686 i686 i386 
GNU/Linux

is this a bug??

Original issue reported on code.google.com by liaoxian...@gmail.com on 21 Oct 2010 at 6:40

GoogleCodeExporter commented 9 years ago

Original comment by nuggetwh...@gmail.com on 14 Jan 2012 at 8:33

GoogleCodeExporter commented 9 years ago
We are also facing this issue and it's this kind of issue where hql is not 
useful anymore. Would be nice if there is someday a patch available cos this 
issue is already more than 2 years old.

Best Regards

Original comment by bert.pas...@gmail.com on 27 Nov 2012 at 2:07