@@ -29,7 +29,7 @@ idea of `RUM` by the following picture:
2929
3030Drawback of ` RUM ` is that it has slower build and insert time than ` GIN ` .
3131It is because we need to store additional information besides keys and because
32- ` RUM ` uses generic WAL.
32+ ` RUM ` uses generic WAL records .
3333
3434## License
3535
@@ -150,7 +150,7 @@ numeric, timestamp, timestamptz
150150
151151Supported operations: ` < ` , ` <= ` , ` = ` , ` >= ` , ` > ` for all types and
152152` <=> ` , ` <=| ` and ` |=> ` for int2, int4, int8, float4, float8, money, oid,
153- timestamp and timestamptz types.
153+ timestamp and timestamptz types.
154154
155155Supports ordering by ` <=> ` , ` <=| ` and ` |=> ` operators. Can be used with
156156` rum_tsvector_addon_ops ` , ` rum_tsvector_hash_addon_ops' and ` rum_anyarray_addon_ops` operator classes.
@@ -176,7 +176,7 @@ Now we can execute the following queries:
176176``` sql
177177EXPLAIN (costs off)
178178 SELECT id, d, d <=> ' 2016-05-16 14:21:25' FROM tsts WHERE t @@ ' wr&qh' ORDER BY d <=> ' 2016-05-16 14:21:25' LIMIT 5 ;
179- QUERY PLAN
179+ QUERY PLAN
180180-- ---------------------------------------------------------------------------------
181181 Limit
182182 - > Index Scan using tsts_idx on tsts
@@ -185,7 +185,7 @@ EXPLAIN (costs off)
185185(4 rows)
186186
187187SELECT id, d, d <=> ' 2016-05-16 14:21:25' FROM tsts WHERE t @@ ' wr&qh' ORDER BY d <=> ' 2016-05-16 14:21:25' LIMIT 5 ;
188- id | d | ?column?
188+ id | d | ?column?
189189-- ---+---------------------------------+---------------
190190 355 | Mon May 16 14 :21 :22 .326724 2016 | 2 .673276
191191 354 | Mon May 16 13 :21 :22 .326724 2016 | 3602 .673276
@@ -225,7 +225,7 @@ Now we can execute the following fast query:
225225``` sql
226226SELECT * FROM query
227227 WHERE to_tsvector(' black holes never exists before we think about them' ) @@ q;
228- q | tag
228+ q | tag
229229-- ----------------+-------
230230 ' black' | color
231231 ' black' & ' hole' | color
0 commit comments