0

我正在寻找 JSONB 列中的索引属性,但无法在文档中找到它。

4

1 回答 1

1

是的,这是支持的,我在这里添加了一个内联示例。但不幸的是,我们似乎还没有记录这一点。你能打开一个针对我们的 GitHub 问题吗?https://github.com/YugaByte/yugabyte-db

在执行以下操作之前,我已经在我的机器上安装了 YB 并用于ysqlsh连接它(您也可以使用)。psql

1.创建一个有JSONB列的表

postgres=# CREATE TABLE orders (
                ID serial NOT NULL PRIMARY KEY,
                info json NOT NULL
                );

CREATE TABLE
Time: 1706.060 ms (00:01.706)

JSONB2.在属性上创建索引

postgres=# CREATE INDEX ON orders((info->'items'->>'product'));

CREATE INDEX
Time: 519.093 ms

描述表现在应该显示索引:

postgres=# \d+ orders;
                                                Table "public.orders"
 Column |  Type   | Collation | Nullable |              Default               | Storage  | Stats target | Description
--------+---------+-----------+----------+------------------------------------+----------+--------------+-------------
 id     | integer |           | not null | nextval('orders_id_seq'::regclass) | plain    |              |
 info   | json    |           | not null |                                    | extended |              |
Indexes:
    "orders_pkey" PRIMARY KEY, lsm (id HASH)
    "orders_expr_idx" lsm (((info -> 'items'::text) ->> 'product'::text) HASH)

请注意显示索引的以下行的存在: "orders_expr_idx" lsm (((info -> 'items'::text) ->> 'product'::text) HASH)

3.插入一些数据

postgres=# INSERT INTO orders (info)
  VALUES
  ('{ "customer": "John Doe", "items": {"product": "Beer"  ,"qty": 6}}'),
  ('{ "customer": "Lily Bush", "items": {"product": "Diaper","qty": 24}}'),
  ('{ "customer": "Josh William", "items": {"product": "Toy Car","qty": 1}}'),
  ('{ "customer": "Mary Clark", "items": {"product": "Toy Train","qty": 2}}')
  );

4. 带解释计划的查询

postgres=# EXPLAIN SELECT * from orders WHERE info->'items'->>'product'='Beer';

                                  QUERY PLAN
-------------------------------------------------------------------------------
 Index Scan using orders_expr_idx on orders  (cost=0.00..4.12 rows=1 width=36)
   Index Cond: (((info -> 'items'::text) ->> 'product'::text) = 'Beer'::text)
(2 rows)

请注意,根据查询计划,此查询将使用索引来执行查找。

于 2019-06-17T04:34:55.043 回答