pg 0.21.0 → 1.4.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +5 -5
  2. checksums.yaml.gz.sig +0 -0
  3. data/.appveyor.yml +36 -0
  4. data/.gems +6 -0
  5. data/.github/workflows/binary-gems.yml +86 -0
  6. data/.github/workflows/source-gem.yml +131 -0
  7. data/.gitignore +13 -0
  8. data/.hgsigs +34 -0
  9. data/.hgtags +41 -0
  10. data/.irbrc +23 -0
  11. data/.pryrc +23 -0
  12. data/.tm_properties +21 -0
  13. data/.travis.yml +49 -0
  14. data/Gemfile +14 -0
  15. data/History.rdoc +390 -4
  16. data/Manifest.txt +8 -4
  17. data/README-Windows.rdoc +4 -4
  18. data/README.ja.rdoc +1 -2
  19. data/README.rdoc +85 -20
  20. data/Rakefile +32 -142
  21. data/Rakefile.cross +71 -71
  22. data/certs/ged.pem +24 -0
  23. data/certs/larskanis-2022.pem +26 -0
  24. data/ext/errorcodes.def +84 -0
  25. data/ext/errorcodes.rb +1 -1
  26. data/ext/errorcodes.txt +23 -2
  27. data/ext/extconf.rb +111 -54
  28. data/ext/gvl_wrappers.c +8 -0
  29. data/ext/gvl_wrappers.h +40 -33
  30. data/ext/pg.c +211 -171
  31. data/ext/pg.h +87 -95
  32. data/ext/pg_binary_decoder.c +83 -16
  33. data/ext/pg_binary_encoder.c +14 -13
  34. data/ext/pg_coder.c +146 -31
  35. data/ext/pg_connection.c +1441 -1001
  36. data/ext/pg_copy_coder.c +61 -24
  37. data/ext/pg_errors.c +1 -1
  38. data/ext/pg_record_coder.c +521 -0
  39. data/ext/pg_result.c +623 -208
  40. data/ext/pg_text_decoder.c +607 -41
  41. data/ext/pg_text_encoder.c +191 -60
  42. data/ext/pg_tuple.c +569 -0
  43. data/ext/pg_type_map.c +43 -10
  44. data/ext/pg_type_map_all_strings.c +20 -6
  45. data/ext/pg_type_map_by_class.c +55 -25
  46. data/ext/pg_type_map_by_column.c +75 -36
  47. data/ext/pg_type_map_by_mri_type.c +49 -20
  48. data/ext/pg_type_map_by_oid.c +56 -26
  49. data/ext/pg_type_map_in_ruby.c +52 -21
  50. data/ext/{util.c → pg_util.c} +12 -12
  51. data/ext/{util.h → pg_util.h} +2 -2
  52. data/lib/pg/basic_type_map_based_on_result.rb +47 -0
  53. data/lib/pg/basic_type_map_for_queries.rb +193 -0
  54. data/lib/pg/basic_type_map_for_results.rb +81 -0
  55. data/lib/pg/basic_type_registry.rb +301 -0
  56. data/lib/pg/binary_decoder.rb +23 -0
  57. data/lib/pg/coder.rb +24 -3
  58. data/lib/pg/connection.rb +667 -57
  59. data/lib/pg/constants.rb +2 -1
  60. data/lib/pg/exceptions.rb +9 -2
  61. data/lib/pg/result.rb +14 -2
  62. data/lib/pg/text_decoder.rb +21 -26
  63. data/lib/pg/text_encoder.rb +32 -8
  64. data/lib/pg/tuple.rb +30 -0
  65. data/lib/pg/type_map_by_column.rb +3 -2
  66. data/lib/pg/version.rb +4 -0
  67. data/lib/pg.rb +51 -38
  68. data/misc/openssl-pg-segfault.rb +31 -0
  69. data/misc/postgres/History.txt +9 -0
  70. data/misc/postgres/Manifest.txt +5 -0
  71. data/misc/postgres/README.txt +21 -0
  72. data/misc/postgres/Rakefile +21 -0
  73. data/misc/postgres/lib/postgres.rb +16 -0
  74. data/misc/ruby-pg/History.txt +9 -0
  75. data/misc/ruby-pg/Manifest.txt +5 -0
  76. data/misc/ruby-pg/README.txt +21 -0
  77. data/misc/ruby-pg/Rakefile +21 -0
  78. data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
  79. data/pg.gemspec +32 -0
  80. data/rakelib/task_extension.rb +46 -0
  81. data/sample/array_insert.rb +20 -0
  82. data/sample/async_api.rb +102 -0
  83. data/sample/async_copyto.rb +39 -0
  84. data/sample/async_mixed.rb +56 -0
  85. data/sample/check_conn.rb +21 -0
  86. data/sample/copydata.rb +71 -0
  87. data/sample/copyfrom.rb +81 -0
  88. data/sample/copyto.rb +19 -0
  89. data/sample/cursor.rb +21 -0
  90. data/sample/disk_usage_report.rb +177 -0
  91. data/sample/issue-119.rb +94 -0
  92. data/sample/losample.rb +69 -0
  93. data/sample/minimal-testcase.rb +17 -0
  94. data/sample/notify_wait.rb +72 -0
  95. data/sample/pg_statistics.rb +285 -0
  96. data/sample/replication_monitor.rb +222 -0
  97. data/sample/test_binary_values.rb +33 -0
  98. data/sample/wal_shipper.rb +434 -0
  99. data/sample/warehouse_partitions.rb +311 -0
  100. data.tar.gz.sig +0 -0
  101. metadata +91 -229
  102. metadata.gz.sig +0 -0
  103. data/ChangeLog +0 -6595
  104. data/lib/pg/basic_type_mapping.rb +0 -426
  105. data/lib/pg/deprecated_constants.rb +0 -21
  106. data/spec/data/expected_trace.out +0 -26
  107. data/spec/data/random_binary_data +0 -0
  108. data/spec/helpers.rb +0 -352
  109. data/spec/pg/basic_type_mapping_spec.rb +0 -305
  110. data/spec/pg/connection_spec.rb +0 -1676
  111. data/spec/pg/result_spec.rb +0 -456
  112. data/spec/pg/type_map_by_class_spec.rb +0 -138
  113. data/spec/pg/type_map_by_column_spec.rb +0 -222
  114. data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
  115. data/spec/pg/type_map_by_oid_spec.rb +0 -149
  116. data/spec/pg/type_map_in_ruby_spec.rb +0 -164
  117. data/spec/pg/type_map_spec.rb +0 -22
  118. data/spec/pg/type_spec.rb +0 -777
  119. data/spec/pg_spec.rb +0 -50
data/History.rdoc CHANGED
@@ -1,3 +1,386 @@
1
+ == v1.4.4 [2022-10-11] Lars Kanis <lars@greiz-reinsdorf.de>
2
+
3
+ - Revert to let libpq do the host iteration while connecting. #485
4
+ Ensure that parameter `connect_timeout` is still respected.
5
+ - Handle multiple hosts in the connection string, where only one host has writable session. #476
6
+ - Add some useful information to PG::Connection#inspect. #487
7
+ - Support new pgresult_stream_any API in sequel_pg-1.17.0. #481
8
+ - Update Windows fat binary gem to PostgreSQL-14.5.
9
+
10
+
11
+ == v1.4.3 [2022-08-09] Lars Kanis <lars@greiz-reinsdorf.de>
12
+
13
+ - Avoid memory bloat possible in put_copy_data in pg-1.4.0 to 1.4.2. #473
14
+ - Use Encoding::BINARY for JOHAB, removing some useless code. #472
15
+
16
+
17
+ == v1.4.2 [2022-07-27] Lars Kanis <lars@greiz-reinsdorf.de>
18
+
19
+ Bugfixes:
20
+
21
+ - Properly handle empty host parameter when connecting. #471
22
+ - Update Windows fat binary gem to OpenSSL-1.1.1q.
23
+
24
+
25
+ == v1.4.1 [2022-06-24] Lars Kanis <lars@greiz-reinsdorf.de>
26
+
27
+ Bugfixes:
28
+
29
+ - Fix another ruby-2.7 keyword warning. #465
30
+ - Allow PG::Error to be created without arguments. #466
31
+
32
+
33
+ == v1.4.0 [2022-06-20] Lars Kanis <lars@greiz-reinsdorf.de>
34
+
35
+ Added:
36
+
37
+ - Add PG::Connection#hostaddr, present since PostgreSQL-12. #453
38
+ - Add PG::Connection.conninfo_parse to wrap PQconninfoParse. #453
39
+
40
+ Bugfixes:
41
+
42
+ - Try IPv6 and IPv4 addresses, if DNS resolves to both. #452
43
+ - Re-add block-call semantics to PG::Connection.new accidently removed in pg-1.3.0. #454
44
+ - Handle client error after all data consumed in #copy_data for output. #455
45
+ - Avoid spurious keyword argument warning on Ruby 2.7. #456
46
+ - Change connection setup to respect connect_timeout parameter. #459
47
+ - Fix indefinite hang in case of connection error on Windows #458
48
+ - Set connection attribute of PG::Error in various places where it was missing. #461
49
+ - Fix transaction leak on early break/return. #463
50
+ - Update Windows fat binary gem to OpenSSL-1.1.1o and PostgreSQL-14.4.
51
+
52
+ Enhancements:
53
+
54
+ - Don't flush at each put_copy_data call, but flush at get_result. #462
55
+
56
+
57
+ == v1.3.5 [2022-03-31] Lars Kanis <lars@greiz-reinsdorf.de>
58
+
59
+ Bugfixes:
60
+
61
+ - Handle PGRES_COMMAND_OK in pgresult_stream_any. #447
62
+ Fixes usage when trying to stream the result of a procedure call that returns no results.
63
+
64
+ Enhancements:
65
+
66
+ - Rename BasicTypeRegistry#define_default_types to #register_default_types to use a more consistent terminology.
67
+ Keeping define_default_types for compatibility.
68
+ - BasicTypeRegistry: return self instead of objects by accident.
69
+ This allows call chaining.
70
+ - Add some April fun. #449
71
+
72
+ Documentation:
73
+ - Refine documentation of conn.socket_io and conn.connect_poll
74
+
75
+
76
+ == v1.3.4 [2022-03-10] Lars Kanis <lars@greiz-reinsdorf.de>
77
+
78
+ Bugfixes:
79
+
80
+ - Don't leak IO in case of connection errors. #439
81
+ Previously it was kept open until the PG::Connection was garbage collected.
82
+ - Fix a performance regession in conn.get_result noticed in single row mode. #442
83
+ - Fix occasional error Errno::EBADF (Bad file descriptor) while connecting. #444
84
+ - Fix compatibility of res.stream_each* methods with Fiber.scheduler. #446
85
+ - Remove FL_TEST and FL_SET, which are MRI-internal. #437
86
+
87
+ Enhancements:
88
+
89
+ - Allow pgresult_stream_any to be used by sequel_pg. #443
90
+
91
+
92
+ == v1.3.3 [2022-02-22] Lars Kanis <lars@greiz-reinsdorf.de>
93
+
94
+ Bugfixes:
95
+
96
+ - Fix omission of the third digit of IPv4 addresses in connection URI. #435
97
+ - Fix wrong permission of certs/larskanis-2022.pem in the pg-1.3.2.gem. #432
98
+
99
+
100
+ == v1.3.2 [2022-02-14] Lars Kanis <lars@greiz-reinsdorf.de>
101
+
102
+ Bugfixes:
103
+
104
+ - Cancel only active query after failing transaction. #430
105
+ This avoids an incompatibility with pgbouncer since pg-1.3.0.
106
+ - Fix String objects with non-applied encoding when using COPY or record decoders. #427
107
+ - Update Windows fat binary gem to PostgreSQL-14.2.
108
+
109
+ Enhancements:
110
+
111
+ - Improve extconf.rb checks to reduces the number of compiler calls.
112
+ - Add a check for PGRES_PIPELINE_SYNC, to make sure the library version and the header files are PostgreSQL-14+. #429
113
+
114
+
115
+ == v1.3.1 [2022-02-01] Michael Granger <ged@FaerieMUD.org>
116
+
117
+ Bugfixes:
118
+
119
+ - Fix wrong handling of socket writability on Windows introduced in #417.
120
+ This caused starvation in conn.put_copy_data.
121
+ - Fix error in PG.version_string(true). #419
122
+ - Fix a regression in pg 1.3.0 where Ruby 2.x busy-looping any fractional seconds for every wait. #420
123
+
124
+ Enhancements:
125
+
126
+ - Raise an error when conn.copy_data is used in nonblocking mode.
127
+
128
+
129
+ == v1.3.0 [2022-01-20] Michael Granger <ged@FaerieMUD.org>
130
+
131
+ Install Enhancements:
132
+ - Print some install help if libpq wasn't found. #396
133
+ This should help to pick the necessary package without googling.
134
+ - Update Windows fat binary gem to OpenSSL-1.1.1m and PostgreSQL-14.1.
135
+ - Add binary Windows gems for Ruby 3.0 and 3.1.
136
+ - Make the library path of libpq available in ruby as PG::POSTGRESQL_LIB_PATH and add it to the search paths on Windows similar to +rpath+ on Unix systems. #373
137
+ - Fall back to pkg-config if pg_config is not found. #380
138
+ - Add option to extconf.rb to disable nogvl-wrapping of libpq functions.
139
+ All methods (except PG::Connection.ping) are nonblocking now, so that GVL unlock is in theory no longer necessary.
140
+ However it can have some advantage in concurrency, so that GVL unlock is still enabled by default.
141
+ Use:
142
+ - gem inst pg -- --disable-gvl-unlock
143
+
144
+ API Enhancements:
145
+ - Add full compatibility to Fiber.scheduler introduced in Ruby-3.0. #397
146
+ - Add async_connect and async_send methods and add specific specs for Fiber.scheduler #342
147
+ - Add async_get_result and async_get_last_result
148
+ - Add async_get_copy_data
149
+ - Implement async_put_copy_data/async_put_copy_end
150
+ - Implement async_reset method using the nonblocking libpq API
151
+ - Add async_set_client_encoding which is compatible to scheduler
152
+ - Add async_cancel as a nonblocking version of conn#cancel
153
+ - Add async_encrypt_password
154
+ - Run Connection.ping in a second thread.
155
+ - Make discard_results scheduler friendly
156
+ - Do all socket waiting through the conn.socket_io object.
157
+ - Avoid PG.connect blocking while address resolution by automatically providing the +hostaddr+ parameter and resolving in Ruby instead of libpq.
158
+ - On Windows Fiber.scheduler support requires Ruby-3.1+.
159
+ It is also only partly usable since may ruby IO methods are not yet scheduler aware on Windows.
160
+ - Add support for pipeline mode of PostgreSQL-14. #401
161
+ - Allow specification of multiple hosts in PostgreSQL URI. #387
162
+ - Add new method conn.backend_key - used to implement our own cancel method.
163
+
164
+ Type cast enhancements:
165
+ - Add PG::BasicTypeMapForQueries::BinaryData for encoding of bytea columns. #348
166
+ - Reduce time to build coder maps and permit to reuse them for several type maps per PG::BasicTypeRegistry::CoderMapsBundle.new(conn) . #376
167
+ - Make BasicTypeRegistry a class and use a global default instance of it.
168
+ Now a local type registry can be instanciated and given to the type map, to avoid changing shared global states.
169
+ - Allow PG::BasicTypeMapForQueries to take a Proc as callback for undefined types.
170
+
171
+ Other Enhancements:
172
+ - Convert all PG classes implemented in C to TypedData objects. #349
173
+ - Support ObjectSpace.memsize_of(obj) on all classes implemented in C. #393
174
+ - Make all PG objects implemented in C memory moveable and therefore GC.compact friendly. #349
175
+ - Update errorcodes and error classes to PostgreSQL-14.0.
176
+ - Add PG::CONNECTION_* constants for conn.status of newer PostgreSQL versions.
177
+ - Add better support for logical replication. #339
178
+ - Change conn.socket_io to read+write mode and to a BasicSocket object instead of IO.
179
+ - Use rb_io_wait() and the conn.socket_io object if available for better compatibility to Fiber.scheduler .
180
+ Fall back to rb_wait_for_single_fd() on ruby < 3.0.
181
+ - On Windows use a specialized wait function as a workaround for very poor performance of rb_io_wait(). #416
182
+
183
+ Bugfixes:
184
+ - Release GVL while calling PQping which is a blocking method, but it didn't release GVL so far.
185
+ - Fix Connection#transaction to no longer block on interrupts, for instance when pressing Ctrl-C and cancel a running query. #390
186
+ - Avoid casting of OIDs to fix compat with Redshift database. #369
187
+ - Call conn.block before each conn.get_result call to avoid possible blocking in case of a slow network and multiple query results.
188
+ - Sporadic Errno::ENOTSOCK when using conn.socket_io on Windows #398
189
+
190
+ Deprecated:
191
+ - Add deprecation warning to PG::BasicTypeRegistry.register_type and siblings.
192
+
193
+ Removed:
194
+ - Remove support of ruby-2.2, 2.3 and 2.4. Minimum is ruby-2.5 now.
195
+ - Remove support for PostgreSQL-9.2. Minimum is PostgreSQL-9.3 now.
196
+ - Remove constant PG::REVISION, which was broken since pg-1.1.4.
197
+
198
+ Repository:
199
+ - Replace Hoe by Bundler for gem packaging
200
+ - Add Github Actions CI and testing of source and binary gems.
201
+
202
+
203
+ == v1.2.3 [2020-03-18] Michael Granger <ged@FaerieMUD.org>
204
+
205
+ Bugfixes:
206
+
207
+ - Fix possible segfault at `PG::Coder#encode`, `decode` or their implicit calls through
208
+ a typemap after GC.compact. #327
209
+ - Fix possible segfault in `PG::TypeMapByClass` after GC.compact. #328
210
+
211
+
212
+ == v1.2.2 [2020-01-06] Michael Granger <ged@FaerieMUD.org>
213
+
214
+ Enhancements:
215
+
216
+ - Add a binary gem for Ruby 2.7.
217
+
218
+
219
+ == v1.2.1 [2020-01-02] Michael Granger <ged@FaerieMUD.org>
220
+
221
+ Enhancements:
222
+
223
+ - Added internal API for sequel_pg compatibility.
224
+
225
+
226
+ == v1.2.0 [2019-12-20] Michael Granger <ged@FaerieMUD.org>
227
+
228
+ Repository:
229
+ - Our primary repository has been moved to Github https://github.com/ged/ruby-pg .
230
+ Most of the issues from https://bitbucket.org/ged/ruby-pg have been migrated. #43
231
+
232
+ API enhancements:
233
+ - Add PG::Result#field_name_type= and siblings to allow symbols to be used as field names. #306
234
+ - Add new methods for error reporting:
235
+ - PG::Connection#set_error_context_visibility
236
+ - PG::Result#verbose_error_message
237
+ - PG::Result#result_verbose_error_message (alias)
238
+ - Update errorcodes and error classes to PostgreSQL-12.0.
239
+ - New constants: PG_DIAG_SEVERITY_NONLOCALIZED, PQERRORS_SQLSTATE, PQSHOW_CONTEXT_NEVER, PQSHOW_CONTEXT_ERRORS, PQSHOW_CONTEXT_ALWAYS
240
+
241
+ Type cast enhancements:
242
+ - Add PG::TextEncoder::Record and PG::TextDecoder::Record for en/decoding of Composite Types. #258, #36
243
+ - Add PG::BasicTypeRegistry.register_coder to register instances instead of classes.
244
+ This is useful to register parametrized en/decoders like PG::TextDecoder::Record .
245
+ - Add PG::BasicTypeMapForQueries#encode_array_as= to switch between various interpretations of ruby arrays.
246
+ - Add Time, Array<Time>, Array<BigDecimal> and Array<IPAddr> encoders to PG::BasicTypeMapForQueries
247
+ - Exchange sprintf based float encoder by very fast own implementation with more natural format. #301
248
+ - Define encode and decode methods only in en/decoders that implement it, so that they can be queried by respond_to? .
249
+ - Improve PG::TypeMapByColumn#inspect
250
+ - Accept Integer and Float as input to TextEncoder::Numeric . #310
251
+
252
+ Other enhancements:
253
+ - Allocate the data part and the ruby object of PG::Result in one step, so that we don't need to check for valid data.
254
+ This removes PG::Result.allocate and PG::Result.new, which were callable but without any practical use. #42
255
+ - Make use of PQresultMemorySize() of PostgreSQL-12 and fall back to our internal estimator.
256
+ - Improve performance of PG::Result#stream_each_tuple .
257
+ - Store client encoding in data part of PG::Connection and PG::Result objects, so that we no longer use ruby's internal encoding bits. #280
258
+ - Update Windows fat binary gem to OpenSSL-1.1.1d and PostgreSQL-12.1.
259
+ - Add support for TruffleRuby. It is regularly tested as part of our CI.
260
+ - Enable +frozen_string_literal+ in all pg's ruby files
261
+
262
+ Bugfixes:
263
+ - Update the license in gemspec to "BSD-2-Clause".
264
+ It was incorrectly labeled "BSD-3-Clause". #40
265
+ - Respect PG::Coder#flags in PG::Coder#to_h.
266
+ - Fix PG::Result memsize reporting after #clear.
267
+ - Release field names to GC on PG::Result#clear.
268
+ - Fix double free in PG::Result#stream_each_tuple when an exception is raised in the block.
269
+ - Fix PG::Result#stream_each_tuple to deliver typemapped values.
270
+ - Fix encoding of Array<unknown> with PG::BasicTypeMapForQueries
271
+
272
+ Deprecated:
273
+ - Add a deprecation warning to PG::Connection#socket .
274
+
275
+ Removed:
276
+ - Remove PG::Connection#guess_result_memsize= which was temporary added in pg-1.1.
277
+ - Remove PG::Result.allocate and PG::Result.new (see enhancements).
278
+ - Remove support of tainted objects. #307
279
+ - Remove support of ruby-2.0 and 2.1. Minimum is ruby-2.2 now.
280
+
281
+ Documentation:
282
+ - Update description of connection params. See PG::Connection.new
283
+ - Link many method descriptions to corresponding libpq's documentation.
284
+ - Update sync_* and async_* query method descriptions and document the aliases.
285
+ The primary documentation is now at the async_* methods which are the default since pg-1.1.
286
+ - Fix documentation of many constants
287
+
288
+
289
+ == v1.1.4 [2019-01-08] Michael Granger <ged@FaerieMUD.org>
290
+
291
+ - Fix PG::BinaryDecoder::Timestamp on 32 bit systems. # 284
292
+ - Add new error-codes of PostgreSQL-11.
293
+ - Add ruby-2.6 support for Windows fat binary gems and remove ruby-2.0 and 2.1.
294
+
295
+
296
+ == v1.1.3 [2018-09-06] Michael Granger <ged@FaerieMUD.org>
297
+
298
+ - Revert opimization that was sometimes causing EBADF in rb_wait_for_single_fd().
299
+
300
+
301
+ == v1.1.2 [2018-08-28] Michael Granger <ged@FaerieMUD.org>
302
+
303
+ - Don't generate aliases for JOHAB encoding.
304
+ This avoids linking to deprecated/private function rb_enc(db)_alias().
305
+
306
+
307
+ == v1.1.1 [2018-08-27] Michael Granger <ged@FaerieMUD.org>
308
+
309
+ - Reduce deprecation warnings to only one message per deprecation.
310
+
311
+
312
+ == v1.1.0 [2018-08-24] Michael Granger <ged@FaerieMUD.org>
313
+
314
+ Deprecated (disable warnings per PG_SKIP_DEPRECATION_WARNING=1):
315
+ - Forwarding conn.exec to conn.exec_params is deprecated.
316
+ - Forwarding conn.exec_params to conn.exec is deprecated.
317
+ - Forwarding conn.async_exec to conn.async_exec_params.
318
+ - Forwarding conn.send_query to conn.send_query_params is deprecated.
319
+ - Forwarding conn.async_exec_params to conn.async_exec is deprecated.
320
+
321
+ PG::Connection enhancements:
322
+ - Provide PG::Connection#sync_* and PG::Connection#async_* query methods for explicit calling synchronous or asynchronous libpq API.
323
+ - Make PG::Connection#exec and siblings switchable between sync and async API per PG::Connection.async_api= and change the default to async flavors.
324
+ - Add async flavors of exec_params, prepare, exec_prepared, describe_prepared and describe_portal.
325
+ They are identical to their synchronous counterpart, but make use of PostgreSQL's async API.
326
+ - Replace `rb_thread_fd_select()` by faster `rb_wait_for_single_fd()` in `conn.block` and `conn.async_exec` .
327
+ - Add PG::Connection#discard_results .
328
+ - Raise an ArgumentError for strings containing zero bytes by #escape, #escape_literal, #escape_identifier, #quote_ident and PG::TextEncoder::Identifier. These methods previously truncated strings.
329
+
330
+ Result retrieval enhancements:
331
+ - Add PG::Result#tuple_values to retrieve all field values of a row as array.
332
+ - Add PG::Tuple, PG::Result#tuple and PG::Result#stream_each_tuple .
333
+ PG::Tuple offers a way to lazy cast result values.
334
+ - Estimate PG::Result size allocated by libpq and notify the garbage collector about it when running on Ruby-2.4 or newer.
335
+ - Make the estimated PG::Result size available to ObjectSpace.memsize_of(result) .
336
+
337
+ Type cast enhancements:
338
+ - Replace Ruby code by a faster C implementation of the SimpleDecoder's timestamp decode functions. github #20
339
+ - Interpret years with up to 7 digists and BC dates by timestamp decoder.
340
+ - Add text timestamp decoders for UTC vs. local timezone variations.
341
+ - Add text timestamp encoders for UTC timezone.
342
+ - Add decoders for binary timestamps: PG::BinaryDecoder::Timestamp and variations.
343
+ - Add PG::Coder#flags accessor to allow modifications of de- respectively encoder behaviour.
344
+ - Add a flag to raise TypeError for invalid input values to PG::TextDecoder::Array .
345
+ - Add a text decoder for inet/cidr written in C.
346
+ - Add a numeric decoder written in C.
347
+ - Ensure input text is zero terminated for text format in PG::Coder#decode .
348
+
349
+ Source code enhancements:
350
+ - Fix headers and permission bits of various repository files.
351
+
352
+ Bugfixes:
353
+ - Properly decode array with prepended dimensions. #272
354
+ For now dimension decorations are ignored, but a correct Array is returned.
355
+ - Array-Decoder: Avoid leaking memory when an Exception is raised while parsing. Fixes #279
356
+
357
+
358
+ == v1.0.0 [2018-01-10] Michael Granger <ged@FaerieMUD.org>
359
+
360
+ Deprecated:
361
+ - Deprecate Ruby older than 2.2.
362
+ - Deprecate Connection#socket in favor of #socket_io.
363
+
364
+ Removed:
365
+ - Remove compatibility code for Ruby < 2.0 and PostgreSQL < 9.2.
366
+ - Remove partial compatibility with Rubinius.
367
+ - Remove top-level constants PGconn, PGresult, and PGError.
368
+
369
+ Enhancements:
370
+ - Update error codes to PostgreSQL-10
371
+ - Update Windows binary gems to Ruby-2.5, PostgreSQL 10.1 and
372
+ OpenSSL 1.1.0g.
373
+
374
+ Bugfixes:
375
+ - Fix URI detection for connection strings. #265 (thanks to jjoos)
376
+ - MINGW: Workaround segfault due to GCC linker error in conjunction with MSVC.
377
+ This happens when linking to PostgreSQL-10.0-x64 from EnterpriseDB.
378
+
379
+ Documentation fixes:
380
+ - Add PostgreSQL version since when the given function is supported. #263
381
+ - Better documentation to `encoder` and `decoder` arguments of COPY related methods.
382
+
383
+
1
384
  == v0.21.0 [2017-06-12] Michael Granger <ged@FaerieMUD.org>
