-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
When I create a table through the explorer UI or shell, and try to access it with the explorer, I get a 404
CREATE TABLE order_book_modify
(
time TIMESTAMP NOT NULL,
currency_pair VARCHAR NOT NULL,
seq SINT64,
rate DOUBLE NOT NULL,
ask_or_bid VARCHAR NOT NULL,
amount DOUBLE NOT NULL,
PRIMARY KEY (
(currency_pair, time),
currency_pair,
time,
rate,
ask_or_bid,
amount
)
);
When I view it through riak-shell, it's fine:
\x{2705} riak-shell(2)>describe order_book_modify;
+-------------+---------+--------+-------------+---------+--------+----+----------+
| Column | Type |Nullable|Partition Key|Local Key|Interval|Unit|Sort Order|
+-------------+---------+--------+-------------+---------+--------+----+----------+
| time |timestamp| false | 2 | 2 | | | |
|currency_pair| varchar | false | 1 | 1 | | | |
| seq | sint64 | true | | | | | |
| rate | double | false | | 3 | | | |
| ask_or_bid | varchar | false | | 4 | | | |
| amount | double | false | | 5 | | | |
+-------------+---------+--------+-------------+---------+--------+----+----------+
Metadata
Metadata
Assignees
Labels
No labels