pg 1.2.2 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  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 +129 -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 +127 -7
  16. data/Manifest.txt +0 -1
  17. data/README.rdoc +8 -7
  18. data/Rakefile +28 -139
  19. data/Rakefile.cross +19 -17
  20. data/certs/ged.pem +24 -0
  21. data/certs/larskanis-2022.pem +26 -0
  22. data/ext/errorcodes.def +8 -0
  23. data/ext/errorcodes.txt +3 -1
  24. data/ext/extconf.rb +100 -25
  25. data/ext/gvl_wrappers.c +4 -0
  26. data/ext/gvl_wrappers.h +23 -0
  27. data/ext/pg.c +59 -4
  28. data/ext/pg.h +18 -0
  29. data/ext/pg_coder.c +90 -24
  30. data/ext/pg_connection.c +673 -493
  31. data/ext/pg_copy_coder.c +45 -15
  32. data/ext/pg_record_coder.c +39 -10
  33. data/ext/pg_result.c +61 -31
  34. data/ext/pg_text_decoder.c +1 -1
  35. data/ext/pg_text_encoder.c +6 -6
  36. data/ext/pg_tuple.c +47 -21
  37. data/ext/pg_type_map.c +41 -8
  38. data/ext/pg_type_map_all_strings.c +15 -1
  39. data/ext/pg_type_map_by_class.c +50 -21
  40. data/ext/pg_type_map_by_column.c +66 -28
  41. data/ext/pg_type_map_by_mri_type.c +47 -18
  42. data/ext/pg_type_map_by_oid.c +52 -23
  43. data/ext/pg_type_map_in_ruby.c +50 -19
  44. data/ext/pg_util.c +2 -2
  45. data/lib/pg/basic_type_map_based_on_result.rb +47 -0
  46. data/lib/pg/basic_type_map_for_queries.rb +193 -0
  47. data/lib/pg/basic_type_map_for_results.rb +81 -0
  48. data/lib/pg/basic_type_registry.rb +296 -0
  49. data/lib/pg/coder.rb +1 -1
  50. data/lib/pg/connection.rb +588 -58
  51. data/lib/pg/version.rb +4 -0
  52. data/lib/pg.rb +47 -32
  53. data/misc/openssl-pg-segfault.rb +31 -0
  54. data/misc/postgres/History.txt +9 -0
  55. data/misc/postgres/Manifest.txt +5 -0
  56. data/misc/postgres/README.txt +21 -0
  57. data/misc/postgres/Rakefile +21 -0
  58. data/misc/postgres/lib/postgres.rb +16 -0
  59. data/misc/ruby-pg/History.txt +9 -0
  60. data/misc/ruby-pg/Manifest.txt +5 -0
  61. data/misc/ruby-pg/README.txt +21 -0
  62. data/misc/ruby-pg/Rakefile +21 -0
  63. data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
  64. data/pg.gemspec +32 -0
  65. data/rakelib/task_extension.rb +46 -0
  66. data/sample/array_insert.rb +20 -0
  67. data/sample/async_api.rb +106 -0
  68. data/sample/async_copyto.rb +39 -0
  69. data/sample/async_mixed.rb +56 -0
  70. data/sample/check_conn.rb +21 -0
  71. data/sample/copydata.rb +71 -0
  72. data/sample/copyfrom.rb +81 -0
  73. data/sample/copyto.rb +19 -0
  74. data/sample/cursor.rb +21 -0
  75. data/sample/disk_usage_report.rb +177 -0
  76. data/sample/issue-119.rb +94 -0
  77. data/sample/losample.rb +69 -0
  78. data/sample/minimal-testcase.rb +17 -0
  79. data/sample/notify_wait.rb +72 -0
  80. data/sample/pg_statistics.rb +285 -0
  81. data/sample/replication_monitor.rb +222 -0
  82. data/sample/test_binary_values.rb +33 -0
  83. data/sample/wal_shipper.rb +434 -0
  84. data/sample/warehouse_partitions.rb +311 -0
  85. data.tar.gz.sig +0 -0
  86. metadata +87 -224
  87. metadata.gz.sig +0 -0
  88. data/ChangeLog +0 -0
  89. data/lib/pg/basic_type_mapping.rb +0 -522
  90. data/spec/data/expected_trace.out +0 -26
  91. data/spec/data/random_binary_data +0 -0
  92. data/spec/helpers.rb +0 -382
  93. data/spec/pg/basic_type_mapping_spec.rb +0 -645
  94. data/spec/pg/connection_spec.rb +0 -1911
  95. data/spec/pg/connection_sync_spec.rb +0 -41
  96. data/spec/pg/result_spec.rb +0 -681
  97. data/spec/pg/tuple_spec.rb +0 -333
  98. data/spec/pg/type_map_by_class_spec.rb +0 -138
  99. data/spec/pg/type_map_by_column_spec.rb +0 -226
  100. data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
  101. data/spec/pg/type_map_by_oid_spec.rb +0 -149
  102. data/spec/pg/type_map_in_ruby_spec.rb +0 -164
  103. data/spec/pg/type_map_spec.rb +0 -22
  104. data/spec/pg/type_spec.rb +0 -1123
  105. data/spec/pg_spec.rb +0 -50
data/History.rdoc CHANGED
@@ -1,3 +1,123 @@
1
+ == v1.3.3 [2022-02-22] Lars Kanis <lars@greiz-reinsdorf.de>
2
+
3
+ Bugfixes:
4
+
5
+ - Fix omission of the third digit of IPv4 addresses in connection URI. #435
6
+ - Fix wrong permission of certs/larskanis-2022.pem in the pg-1.3.2.gem. #432
7
+
8
+
9
+ == v1.3.2 [2022-02-14] Lars Kanis <lars@greiz-reinsdorf.de>
10
+
11
+ Bugfixes:
12
+
13
+ - Cancel only active query after failing transaction. #430
14
+ This avoids an incompatibility with pgbouncer since pg-1.3.0.
15
+ - Fix String objects with non-applied encoding when using COPY or record decoders. #427
16
+ - Update Windows fat binary gem to PostgreSQL-14.2.
17
+
18
+ Enhancements:
19
+
20
+ - Improve extconf.rb checks to reduces the number of compiler calls.
21
+ - Add a check for PGRES_PIPELINE_SYNC, to make sure the library version and the header files are PostgreSQL-14+. #429
22
+
23
+
24
+ == v1.3.1 [2022-02-01] Michael Granger <ged@FaerieMUD.org>
25
+
26
+ Bugfixes:
27
+
28
+ - Fix wrong handling of socket writability on Windows introduced in #417.
29
+ This caused starvation in conn.put_copy_data.
30
+ - Fix error in PG.version_string(true). #419
31
+ - Fix a regression in pg 1.3.0 where Ruby 2.x busy-looping any fractional seconds for every wait. #420
32
+
33
+ Enhancements:
34
+
35
+ - Raise an error when conn.copy_data is used in nonblocking mode.
36
+
37
+
38
+ == v1.3.0 [2022-01-20] Michael Granger <ged@FaerieMUD.org>
39
+
40
+ Install Enhancements:
41
+ - Print some install help if libpq wasn't found. #396
42
+ This should help to pick the necessary package without googling.
43
+ - Update Windows fat binary gem to OpenSSL-1.1.1m and PostgreSQL-14.1.
44
+ - Add binary Windows gems for Ruby 3.0 and 3.1.
45
+ - 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
46
+ - Fall back to pkg-config if pg_config is not found. #380
47
+ - Add option to extconf.rb to disable nogvl-wrapping of libpq functions.
48
+ All methods (except PG::Connection.ping) are nonblocking now, so that GVL unlock is in theory no longer necessary.
49
+ However it can have some advantage in concurrency, so that GVL unlock is still enabled by default.
50
+ Use:
51
+ - gem inst pg -- --disable-gvl-unlock
52
+
53
+ API Enhancements:
54
+ - Add full compatibility to Fiber.scheduler introduced in Ruby-3.0. #397
55
+ - Add async_connect and async_send methods and add specific specs for Fiber.scheduler #342
56
+ - Add async_get_result and async_get_last_result
57
+ - Add async_get_copy_data
58
+ - Implement async_put_copy_data/async_put_copy_end
59
+ - Implement async_reset method using the nonblocking libpq API
60
+ - Add async_set_client_encoding which is compatible to scheduler
61
+ - Add async_cancel as a nonblocking version of conn#cancel
62
+ - Add async_encrypt_password
63
+ - Run Connection.ping in a second thread.
64
+ - Make discard_results scheduler friendly
65
+ - Do all socket waiting through the conn.socket_io object.
66
+ - Avoid PG.connect blocking while address resolution by automatically providing the +hostaddr+ parameter and resolving in Ruby instead of libpq.
67
+ - On Windows Fiber.scheduler support requires Ruby-3.1+.
68
+ It is also only partly usable since may ruby IO methods are not yet scheduler aware on Windows.
69
+ - Add support for pipeline mode of PostgreSQL-14. #401
70
+ - Allow specification of multiple hosts in PostgreSQL URI. #387
71
+ - Add new method conn.backend_key - used to implement our own cancel method.
72
+
73
+ Type cast enhancements:
74
+ - Add PG::BasicTypeMapForQueries::BinaryData for encoding of bytea columns. #348
75
+ - Reduce time to build coder maps and permit to reuse them for several type maps per PG::BasicTypeRegistry::CoderMapsBundle.new(conn) . #376
76
+ - Make BasicTypeRegistry a class and use a global default instance of it.
77
+ Now a local type registry can be instanciated and given to the type map, to avoid changing shared global states.
78
+ - Allow PG::BasicTypeMapForQueries to take a Proc as callback for undefined types.
79
+
80
+ Other Enhancements:
81
+ - Convert all PG classes implemented in C to TypedData objects. #349
82
+ - Support ObjectSpace.memsize_of(obj) on all classes implemented in C. #393
83
+ - Make all PG objects implemented in C memory moveable and therefore GC.compact friendly. #349
84
+ - Update errorcodes and error classes to PostgreSQL-14.0.
85
+ - Add PG::CONNECTION_* constants for conn.status of newer PostgreSQL versions.
86
+ - Add better support for logical replication. #339
87
+ - Change conn.socket_io to read+write mode and to a BasicSocket object instead of IO.
88
+ - Use rb_io_wait() and the conn.socket_io object if available for better compatibility to Fiber.scheduler .
89
+ Fall back to rb_wait_for_single_fd() on ruby < 3.0.
90
+ - On Windows use a specialized wait function as a workaround for very poor performance of rb_io_wait(). #416
91
+
92
+ Bugfixes:
93
+ - Release GVL while calling PQping which is a blocking method, but it didn't release GVL so far.
94
+ - Fix Connection#transaction to no longer block on interrupts, for instance when pressing Ctrl-C and cancel a running query. #390
95
+ - Avoid casting of OIDs to fix compat with Redshift database. #369
96
+ - Call conn.block before each conn.get_result call to avoid possible blocking in case of a slow network and multiple query results.
97
+ - Sporadic Errno::ENOTSOCK when using conn.socket_io on Windows #398
98
+
99
+ Deprecated:
100
+ - Add deprecation warning to PG::BasicTypeRegistry.register_type and siblings.
101
+
102
+ Removed:
103
+ - Remove support of ruby-2.2, 2.3 and 2.4. Minimum is ruby-2.5 now.
104
+ - Remove support for PostgreSQL-9.2. Minimum is PostgreSQL-9.3 now.
105
+ - Remove constant PG::REVISION, which was broken since pg-1.1.4.
106
+
107
+ Repository:
108
+ - Replace Hoe by Bundler for gem packaging
109
+ - Add Github Actions CI and testing of source and binary gems.
110
+
111
+
112
+ == v1.2.3 [2020-03-18] Michael Granger <ged@FaerieMUD.org>
113
+
114
+ Bugfixes:
115
+
116
+ - Fix possible segfault at `PG::Coder#encode`, `decode` or their implicit calls through
117
+ a typemap after GC.compact. #327
118
+ - Fix possible segfault in `PG::TypeMapByClass` after GC.compact. #328
119
+
120
+
1
121
  == v1.2.2 [2020-01-06] Michael Granger <ged@FaerieMUD.org>
2
122
 
3
123
  Enhancements:
@@ -45,7 +165,7 @@ Other enhancements:
45
165
  - Improve performance of PG::Result#stream_each_tuple .
46
166
  - 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
47
167
  - Update Windows fat binary gem to OpenSSL-1.1.1d and PostgreSQL-12.1.
48
- - Add support for TruffleRuby. It is regulary tested as part of our CI.
168
+ - Add support for TruffleRuby. It is regularly tested as part of our CI.
49
169
  - Enable +frozen_string_literal+ in all pg's ruby files
50
170
 
51
171
  Bugfixes:
@@ -108,10 +228,10 @@ Deprecated (disable warnings per PG_SKIP_DEPRECATION_WARNING=1):
108
228
  - Forwarding conn.async_exec_params to conn.async_exec is deprecated.
109
229
 
110
230
  PG::Connection enhancements:
111
- - Provide PG::Connection#sync_* and PG::Connection#async_* query methods for explicit calling syncronous or asynchronous libpq API.
231
+ - Provide PG::Connection#sync_* and PG::Connection#async_* query methods for explicit calling synchronous or asynchronous libpq API.
112
232
  - Make PG::Connection#exec and siblings switchable between sync and async API per PG::Connection.async_api= and change the default to async flavors.
113
233
  - Add async flavors of exec_params, prepare, exec_prepared, describe_prepared and describe_portal.
114
- They are identical to their syncronous counterpart, but make use of PostgreSQL's async API.
234
+ They are identical to their synchronous counterpart, but make use of PostgreSQL's async API.
115
235
  - Replace `rb_thread_fd_select()` by faster `rb_wait_for_single_fd()` in `conn.block` and `conn.async_exec` .
116
236
  - Add PG::Connection#discard_results .
117
237
  - 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.
@@ -266,7 +386,7 @@ Bugfixes:
266
386
  - Revert addition of PG::Connection#hostaddr [#202].
267
387
  - Fix decoding of fractional timezones and timestamps [#203]
268
388
  - Fixes for non-C99 compilers
269
- - Avoid possible symbol name clash when linking againt static libpq.
389
+ - Avoid possible symbol name clash when linking against static libpq.
270
390
 
271
391
 
272
392
  == v0.18.1 [2015-01-05] Michael Granger <ged@FaerieMUD.org>
@@ -302,7 +422,7 @@ Enhancements:
302
422
  Bugfixes:
303
423
 
304
424
  - Fix compatibility with signal handlers defined in Ruby. This reverts
305
- cancelation of queries running on top of the blocking libpq API (like
425
+ cancellation of queries running on top of the blocking libpq API (like
306
426
  Connection#exec) in case of signals. As an alternative the #async_exec
307
427
  can be used, which is reverted to use the non-blocking API, again.
308
428
  - Wrap PQcancel to be called without GVL. It internally waits for
@@ -380,7 +500,7 @@ Enhancements:
380
500
 
381
501
  - Tested under Ruby 2.0.0p0.
382
502
  - Add single row mode of PostgreSQL 9.2.
383
- - Set fallback_application_name to programm name $0. Thanks to Will Leinweber
503
+ - Set fallback_application_name to program name $0. Thanks to Will Leinweber
384
504
  for the patch.
385
505
  - Release Ruby's GVL while calls to blocking libpq functions to allow better
386
506
  concurrency in threaded applications.
@@ -388,7 +508,7 @@ Enhancements:
388
508
  - Make use of rb_thread_fd_select() on Ruby 1.9 and avoid deprecated
389
509
  rb_thread_select().
390
510
  - Add an example of how to insert array data using a prepared statement (#145).
391
- - Add continous integration tests on travis-ci.org.
511
+ - Add continuous integration tests on travis-ci.org.
392
512
  - Add PG::Result#each_row for iterative over result sets by row. Thanks to
393
513
  Aaron Patterson for the patch.
394
514
  - 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
data/README.rdoc CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  home :: https://github.com/ged/ruby-pg
4
4
  docs :: http://deveiate.org/code/pg
5
+ clog :: link:/History.rdoc
5
6
 
6
7
  {<img src="https://badges.gitter.im/Join%20Chat.svg" alt="Join the chat at https://gitter.im/ged/ruby-pg">}[https://gitter.im/ged/ruby-pg?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge]
7
8
 
@@ -10,7 +11,7 @@ docs :: http://deveiate.org/code/pg
10
11
 
11
12
  Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/].
12
13
 
13
- It works with {PostgreSQL 9.2 and later}[http://www.postgresql.org/support/versioning/].
14
+ It works with {PostgreSQL 9.3 and later}[http://www.postgresql.org/support/versioning/].
14
15
 
15
16
  A small example usage:
16
17
 
@@ -24,22 +25,22 @@ A small example usage:
24
25
  puts " PID | User | Query"
25
26
  result.each do |row|
26
27
  puts " %7d | %-16s | %s " %
27
- row.values_at('procpid', 'usename', 'current_query')
28
+ row.values_at('pid', 'usename', 'query')
28
29
  end
29
30
  end
30
31
 
31
32
  == Build Status
32
33
 
33
- {<img src="https://travis-ci.org/ged/ruby-pg.svg?branch=master" alt="Build Status Travis-CI" />}[https://travis-ci.org/ged/ruby-pg]
34
+ {<img src="https://github.com/ged/ruby-pg/actions/workflows/source-gem.yml/badge.svg?branch=master" alt="Build Status Github Actions" />}[https://github.com/ged/ruby-pg/actions/workflows/source-gem.yml]
34
35
  {<img src="https://ci.appveyor.com/api/projects/status/gjx5axouf3b1wicp?svg=true" alt="Build Status Appveyor" />}[https://ci.appveyor.com/project/ged/ruby-pg-9j8l3]
35
-
36
+ {<img src="https://app.travis-ci.com/larskanis/ruby-pg.svg?branch=master" alt="Build Status" />}[https://app.travis-ci.com/larskanis/ruby-pg]
36
37
 
37
38
  == Requirements
38
39
 
39
- * Ruby 2.2 or newer
40
- * PostgreSQL 9.2.x or later (with headers, -dev packages, etc).
40
+ * Ruby 2.4 or newer
41
+ * PostgreSQL 9.3.x or later (with headers, -dev packages, etc).
41
42
 
42
- It usually work with earlier versions of Ruby/PostgreSQL as well, but those are
43
+ It usually works with earlier versions of Ruby/PostgreSQL as well, but those are
43
44
  not regularly tested.
44
45
 
45
46
 
data/Rakefile CHANGED
@@ -3,20 +3,11 @@
3
3
  require 'rbconfig'
4
4
  require 'pathname'
5
5
  require 'tmpdir'
6
-
7
- begin
8
- require 'rake/extensiontask'
9
- rescue LoadError
10
- abort "This Rakefile requires rake-compiler (gem install rake-compiler)"
11
- end
12
-
13
- begin
14
- require 'hoe'
15
- rescue LoadError
16
- abort "This Rakefile requires hoe (gem install hoe)"
17
- end
18
-
6
+ require 'rake/extensiontask'
19
7
  require 'rake/clean'
8
+ require 'rspec/core/rake_task'
9
+ require 'bundler'
10
+ require 'bundler/gem_helper'
20
11
 
21
12
  # Build directory constants
22
13
  BASEDIR = Pathname( __FILE__ ).dirname
@@ -25,82 +16,23 @@ LIBDIR = BASEDIR + 'lib'
25
16
  EXTDIR = BASEDIR + 'ext'
26
17
  PKGDIR = BASEDIR + 'pkg'
27
18
  TMPDIR = BASEDIR + 'tmp'
19
+ TESTDIR = BASEDIR + "tmp_test_specs"
28
20
 
29
21
  DLEXT = RbConfig::CONFIG['DLEXT']
30
22
  EXT = LIBDIR + "pg_ext.#{DLEXT}"
31
23
 
32
24
  GEMSPEC = 'pg.gemspec'
33
25
 
34
- TEST_DIRECTORY = BASEDIR + "tmp_test_specs"
35
-
36
- CLOBBER.include( TEST_DIRECTORY.to_s )
26
+ CLOBBER.include( TESTDIR.to_s )
37
27
  CLEAN.include( PKGDIR.to_s, TMPDIR.to_s )
38
28
  CLEAN.include "lib/*/libpq.dll"
39
29
  CLEAN.include "lib/pg_ext.*"
40
-
41
- # Set up Hoe plugins
42
- Hoe.plugin :mercurial
43
- Hoe.plugin :signing
44
- Hoe.plugin :deveiate
45
- Hoe.plugin :bundler
46
-
47
- Hoe.plugins.delete :rubyforge
48
- Hoe.plugins.delete :compiler
30
+ CLEAN.include "lib/pg/postgresql_lib_path.rb"
49
31
 
50
32
  load 'Rakefile.cross'
51
33
 
52
-
53
- # Hoe specification
54
- $hoespec = Hoe.spec 'pg' do
55
- self.readme_file = 'README.rdoc'
56
- self.history_file = 'History.rdoc'
57
- self.extra_rdoc_files = Rake::FileList[ '*.rdoc' ]
58
- self.extra_rdoc_files.include( 'POSTGRES', 'LICENSE' )
59
- self.extra_rdoc_files.include( 'ext/*.c' )
60
- self.license 'BSD-2-Clause'
61
-
62
- self.developer 'Michael Granger', 'ged@FaerieMUD.org'
63
- self.developer 'Lars Kanis', 'lars@greiz-reinsdorf.de'
64
-
65
- self.dependency 'rake-compiler', '~> 1.0', :developer
66
- self.dependency 'rake-compiler-dock', ['~> 1.0'], :developer
67
- self.dependency 'hoe-deveiate', '~> 0.9', :developer
68
- self.dependency 'hoe-bundler', '~> 1.0', :developer
69
- self.dependency 'rspec', '~> 3.5', :developer
70
- self.dependency 'rdoc', '~> 5.1', :developer
71
-
72
- self.spec_extras[:extensions] = [ 'ext/extconf.rb' ]
73
-
74
- self.require_ruby_version( '>= 2.2' )
75
-
76
- self.hg_sign_tags = true if self.respond_to?( :hg_sign_tags= )
77
- self.check_history_on_release = true if self.respond_to?( :check_history_on_release= )
78
-
79
- self.rdoc_locations << "deveiate:/usr/local/www/public/code/#{remote_rdoc_dir}"
80
- end
81
-
82
- ENV['VERSION'] ||= $hoespec.spec.version.to_s
83
-
84
- # Tests should pass before checking in
85
- task 'hg:precheckin' => [ :check_history, :check_manifest, :spec, :gemspec ]
86
-
87
- # Support for 'rvm specs'
88
- task :specs => :spec
89
-
90
- # Compile before testing
91
- task :spec => :compile
92
-
93
- # gem-testers support
94
- task :test do
95
- # rake-compiler always wants to copy the compiled extension into lib/, but
96
- # we don't want testers to have to re-compile, especially since that
97
- # often fails because they can't (and shouldn't have to) write to tmp/ in
98
- # the installed gem dir. So we clear the task rake-compiler set up
99
- # to break the dependency between :spec and :compile when running under
100
- # rubygems-test, and then run :spec.
101
- Rake::Task[ EXT.to_s ].clear if File.exist?(EXT.to_s)
102
- Rake::Task[ :spec ].execute
103
- end
34
+ Bundler::GemHelper.install_tasks
35
+ $gem_spec = Bundler.load_gemspec(GEMSPEC)
104
36
 
105
37
  desc "Turn on warnings and debugging in the build."
106
38
  task :maint do
@@ -110,12 +42,12 @@ end
110
42
  # Rake-compiler task
111
43
  Rake::ExtensionTask.new do |ext|
112
44
  ext.name = 'pg_ext'
113
- ext.gem_spec = $hoespec.spec
45
+ ext.gem_spec = $gem_spec
114
46
  ext.ext_dir = 'ext'
115
47
  ext.lib_dir = 'lib'
116
48
  ext.source_pattern = "*.{c,h}"
117
49
  ext.cross_compile = true
118
- ext.cross_platform = CrossLibraries.map &:for_platform
50
+ ext.cross_platform = CrossLibraries.map(&:for_platform)
119
51
 
120
52
  ext.cross_config_options += CrossLibraries.map do |lib|
121
53
  {
@@ -135,58 +67,32 @@ Rake::ExtensionTask.new do |ext|
135
67
  end
136
68
  end
137
69
 
70
+ RSpec::Core::RakeTask.new(:spec).rspec_opts = "--profile -cfdoc"
71
+ task :test => :spec
138
72
 
139
73
  # Use the fivefish formatter for docs generated from development checkout
140
- if File.directory?( '.hg' )
141
- require 'rdoc/task'
142
-
143
- Rake::Task[ 'docs' ].clear
144
- RDoc::Task.new( 'docs' ) do |rdoc|
145
- rdoc.main = "README.rdoc"
146
- rdoc.rdoc_files.include( "*.rdoc", "ChangeLog", "lib/**/*.rb", 'ext/**/*.{c,h}' )
147
- rdoc.generator = :fivefish
148
- rdoc.title = "PG: The Ruby PostgreSQL Driver"
149
- rdoc.rdoc_dir = 'doc'
150
- end
74
+ require 'rdoc/task'
75
+
76
+ RDoc::Task.new( 'docs' ) do |rdoc|
77
+ rdoc.main = "README.rdoc"
78
+ rdoc.rdoc_files.include( "*.rdoc", "lib/**/*.rb", 'ext/**/*.{c,h}' )
79
+ rdoc.generator = :fivefish
80
+ rdoc.title = "PG: The Ruby PostgreSQL Driver"
81
+ rdoc.rdoc_dir = 'doc'
151
82
  end
152
83
 
84
+ desc "Build the source gem #{$gem_spec.full_name}.gem into the pkg directory"
85
+ task :gem => :build
153
86
 
154
- # Make the ChangeLog update if the repo has changed since it was last built
155
- file '.hg/branch' do
156
- warn "WARNING: You need the Mercurial repo to update the ChangeLog"
157
- end
158
- Rake::Task["ChangeLog"].clear
159
- file 'ChangeLog' do |task|
160
- if File.exist?('.hg/branch')
161
- $stderr.puts "Updating the changelog..."
162
- begin
163
- include Hoe::MercurialHelpers
164
- content = make_changelog()
165
- rescue NameError
166
- abort "Packaging tasks require the hoe-mercurial plugin (gem install hoe-mercurial)"
167
- end
168
- File.open( task.name, 'w', 0644 ) do |fh|
169
- fh.print( content )
170
- end
171
- else
172
- touch 'ChangeLog'
173
- end
174
- end
175
-
176
- # Rebuild the ChangeLog immediately before release
177
- task :prerelease => 'ChangeLog'
178
-
179
-
180
- desc "Stop any Postmaster instances that remain after testing."
181
- task :cleanup_testing_dbs do
182
- require 'spec/lib/helpers'
183
- PgTestingHelpers.stop_existing_postmasters()
184
- Rake::Task[:clean].invoke
87
+ task :clobber do
88
+ puts "Stop any Postmaster instances that remain after testing."
89
+ require_relative 'spec/helpers'
90
+ PG::TestingHelpers.stop_existing_postmasters()
185
91
  end
186
92
 
187
93
  desc "Update list of server error codes"
188
94
  task :update_error_codes do
189
- URL_ERRORCODES_TXT = "http://git.postgresql.org/gitweb/?p=postgresql.git;a=blob_plain;f=src/backend/utils/errcodes.txt;hb=refs/tags/REL_12_0"
95
+ URL_ERRORCODES_TXT = "http://git.postgresql.org/gitweb/?p=postgresql.git;a=blob_plain;f=src/backend/utils/errcodes.txt;hb=refs/tags/REL_14_0"
190
96
 
191
97
  ERRORCODES_TXT = "ext/errorcodes.txt"
192
98
  sh "wget #{URL_ERRORCODES_TXT.inspect} -O #{ERRORCODES_TXT.inspect} || curl #{URL_ERRORCODES_TXT.inspect} -o #{ERRORCODES_TXT.inspect}"
@@ -198,20 +104,3 @@ file 'ext/pg_errors.c' => ['ext/errorcodes.def'] do
198
104
  # trigger compilation of changed errorcodes.def
199
105
  touch 'ext/pg_errors.c'
200
106
  end
201
-
202
- task :gemspec => GEMSPEC
203
- file GEMSPEC => __FILE__
204
- task GEMSPEC do |task|
205
- spec = $hoespec.spec
206
- spec.files.delete( '.gemtest' )
207
- spec.signing_key = nil
208
- spec.version = "#{spec.version.bump}.0.pre#{Time.now.strftime("%Y%m%d%H%M%S")}"
209
- spec.cert_chain = [ 'certs/ged.pem' ]
210
- File.open( task.name, 'w' ) do |fh|
211
- fh.write( spec.to_ruby )
212
- end
213
- end
214
-
215
- CLOBBER.include( '*.gemspec' )
216
- task :default => :gemspec
217
-
data/Rakefile.cross CHANGED
@@ -7,6 +7,7 @@ require 'rake/clean'
7
7
  require 'rake/extensiontask'
8
8
  require 'rake/extensioncompiler'
9
9
  require 'ostruct'
10
+ require_relative 'rakelib/task_extension'
10
11
 
11
12
  MISCDIR = BASEDIR + 'misc'
12
13
 
@@ -20,6 +21,7 @@ end
20
21
 
21
22
  class CrossLibrary < OpenStruct
22
23
  include Rake::DSL
24
+ prepend TaskExtension
23
25
 
24
26
  def initialize(for_platform, openssl_config, toolchain)
25
27
  super()
@@ -29,15 +31,15 @@ class CrossLibrary < OpenStruct
29
31
  self.host_platform = toolchain
30
32
 
31
33
  # Cross-compilation constants
32
- self.openssl_version = ENV['OPENSSL_VERSION'] || '1.1.1d'
33
- self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '12.1'
34
+ self.openssl_version = ENV['OPENSSL_VERSION'] || '1.1.1m'
35
+ self.postgresql_version = ENV['POSTGRESQL_VERSION'] || '14.2'
34
36
 
35
37
  # Check if symlinks work in the current working directory.
36
38
  # This fails, if rake-compiler-dock is running on a Windows box.
37
39
  begin
38
40
  FileUtils.rm_f '.test_symlink'
39
41
  FileUtils.ln_s '/', '.test_symlink'
40
- rescue SystemCallError
42
+ rescue NotImplementedError, SystemCallError
41
43
  # Symlinks don't work -> use home directory instead
42
44
  self.compile_home = Pathname( "~/.ruby-pg-build" ).expand_path
43
45
  else
@@ -83,17 +85,6 @@ class CrossLibrary < OpenStruct
83
85
  # clean intermediate files and folders
84
86
  CLEAN.include( static_builddir.to_s )
85
87
 
86
-
87
- def download(url, save_to)
88
- part = save_to+".part"
89
- sh "wget #{url.to_s.inspect} -O #{part.inspect} || curl #{url.to_s.inspect} -o #{part.inspect}"
90
- FileUtils.mv part, save_to
91
- end
92
-
93
- def run(*args)
94
- sh *args
95
- end
96
-
97
88
  #####################################################################
98
89
  ### C R O S S - C O M P I L A T I O N - T A S K S
99
90
  #####################################################################
@@ -248,9 +239,20 @@ class CrossLibrary < OpenStruct
248
239
  cp postgresql_lib, stage_libpq
249
240
  end
250
241
  end
242
+
243
+ def download(url, save_to)
244
+ part = save_to+".part"
245
+ sh "wget #{url.to_s.inspect} -O #{part.inspect} || curl #{url.to_s.inspect} -o #{part.inspect}"
246
+ FileUtils.mv part, save_to
247
+ end
248
+
249
+ def run(*args)
250
+ sh(*args)
251
+ end
251
252
  end
252
253
 
253
254
  CrossLibraries = [
255
+ ['x64-mingw-ucrt', 'mingw64', 'x86_64-w64-mingw32'],
254
256
  ['x86-mingw32', 'mingw', 'i686-w64-mingw32'],
255
257
  ['x64-mingw32', 'mingw64', 'x86_64-w64-mingw32'],
256
258
  ].map do |platform, openssl_config, toolchain|
@@ -273,7 +275,7 @@ task 'gem:windows:prepare' do
273
275
  require 'io/console'
274
276
  require 'rake_compiler_dock'
275
277
 
276
- # Copy gem signing key and certs to be accessable from the docker container
278
+ # Copy gem signing key and certs to be accessible from the docker container
277
279
  mkdir_p 'build/gem'
278
280
  sh "cp ~/.gem/gem-*.pem build/gem/ || true"
279
281
  sh "bundle package"
@@ -288,11 +290,11 @@ end
288
290
  CrossLibraries.each do |xlib|
289
291
  platform = xlib.for_platform
290
292
  desc "Build fat binary gem for platform #{platform}"
291
- task "gem:windows:#{platform}" => ['ChangeLog', 'gem:windows:prepare', xlib.openssl_tarball, xlib.postgresql_tarball] do
293
+ task "gem:windows:#{platform}" => ['gem:windows:prepare', xlib.openssl_tarball, xlib.postgresql_tarball] do
292
294
  RakeCompilerDock.sh <<-EOT, platform: platform
293
295
  (cp build/gem/gem-*.pem ~/.gem/ || true) &&
294
296
  bundle install --local &&
295
- rake native:#{platform} pkg/#{$hoespec.spec.full_name}-#{platform}.gem MAKE="make -j`nproc`"
297
+ rake native:#{platform} pkg/#{$gem_spec.full_name}-#{platform}.gem MAKE="make -j`nproc`" RUBY_CC_VERSION=3.1.0:3.0.0:2.7.0:2.6.0:2.5.0
296
298
  EOT
297
299
  end
298
300
  desc "Build the windows binary gems"
data/certs/ged.pem ADDED
@@ -0,0 +1,24 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIID+DCCAmCgAwIBAgIBBDANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
3
+ REM9RmFlcmllTVVEL0RDPW9yZzAeFw0yMjAxMDcyMzU4MTRaFw0yMzAxMDcyMzU4
4
+ MTRaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
5
+ hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
6
+ L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
7
+ M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
8
+ 5PU2AEbf04GGSrmqADGWXeaslaoRdb1fu/0M5qfPTRn5V39sWD9umuDAF9qqil/x
9
+ Sl6phTvgBrG8GExHbNZpLARd3xrBYLEFsX7RvBn2UPfgsrtvpdXjsHGfpT3IPN+B
10
+ vQ66lts4alKC69TE5cuKasWBm+16A4aEe3XdZBRNmtOu/g81gvwA7fkJHKllJuaI
11
+ dXzdHqq+zbGZVSQ7pRYHYomD0IiDe1DbIouFnPWmagaBnGHwXkDT2bKKP+s2v21m
12
+ ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
13
+ N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYD
14
+ VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DANBgkqhkiG
15
+ 9w0BAQsFAAOCAYEASrm1AbEoxACZ9WXJH3R5axV3U0CA4xaETlL2YT+2nOfVBMQ9
16
+ 0ZlkPx6j4ghKJgAIi1TMfDM2JyPJsppQh8tiNccDjWc62UZRY/dq26cMqf/lcI+a
17
+ 6YBuEYvzZfearwVs8tHnXtwYV3WSCoCOQaB+nq2lA1O+nkKNl41WOsVbNama5jx3
18
+ 8cQtVSEEmZy6jIDJ8c5TmBJ7BQUDEUEWA/A3V42Xyctoj7DvUXWE0lP+X6ypAVSr
19
+ lFh3TS64D7NTvxkmg7natUoCvobl6kGl4yMaqE4YRTlfuzhpf91TSOntClqrAOsS
20
+ K1s56WndQj3IoBocdY9mQhDZLtLHofSkymoP8btBlj5SsN24TiF0VMSZlctSCYZg
21
+ GKyHim/MMlIfGOWsgfioq5jzwmql7W4CDubbb8Lkg70v+hN2E/MnNVAcNE3gyaGc
22
+ P5YP5BAbNW+gvd3QHRiWTTuhgHrdDnGdXg93N2M5KHn1ug8BtPLQwlcFwEpKnlLn
23
+ btEP+7EplFuoiMfd
24
+ -----END CERTIFICATE-----
@@ -0,0 +1,26 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIETTCCArWgAwIBAgIBATANBgkqhkiG9w0BAQsFADAoMSYwJAYDVQQDDB1sYXJz
3
+ L0RDPWdyZWl6LXJlaW5zZG9yZi9EQz1kZTAeFw0yMjAyMTQxMzMwNTZaFw0yMzAy
4
+ MTQxMzMwNTZaMCgxJjAkBgNVBAMMHWxhcnMvREM9Z3JlaXotcmVpbnNkb3JmL0RD
5
+ PWRlMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAwum6Y1KznfpzXOT/
6
+ mZgJTBbxZuuZF49Fq3K0WA67YBzNlDv95qzSp7V/7Ek3NCcnT7G+2kSuhNo1FhdN
7
+ eSDO/moYebZNAcu3iqLsuzuULXPLuoU0GsMnVMqV9DZPh7cQHE5EBZ7hlzDBK7k/
8
+ 8nBMvR0mHo77kIkapHc26UzVq/G0nKLfDsIHXVylto3PjzOumjG6GhmFN4r3cP6e
9
+ SDfl1FSeRYVpt4kmQULz/zdSaOH3AjAq7PM2Z91iGwQvoUXMANH2v89OWjQO/NHe
10
+ JMNDFsmHK/6Ji4Kk48Z3TyscHQnipAID5GhS1oD21/WePdj7GhmbF5gBzkV5uepd
11
+ eJQPgWGwrQW/Z2oPjRuJrRofzWfrMWqbOahj9uth6WSxhNexUtbjk6P8emmXOJi5
12
+ chQPnWX+N3Gj+jjYxqTFdwT7Mj3pv1VHa+aNUbqSPpvJeDyxRIuo9hvzDaBHb/Cg
13
+ 9qRVcm8a96n4t7y2lrX1oookY6bkBaxWOMtWlqIprq8JZXM9AgMBAAGjgYEwfzAJ
14
+ BgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUOIdbSMr3VFrTCO9/cTM0
15
+ 0exHzBcwIgYDVR0RBBswGYEXbGFyc0BncmVpei1yZWluc2RvcmYuZGUwIgYDVR0S
16
+ BBswGYEXbGFyc0BncmVpei1yZWluc2RvcmYuZGUwDQYJKoZIhvcNAQELBQADggGB
17
+ AFWP7F/y3Oq3NgrqUOnjKOeDaBa7AqNhHS+PZg+C90lnJzMgOs4KKgZYxqSQVSab
18
+ SCEmzIO/StkXY4NpJ4fYLrHemf/fJy1wPyu+fNdp5SEEUwEo+2toRFlzTe4u4LdS
19
+ QC636nPPTMt8H3xz2wf/lUIUeo2Qc95Qt2BQM465ibbG9kmA3c7Sopx6yOabYOAl
20
+ KPRbOSEPiWYcF9Suuz8Gdf8jxEtPlnZiwRvnYJ+IHMq3XQCJWPpMzdDMbtlgHbXE
21
+ vq1zOTLMSYAS0UB3uionR4yo1hLz60odwkCm7qf0o2Ci/5OjtB0a89VuyqRU2vUJ
22
+ QH95WBjDJ6lCCW7J0mrMPnJQSUFTmufsU6jOChvPaCeAzW1YwrsP/YKnvwueG7ip
23
+ VOdW6RitjtFxhS7evRL0201+KUvLz12zZWWjOcujlQs64QprxOtiv/MiisKb1Ng+
24
+ oL1mUdzB8KrZL4/WbG5YNX6UTtJbIOu9qEFbBAy4/jtIkJX+dlNoFwd4GXQW1YNO
25
+ nA==
26
+ -----END CERTIFICATE-----
data/ext/errorcodes.def CHANGED
@@ -306,6 +306,10 @@
306
306
  VALUE klass = define_error_class( "DuplicateJsonObjectKeyValue", "22" );
307
307
  register_error_class( "22030", klass );
308
308
  }
309
+ {
310
+ VALUE klass = define_error_class( "InvalidArgumentForSqlJsonDatetimeFunction", "22" );
311
+ register_error_class( "22031", klass );
312
+ }
309
313
  {
310
314
  VALUE klass = define_error_class( "InvalidJsonText", "22" );
311
315
  register_error_class( "22032", klass );
@@ -856,6 +860,10 @@
856
860
  VALUE klass = define_error_class( "DatabaseDropped", "57" );
857
861
  register_error_class( "57P04", klass );
858
862
  }
863
+ {
864
+ VALUE klass = define_error_class( "IdleSessionTimeout", "57" );
865
+ register_error_class( "57P05", klass );
866
+ }
859
867
  {
860
868
  VALUE klass = define_error_class( "SystemError", NULL );
861
869
  register_error_class( "58000", klass );
data/ext/errorcodes.txt CHANGED
@@ -2,7 +2,7 @@
2
2
  # errcodes.txt
3
3
  # PostgreSQL error codes
4
4
  #
5
- # Copyright (c) 2003-2019, PostgreSQL Global Development Group
5
+ # Copyright (c) 2003-2021, PostgreSQL Global Development Group
6
6
  #
7
7
  # This list serves as the basis for generating source files containing error
8
8
  # codes. It is kept in a common format to make sure all these source files have
@@ -207,6 +207,7 @@ Section: Class 22 - Data Exception
207
207
  2200S E ERRCODE_INVALID_XML_COMMENT invalid_xml_comment
208
208
  2200T E ERRCODE_INVALID_XML_PROCESSING_INSTRUCTION invalid_xml_processing_instruction
209
209
  22030 E ERRCODE_DUPLICATE_JSON_OBJECT_KEY_VALUE duplicate_json_object_key_value
210
+ 22031 E ERRCODE_INVALID_ARGUMENT_FOR_SQL_JSON_DATETIME_FUNCTION invalid_argument_for_sql_json_datetime_function
210
211
  22032 E ERRCODE_INVALID_JSON_TEXT invalid_json_text
211
212
  22033 E ERRCODE_INVALID_SQL_JSON_SUBSCRIPT invalid_sql_json_subscript
212
213
  22034 E ERRCODE_MORE_THAN_ONE_SQL_JSON_ITEM more_than_one_sql_json_item
@@ -427,6 +428,7 @@ Section: Class 57 - Operator Intervention
427
428
  57P02 E ERRCODE_CRASH_SHUTDOWN crash_shutdown
428
429
  57P03 E ERRCODE_CANNOT_CONNECT_NOW cannot_connect_now
429
430
  57P04 E ERRCODE_DATABASE_DROPPED database_dropped
431
+ 57P05 E ERRCODE_IDLE_SESSION_TIMEOUT idle_session_timeout
430
432
 
431
433
  Section: Class 58 - System Error (errors external to PostgreSQL itself)
432
434