activerecord-pg_collation 0.1.0 → 0.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: 9af200b93bf9e8a88059ef6c9d687e3db7cacd884afab5f0e87493b36df89bbf
4
- data.tar.gz: 85aead27a2ae7b9ecaeff7efa70730ca2a0b92e6bf40c4ce1fd3fc4d043d2da7
3
+ metadata.gz: 398383f3e3a1e99867910103a6256203ba0a2123b5357a3930c448af26529731
4
+ data.tar.gz: d6d648a2b6a67a2179a6b9f1ff27cb7fafbdb0380b7c237994c21d9ad0721528
5
5
  SHA512:
6
- metadata.gz: 6297d070a8a7b0b6ce886c9923f126167a7d9329199f700e6e96384fe8d338dca23a6714a83468eb092d5be636c56d52cf5d5eb4fa3a6edf4ed76106db6caa09
7
- data.tar.gz: ebec8b5c26281560c6acfc3188a3b7fc9941e8cd50385a53be100693b5984ec8c9e6b542672c8cc0bf90b4a5cf01bc745eb7091d75cca490227d9c1d3bd82047
6
+ metadata.gz: ac837afd30918e39010b9a0e08980c875de1e22993281ec72cdce44c1bed767bbd1d581b52de896c8c5d071088ce3dedcc571b6bae8962f425e81cf4df6d8474
7
+ data.tar.gz: bf11b8b6a64bf998d46ad91299a3dcf886440afa9966eb992925e2b8c5561683ca410ec9c78dbfd0128b4f85272747c19cc55940b758d67154689bd127ad3019
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activerecord-pg_collation (0.1.0)
4
+ activerecord-pg_collation (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -10,7 +10,7 @@ module ActiveRecord
10
10
  def collations
11
11
  provider_mapping = {"i" => "icu", "c" => "libc", "d" => "libc"}
12
12
  result = ActiveRecord::Base.connection.exec_query(<<-SQL.strip_heredoc, "SCHEMA")
13
- SELECT c.collname AS name, c.collcollate AS lc_collate, c.collctype AS lc_ctype, c.collprovider AS provider, c.collisdeterministic AS deterministic, c.collversion AS version
13
+ SELECT c.collname AS name, c.collcollate AS lc_collate, c.collctype AS lc_ctype, c.collprovider AS provider, c.collisdeterministic AS deterministic
14
14
  FROM pg_collation c
15
15
  JOIN pg_catalog.pg_namespace n ON n.oid = c.collnamespace
16
16
  WHERE n.nspname = ANY (current_schemas(false))
@@ -1,5 +1,5 @@
1
1
  module ActiveRecord
2
2
  module PGCollation
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-pg_collation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Axel Pontetto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-03 00:00:00.000000000 Z
11
+ date: 2021-12-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: