pg 1.1.1-x86-mingw32 → 1.1.2-x86-mingw32

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
  SHA1:
3
- metadata.gz: 660e2d8dfd110864822113b093f7cbbe91a0cbe2
4
- data.tar.gz: bc543dea0fbb77559f7f19d1c76356729b93e2b6
3
+ metadata.gz: 2e0df91178293f0f6248e8c750999ce96e667ffa
4
+ data.tar.gz: 2402e6e9de0141349ef98604f6eed4eb1a9f331d
5
5
  SHA512:
6
- metadata.gz: 05da163ddd044bc18b2ad21ae0e6be9004eaef38a1c8e29b5e9cc1b90bde1451b01f109663e7a6e02c49f82761ccd64204f07a4a1ca846a81305258577ac95ce
7
- data.tar.gz: 5027734f67264beec6fe06c7c9af916d93ac7618fbb3d7e4bee6509ca046f7ea87cc92d556909f338f7cf69a7ff29395c0c717621d3e0273446bd75b2fd84cb1
6
+ metadata.gz: f872b0dd91fa0bb7f7d43836a78d1657b4e1b0d0f1f7d5ad8bb94dc1ad188891addb56af800867b06cabea6c720d85597ea2b4a66e87c62a03af495aab7707e3
7
+ data.tar.gz: d85f5391ecf3590b59bf81863cefa2b7ff6c90812c6bafd9ba372fb8660b4692ec430f178fa2e127b3d5bc99eb06dd1e529697e2e62fe7fe48157afdf2c42b99
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,4 +1,10 @@
1
- == v1.1.1 [YYYY-MM-DD] Michael Granger <ged@FaerieMUD.org>
1
+ == v1.1.2 [2018-08-28] Michael Granger <ged@FaerieMUD.org>
2
+
3
+ - Don't generate aliases for JOHAB encoding.
4
+ This avoids linking to deprecated/private function rb_enc(db)_alias().
5
+
6
+
7
+ == v1.1.1 [2018-08-27] Michael Granger <ged@FaerieMUD.org>
2
8
 
3
9
  - Reduce deprecation warnings to only one message per deprecation.
4
10
 
data/ext/pg.c CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * pg.c - Toplevel extension
3
- * $Id: pg.c,v be48d118eeed 2018/08/25 11:35:03 lars $
3
+ * $Id: pg.c,v 2d334508484a 2018/08/27 11:33:43 lars $
4
4
  *
5
5
  * Author/s:
6
6
  *
@@ -143,9 +143,6 @@ pg_find_or_create_johab(void)
143
143
  }
144
144
 
145
145
  enc_index = rb_define_dummy_encoding(aliases[0]);
146
- for (i = 1; i < sizeof(aliases)/sizeof(aliases[0]); ++i) {
147
- rb_enc_alias(aliases[i], aliases[0]);
148
- }
149
146
  return rb_enc_from_index(enc_index);
150
147
  }
151
148
 
data/ext/pg.h CHANGED
@@ -21,9 +21,6 @@
21
21
  #include "ruby/st.h"
22
22
  #include "ruby/encoding.h"
23
23
 
24
- /* exported by ruby-1.9.3+ but not declared */
25
- extern int rb_enc_alias(const char *, const char *);
26
-
27
24
  #define PG_ENCODING_SET_NOCHECK(obj,i) \
28
25
  do { \
29
26
  if ((i) < ENCODING_INLINE_MAX) \
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/lib/pg.rb CHANGED
@@ -35,10 +35,10 @@ end
35
35
  module PG
36
36
 
37
37
  # Library version
38
- VERSION = '1.1.1'
38
+ VERSION = '1.1.2'
39
39
 
40
40
  # VCS revision
41
- REVISION = %q$Revision: 71d5c24f937e $
41
+ REVISION = %q$Revision: bbf57bf7e583 $
42
42
 
43
43
  class NotAllCopyDataRetrieved < PG::Error
44
44
  end
@@ -22,6 +22,7 @@ module PG::TestingHelpers
22
22
 
23
23
  mod.around( :each ) do |example|
24
24
  begin
25
+ @conn.set_default_encoding
25
26
  @conn.exec( 'BEGIN' ) unless example.metadata[:without_transaction]
26
27
  desc = example.source_location.join(':')
27
28
  @conn.exec %Q{SET application_name TO '%s'} %
@@ -1236,6 +1236,22 @@ describe PG::Connection do
1236
1236
  expect( @conn.internal_encoding ).to eq( Encoding::ASCII_8BIT )
1237
1237
  end
1238
1238
 
1239
+ it "the connection should use JOHAB dummy encoding when it's set to JOHAB" do
1240
+ @conn.set_client_encoding "JOHAB"
1241
+ val = @conn.exec("SELECT chr(x'3391'::int)").values[0][0]
1242
+ expect( val.encoding.name ).to eq( "JOHAB" )
1243
+ expect( val.unpack("H*")[0] ).to eq( "dc65" )
1244
+ end
1245
+
1246
+ it "can retrieve server encoding as text" do
1247
+ enc = @conn.parameter_status "server_encoding"
1248
+ expect( enc ).to eq( "UTF8" )
1249
+ end
1250
+
1251
+ it "can retrieve server encoding as ruby encoding" do
1252
+ expect( @conn.external_encoding ).to eq( Encoding::UTF_8 )
1253
+ end
1254
+
1239
1255
  it "uses the client encoding for escaped string" do
1240
1256
  original = "Möhre to 'scape".encode( "utf-16be" )
1241
1257
  @conn.set_client_encoding( "euc_jp" )
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Michael Granger
@@ -36,7 +36,7 @@ cert_chain:
36
36
  X0qdrKi+2aZZ0NGuFj9AItBsVmAvkBGIpX4TEKQp5haEbPpmaqO5nIIhV26PXmyT
37
37
  OMKv6pWsoS81vw5KAGBmfX8nht/Py90DQrbRvakATGI=
38
38
  -----END CERTIFICATE-----
39
- date: 2018-08-27 00:00:00.000000000 Z
39
+ date: 2018-08-29 00:00:00.000000000 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: hoe-mercurial
metadata.gz.sig CHANGED
Binary file