2
385
 
3
386
  Enhancements:
@@ -10,6 +393,9 @@ Enhancements:
10
393
  Documentation fixes:
11
394
  - Update the docs for PG::Result#cmd_tuples
12
395
 
396
+ New Samples:
397
+ - Add an example of the nicer #copy_data way of doing `COPY`.
398
+
13
399
 
14
400
  == v0.20.0 [2017-03-10] Michael Granger <ged@FaerieMUD.org>
15
401
 
@@ -91,7 +477,7 @@ Bugfixes:
91
477
  - Revert addition of PG::Connection#hostaddr [#202].
92
478
  - Fix decoding of fractional timezones and timestamps [#203]
93
479
  - Fixes for non-C99 compilers
94
- - Avoid possible symbol name clash when linking againt static libpq.
480
+ - Avoid possible symbol name clash when linking against static libpq.
95
481
 
96
482
 
97
483
  == v0.18.1 [2015-01-05] Michael Granger <ged@FaerieMUD.org>
@@ -127,7 +513,7 @@ Enhancements:
127
513
  Bugfixes:
128
514
 
129
515
  - Fix compatibility with signal handlers defined in Ruby. This reverts
130
- cancelation of queries running on top of the blocking libpq API (like
516
+ cancellation of queries running on top of the blocking libpq API (like
131
517
  Connection#exec) in case of signals. As an alternative the #async_exec
132
518
  can be used, which is reverted to use the non-blocking API, again.
133
519
  - Wrap PQcancel to be called without GVL. It internally waits for
@@ -205,7 +591,7 @@ Enhancements:
205
591
 
206
592
  - Tested under Ruby 2.0.0p0.
207
593
  - Add single row mode of PostgreSQL 9.2.
208
- - Set fallback_application_name to programm name $0. Thanks to Will Leinweber
594
+ - Set fallback_application_name to program name $0. Thanks to Will Leinweber
209
595
  for the patch.
210
596
  - Release Ruby's GVL while calls to blocking libpq functions to allow better
211
597
  concurrency in threaded applications.
@@ -213,7 +599,7 @@ Enhancements:
213
599
  - Make use of rb_thread_fd_select() on Ruby 1.9 and avoid deprecated
214
600
  rb_thread_select().
215
601
  - Add an example of how to insert array data using a prepared statement (#145).
216
- - Add continous integration tests on travis-ci.org.
602
+ - Add continuous integration tests on travis-ci.org.
217
603
  - Add PG::Result#each_row for iterative over result sets by row. Thanks to
218
604
  Aaron Patterson for the patch.
219
605
  - Add a PG::Connection#socket_io method for fetching a (non-autoclosing) IO
data/Manifest.txt CHANGED
@@ -1,6 +1,5 @@
1
1
  .gemtest
2
2
  BSDL
3
- ChangeLog
4
3
  Contributors.rdoc
5
4
  History.rdoc
6
5
  LICENSE
@@ -26,9 +25,11 @@ ext/pg_coder.c
26
25
  ext/pg_connection.c
27
26
  ext/pg_copy_coder.c
28
27
  ext/pg_errors.c
28
+ ext/pg_record_coder.c
29
29
  ext/pg_result.c
30
30
  ext/pg_text_decoder.c
31
31
  ext/pg_text_encoder.c
32
+ ext/pg_tuple.c
32
33
  ext/pg_type_map.c
33
34
  ext/pg_type_map_all_strings.c
34
35
  ext/pg_type_map_by_class.c
@@ -36,28 +37,31 @@ ext/pg_type_map_by_column.c
36
37
  ext/pg_type_map_by_mri_type.c
37
38
  ext/pg_type_map_by_oid.c
38
39
  ext/pg_type_map_in_ruby.c
39
- ext/util.c
40
- ext/util.h
40
+ ext/pg_util.c
41
+ ext/pg_util.h
41
42
  ext/vc/pg.sln
42
43
  ext/vc/pg_18/pg.vcproj
43
44
  ext/vc/pg_19/pg_19.vcproj
44
45
  lib/pg.rb
45
46
  lib/pg/basic_type_mapping.rb
47
+ lib/pg/binary_decoder.rb
46
48
  lib/pg/coder.rb
47
49
  lib/pg/connection.rb
48
50
  lib/pg/constants.rb
49
- lib/pg/deprecated_constants.rb
50
51
  lib/pg/exceptions.rb
51
52
  lib/pg/result.rb
52
53
  lib/pg/text_decoder.rb
53
54
  lib/pg/text_encoder.rb
55
+ lib/pg/tuple.rb
54
56
  lib/pg/type_map_by_column.rb
55
57
  spec/data/expected_trace.out
56
58
  spec/data/random_binary_data
57
59
  spec/helpers.rb
58
60
  spec/pg/basic_type_mapping_spec.rb
59
61
  spec/pg/connection_spec.rb
62
+ spec/pg/connection_sync_spec.rb
60
63
  spec/pg/result_spec.rb
64
+ spec/pg/tuple_spec.rb
61
65
  spec/pg/type_map_by_class_spec.rb
62
66
  spec/pg/type_map_by_column_spec.rb
63
67
  spec/pg/type_map_by_mri_type_spec.rb
data/README-Windows.rdoc CHANGED
@@ -35,8 +35,8 @@ Binary gems for windows can be built on Linux, OS-X and even on Windows
35
35
  with the help of docker. This is how regular windows gems are built for
36
36
  rubygems.org .
37
37
 
38
- To do this, install boot2docker [on Windows](https://github.com/boot2docker/windows-installer/releases)
39
- or [on OS X](https://github.com/boot2docker/osx-installer/releases) and make
38
+ To do this, install boot2docker {on Windows}[https://github.com/boot2docker/windows-installer/releases]
39
+ or {on OS X}[https://github.com/boot2docker/osx-installer/releases] and make
40
40
  sure it is started. A native Docker installation is best on Linux.
41
41
 
42
42
  Then run:
@@ -50,7 +50,7 @@ containing binaries for all supported ruby versions.
50
50
 
51
51
  == Reporting Problems
52
52
 
53
- If you have any problems you can submit them via
54
- [the project's issue-tracker][bitbucket]. And submit questions, problems, or
53
+ If you have any problems you can submit them via {the project's
54
+ issue-tracker}[https://github.com/ged/ruby-pg/issues]. And submit questions, problems, or
55
55
  solutions, so that it can be improved.
56
56
 
data/README.ja.rdoc CHANGED
@@ -1,7 +1,6 @@
1
1
  = pg
2
2
 
3
- home :: https://bitbucket.org/ged/ruby-pg
4
- mirror :: https://github.com/ged/ruby-pg
3
+ home :: https://github.com/ged/ruby-pg
5
4
  docs :: http://deveiate.org/code/pg
6
5
 
7
6