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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c16544874ce54b73b52c22439a3fc900dcdbc7746747c19223e2f356e7fcc2b
4
- data.tar.gz: ff4568fc2e6f3f6791fe9b6c668c84a58faf0291e18d5aad9412ba374d2b492d
3
+ metadata.gz: 91cde8e0e7bced1825f3d806ce0d3de2543ce43c62904580f40fd60744be1537
4
+ data.tar.gz: 7e2646e5a92c7e4604ccf0edfdb98da09da3979f1f1542b45812a5f27e0856e0
5
5
  SHA512:
6
- metadata.gz: d46d4112bb85e7f078b77c3113493fc4c298c06e04b9778a28543f35452a1fc18f23ac0560d175d648603da636799686cdaff1b4bbec0b417cb66f83e1255a5d
7
- data.tar.gz: 9b94adf9fe5c006044372df33df9746ad377e1198ed23369da55a015b92cabd74644d34103a0d3cc808a4586a3fcdbba48bae80865ad7d363714146d79686861
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
- pk_quoted = "#{quoted_table_name}.#{connection.quote_column_name(primary_key)}"
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}.id = #{pk_quoted}")
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(:id, "ts_rank_cd(#{fqc_quoted}, #{tsquery}) AS rank")
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.0
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: 2024-11-08 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord