@@ -106,21 +106,21 @@ SELECT t, a <=> to_tsquery('english', 'beautiful | place') AS rank
106
106
FROM test_rum
107
107
WHERE a @@ to_tsquery(' english' ,' beautiful | place' )
108
108
ORDER BY a<=> to_tsquery(' english' ,' beautiful | place' );
109
- t | rank
110
- -- -------------------------------+-----------
111
- The situation is most beautiful| 0 . 0303964
112
- It isa beautiful | 0 . 0303964
113
- Itlooks like a beautifulplace | 0 . 0607927
109
+ t | rank
110
+ -- -------------------------------+---------
111
+ It looks like a beautifulplace | 8 . 22467
112
+ The situation ismost beautiful| 16 . 4493
113
+ Itis a beautiful | 16 . 4493
114
114
(3 rows)
115
115
116
116
SELECT t, a<=> to_tsquery(' english' ,' place | situation' )AS rank
117
117
FROM test_rum
118
118
WHERE a @@ to_tsquery(' english' ,' place | situation' )
119
119
ORDER BY a<=> to_tsquery(' english' ,' place | situation' );
120
- t | rank
121
- -- -------------------------------+-----------
122
- The situation is most beautiful |0 . 0303964
123
- It lookslike a beautiful place |0 . 0303964
120
+ t | rank
121
+ -- -------------------------------+---------
122
+ The situation is most beautiful |16 . 4493
123
+ It lookslike a beautiful place |16 . 4493
124
124
(2 rows)
125
125
```
126
126