File tree Expand file tree Collapse file tree 5 files changed +598
-110
lines changed
attribute_set_jsonb_index Expand file tree Collapse file tree 5 files changed +598
-110
lines changed Original file line number Diff line number Diff line change @@ -61,9 +61,9 @@ B-tree indexes can be created for:
6161Performance
6262-----------
6363
64- B-tree indexes enable PostgreSQL to use index scans for range queries:
64+ B-tree indexes enable PostgreSQL to use index scans for range queries::
6565
66- .. code :: sql
66+ ::
6767
6868 -- Without B-tree index: Sequential scan
6969 -- With B-tree index: Index scan
@@ -127,9 +127,6 @@ Contributors
127127Other credits
128128-------------
129129
130- Development
131- ~~~~~~~~~~~
132-
133130This module was developed by OBS Solutions B.V. as an extension to the
134131OCA attribute_set_jsonb module.
135132
Original file line number Diff line number Diff line change 1- ## Development
2-
31This module was developed by OBS Solutions B.V. as an extension to the
42OCA attribute_set_jsonb module.
Original file line number Diff line number Diff line change @@ -18,10 +18,9 @@ B-tree indexes can be created for:
1818
1919## Performance
2020
21- B-tree indexes enable PostgreSQL to use index scans for range queries:
22- ``` sql
23- -- Without B-tree index: Sequential scan
24- -- With B-tree index: Index scan
25- SELECT * FROM product_template
26- WHERE (x_custom_json_attrs- >> ' x_capacity' )::numeric BETWEEN 1000 AND 5000
27- ```
21+ B-tree indexes enable PostgreSQL to use index scans for range queries::
22+
23+ -- Without B-tree index: Sequential scan
24+ -- With B-tree index: Index scan
25+ SELECT * FROM product_template
26+ WHERE (x_custom_json_attrs->>'x_capacity')::numeric BETWEEN 1000 AND 5000
You can’t perform that action at this time.
0 commit comments