Skip to content

Commit 0f20de4

Browse files
committed
README: Use generic WAL records
1 parent 78e61f8 commit 0f20de4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ idea of `RUM` by the following picture:
2929

3030
Drawback of `RUM` is that it has slower build and insert time than `GIN`.
3131
It 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

151151
Supported 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

155155
Supports 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
177177
EXPLAIN (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

187187
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;
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
226226
SELECT * 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

Comments
 (0)