pg_fulltext 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/pg_fulltext/active_record.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91cde8e0e7bced1825f3d806ce0d3de2543ce43c62904580f40fd60744be1537
|
4
|
+
data.tar.gz: 7e2646e5a92c7e4604ccf0edfdb98da09da3979f1f1542b45812a5f27e0856e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e30bc1d037818f08f65939d53eb537a3d0dd353ecf9cf88fb1affc58019393a8b5bc0d82ddda171cb410f1d67faea08a37ae82e152c9cebbc0f32c052da7a525
|
7
|
+
data.tar.gz: 0f1df45f8f233ab9abd1f1ca668048b170d3749644cfb9baca6e35035844deae00df5cb61834d641041dcf6254b93539b4683bab5dc7dc76b3e927a4566a40fa
|
@@ -26,7 +26,7 @@ module PgFulltext
|
|
26
26
|
ignore_accents: false
|
27
27
|
)
|
28
28
|
serial = SecureRandom.hex(4)
|
29
|
-
|
29
|
+
quoted_primary_key = connection.quote_column_name(primary_key)
|
30
30
|
fulltext_join_name = "pg_fulltext_#{serial}"
|
31
31
|
|
32
32
|
# Build the search relation to join on
|
@@ -40,7 +40,7 @@ module PgFulltext
|
|
40
40
|
)
|
41
41
|
|
42
42
|
# Join the search relation
|
43
|
-
relation = relation.joins("INNER JOIN (#{search_relation.to_sql}) AS #{fulltext_join_name} ON #{fulltext_join_name}
|
43
|
+
relation = relation.joins("INNER JOIN (#{search_relation.to_sql}) AS #{fulltext_join_name} ON #{fulltext_join_name}.#{quoted_primary_key} = #{quoted_table_name}.#{quoted_primary_key}")
|
44
44
|
|
45
45
|
# Order/reorder against the search rank
|
46
46
|
if order || reorder
|
@@ -67,7 +67,7 @@ module PgFulltext
|
|
67
67
|
tsquery = "regexp_replace(#{tsquery}::text, '''([a-z0-9\\-_@.]+)''', '''\\1'':*', 'g')::tsquery" if prefix
|
68
68
|
relation
|
69
69
|
.unscoped
|
70
|
-
.select(
|
70
|
+
.select(primary_key, "ts_rank_cd(#{fqc_quoted}, #{tsquery}) AS rank")
|
71
71
|
.where("#{fqc_quoted} @@ #{tsquery}")
|
72
72
|
end
|
73
73
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg_fulltext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Robertson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|