|
Load some data.- echo "USE '/'; INSERT INTO foo VALUES('001', 'c1', 'very'), \
- ('000', 'c1', 'Hypertable'), ('001', 'c2', 'easy'), ('000', 'c2', 'is');" \
- | /opt/hypertable/current/bin/ht shell --batch
复制代码 Dump the table.- echo "USE '/'; SELECT * FROM foo;" \
- | /opt/hypertable/current/bin/ht shell --batch
复制代码 The output of this command should look like:- 000 c1 Hypertable
- 000 c2 is
- 001 c1 very
- 001 c2 easy
复制代码 |
|