Skip to content

404 on table creation #159

@clayrichardson

Description

@clayrichardson

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions