pg 0.18.2 → 1.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data/.appveyor.yml +42 -0
- data/.gems +6 -0
- data/.github/workflows/binary-gems.yml +117 -0
- data/.github/workflows/source-gem.yml +141 -0
- data/.gitignore +22 -0
- data/.hgsigs +34 -0
- data/.hgtags +41 -0
- data/.irbrc +23 -0
- data/.pryrc +23 -0
- data/.tm_properties +21 -0
- data/.travis.yml +49 -0
- data/BSDL +2 -2
- data/Gemfile +14 -0
- data/History.md +884 -0
- data/Manifest.txt +8 -21
- data/README-Windows.rdoc +17 -28
- data/README.ja.md +300 -0
- data/README.md +286 -0
- data/Rakefile +40 -131
- data/Rakefile.cross +88 -70
- data/certs/ged.pem +24 -0
- data/certs/larskanis-2022.pem +26 -0
- data/certs/larskanis-2023.pem +24 -0
- data/ext/errorcodes.def +113 -0
- data/ext/errorcodes.rb +1 -1
- data/ext/errorcodes.txt +36 -2
- data/ext/extconf.rb +124 -54
- data/ext/gvl_wrappers.c +8 -0
- data/ext/gvl_wrappers.h +44 -33
- data/ext/pg.c +227 -201
- data/ext/pg.h +99 -100
- data/ext/pg_binary_decoder.c +164 -16
- data/ext/pg_binary_encoder.c +249 -22
- data/ext/pg_coder.c +189 -44
- data/ext/pg_connection.c +1874 -1174
- data/ext/pg_copy_coder.c +398 -42
- data/ext/pg_errors.c +1 -1
- data/ext/pg_record_coder.c +522 -0
- data/ext/pg_result.c +727 -232
- data/ext/pg_text_decoder.c +629 -43
- data/ext/pg_text_encoder.c +269 -102
- data/ext/pg_tuple.c +572 -0
- data/ext/pg_type_map.c +64 -23
- data/ext/pg_type_map_all_strings.c +21 -7
- data/ext/pg_type_map_by_class.c +59 -27
- data/ext/pg_type_map_by_column.c +86 -43
- data/ext/pg_type_map_by_mri_type.c +49 -20
- data/ext/pg_type_map_by_oid.c +62 -29
- data/ext/pg_type_map_in_ruby.c +56 -22
- data/ext/{util.c → pg_util.c} +12 -12
- data/ext/{util.h → pg_util.h} +2 -2
- data/lib/pg/basic_type_map_based_on_result.rb +67 -0
- data/lib/pg/basic_type_map_for_queries.rb +198 -0
- data/lib/pg/basic_type_map_for_results.rb +104 -0
- data/lib/pg/basic_type_registry.rb +299 -0
- data/lib/pg/binary_decoder/date.rb +9 -0
- data/lib/pg/binary_decoder/timestamp.rb +26 -0
- data/lib/pg/binary_encoder/timestamp.rb +20 -0
- data/lib/pg/coder.rb +36 -13
- data/lib/pg/connection.rb +797 -77
- data/lib/pg/exceptions.rb +16 -2
- data/lib/pg/result.rb +24 -7
- data/lib/pg/text_decoder/date.rb +18 -0
- data/lib/pg/text_decoder/inet.rb +9 -0
- data/lib/pg/text_decoder/json.rb +14 -0
- data/lib/pg/text_decoder/numeric.rb +9 -0
- data/lib/pg/text_decoder/timestamp.rb +30 -0
- data/lib/pg/text_encoder/date.rb +12 -0
- data/lib/pg/text_encoder/inet.rb +28 -0
- data/lib/pg/text_encoder/json.rb +14 -0
- data/lib/pg/text_encoder/numeric.rb +9 -0
- data/lib/pg/text_encoder/timestamp.rb +24 -0
- data/lib/pg/tuple.rb +30 -0
- data/lib/pg/type_map_by_column.rb +3 -2
- data/lib/pg/version.rb +4 -0
- data/lib/pg.rb +106 -41
- data/misc/openssl-pg-segfault.rb +31 -0
- data/misc/postgres/History.txt +9 -0
- data/misc/postgres/Manifest.txt +5 -0
- data/misc/postgres/README.txt +21 -0
- data/misc/postgres/Rakefile +21 -0
- data/misc/postgres/lib/postgres.rb +16 -0
- data/misc/ruby-pg/History.txt +9 -0
- data/misc/ruby-pg/Manifest.txt +5 -0
- data/misc/ruby-pg/README.txt +21 -0
- data/misc/ruby-pg/Rakefile +21 -0
- data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
- data/pg.gemspec +34 -0
- data/rakelib/task_extension.rb +46 -0
- data/sample/array_insert.rb +1 -1
- data/sample/async_api.rb +4 -8
- data/sample/async_copyto.rb +1 -1
- data/sample/async_mixed.rb +1 -1
- data/sample/check_conn.rb +1 -1
- data/sample/copydata.rb +71 -0
- data/sample/copyfrom.rb +1 -1
- data/sample/copyto.rb +1 -1
- data/sample/cursor.rb +1 -1
- data/sample/disk_usage_report.rb +6 -15
- data/sample/issue-119.rb +2 -2
- data/sample/losample.rb +1 -1
- data/sample/minimal-testcase.rb +2 -2
- data/sample/notify_wait.rb +1 -1
- data/sample/pg_statistics.rb +6 -15
- data/sample/replication_monitor.rb +9 -18
- data/sample/test_binary_values.rb +1 -1
- data/sample/wal_shipper.rb +2 -2
- data/sample/warehouse_partitions.rb +8 -17
- data/translation/.po4a-version +7 -0
- data/translation/po/all.pot +936 -0
- data/translation/po/ja.po +1036 -0
- data/translation/po4a.cfg +12 -0
- data.tar.gz.sig +0 -0
- metadata +130 -201
- metadata.gz.sig +0 -0
- data/ChangeLog +0 -5545
- data/History.rdoc +0 -313
- data/README.ja.rdoc +0 -14
- data/README.rdoc +0 -161
- data/lib/pg/basic_type_mapping.rb +0 -399
- data/lib/pg/constants.rb +0 -11
- data/lib/pg/text_decoder.rb +0 -42
- data/lib/pg/text_encoder.rb +0 -27
- data/spec/data/expected_trace.out +0 -26
- data/spec/data/random_binary_data +0 -0
- data/spec/helpers.rb +0 -355
- data/spec/pg/basic_type_mapping_spec.rb +0 -251
- data/spec/pg/connection_spec.rb +0 -1535
- data/spec/pg/result_spec.rb +0 -449
- data/spec/pg/type_map_by_class_spec.rb +0 -138
- data/spec/pg/type_map_by_column_spec.rb +0 -222
- data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
- data/spec/pg/type_map_by_oid_spec.rb +0 -149
- data/spec/pg/type_map_in_ruby_spec.rb +0 -164
- data/spec/pg/type_map_spec.rb +0 -22
- data/spec/pg/type_spec.rb +0 -688
- data/spec/pg_spec.rb +0 -50
data/ext/extconf.rb
CHANGED
@@ -15,6 +15,13 @@ if pgdir = with_config( 'pg' )
|
|
15
15
|
ENV['PATH'] = "#{pgdir}/bin" + File::PATH_SEPARATOR + ENV['PATH']
|
16
16
|
end
|
17
17
|
|
18
|
+
if enable_config("gvl-unlock", true)
|
19
|
+
$defs.push( "-DENABLE_GVL_UNLOCK" )
|
20
|
+
$stderr.puts "Calling libpq with GVL unlocked"
|
21
|
+
else
|
22
|
+
$stderr.puts "Calling libpq with GVL locked"
|
23
|
+
end
|
24
|
+
|
18
25
|
if enable_config("windows-cross")
|
19
26
|
# Avoid dependency to external libgcc.dll on x86-mingw32
|
20
27
|
$LDFLAGS << " -static-libgcc"
|
@@ -24,75 +31,138 @@ if enable_config("windows-cross")
|
|
24
31
|
else
|
25
32
|
# Native build
|
26
33
|
|
27
|
-
|
34
|
+
pgconfig = with_config('pg-config') ||
|
35
|
+
with_config('pg_config') ||
|
36
|
+
find_executable('pg_config')
|
37
|
+
|
38
|
+
if pgconfig && pgconfig != 'ignore'
|
28
39
|
$stderr.puts "Using config values from %s" % [ pgconfig ]
|
29
|
-
incdir =
|
30
|
-
libdir =
|
40
|
+
incdir = IO.popen([pgconfig, "--includedir"], &:read).chomp
|
41
|
+
libdir = IO.popen([pgconfig, "--libdir"], &:read).chomp
|
31
42
|
dir_config 'pg', incdir, libdir
|
32
43
|
|
33
|
-
#
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
44
|
+
# Windows traditionally stores DLLs beside executables, not in libdir
|
45
|
+
dlldir = RUBY_PLATFORM=~/mingw|mswin/ ? IO.popen([pgconfig, "--bindir"], &:read).chomp : libdir
|
46
|
+
|
47
|
+
elsif checking_for "libpq per pkg-config" do
|
48
|
+
_cflags, ldflags, _libs = pkg_config("libpq")
|
49
|
+
dlldir = ldflags && ldflags[/-L([^ ]+)/] && $1
|
38
50
|
end
|
51
|
+
|
39
52
|
else
|
40
|
-
|
41
|
-
|
42
|
-
|
53
|
+
incdir, libdir = dir_config 'pg'
|
54
|
+
dlldir = libdir
|
55
|
+
end
|
56
|
+
|
57
|
+
# Try to use runtime path linker option, even if RbConfig doesn't know about it.
|
58
|
+
# The rpath option is usually set implicit by dir_config(), but so far not
|
59
|
+
# on MacOS-X.
|
60
|
+
if dlldir && RbConfig::CONFIG["RPATHFLAG"].to_s.empty?
|
61
|
+
append_ldflags "-Wl,-rpath,#{dlldir.quote}"
|
62
|
+
end
|
63
|
+
|
64
|
+
if /mswin/ =~ RUBY_PLATFORM
|
65
|
+
$libs = append_library($libs, 'ws2_32')
|
43
66
|
end
|
44
67
|
end
|
45
68
|
|
69
|
+
$stderr.puts "Using libpq from #{dlldir}"
|
46
70
|
|
47
|
-
|
48
|
-
|
49
|
-
|
71
|
+
File.write("postgresql_lib_path.rb", <<-EOT)
|
72
|
+
module PG
|
73
|
+
POSTGRESQL_LIB_PATH = #{dlldir.inspect}
|
74
|
+
end
|
75
|
+
EOT
|
76
|
+
$INSTALLFILES = {
|
77
|
+
"./postgresql_lib_path.rb" => "$(RUBYLIBDIR)/pg/"
|
78
|
+
}
|
50
79
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
have_library( 'ms/libpq', 'PQconnectdb', ['libpq-fe.h'] )
|
80
|
+
if RUBY_VERSION >= '2.3.0' && /solaris/ =~ RUBY_PLATFORM
|
81
|
+
append_cppflags( '-D__EXTENSIONS__' )
|
82
|
+
end
|
55
83
|
|
56
|
-
|
57
|
-
|
84
|
+
begin
|
85
|
+
find_header( 'libpq-fe.h' ) or abort "Can't find the 'libpq-fe.h header"
|
86
|
+
find_header( 'libpq/libpq-fs.h' ) or abort "Can't find the 'libpq/libpq-fs.h header"
|
87
|
+
find_header( 'pg_config_manual.h' ) or abort "Can't find the 'pg_config_manual.h' header"
|
88
|
+
|
89
|
+
abort "Can't find the PostgreSQL client library (libpq)" unless
|
90
|
+
have_library( 'pq', 'PQconnectdb', ['libpq-fe.h'] ) ||
|
91
|
+
have_library( 'libpq', 'PQconnectdb', ['libpq-fe.h'] ) ||
|
92
|
+
have_library( 'ms/libpq', 'PQconnectdb', ['libpq-fe.h'] )
|
93
|
+
|
94
|
+
rescue SystemExit
|
95
|
+
install_text = case RUBY_PLATFORM
|
96
|
+
when /linux/
|
97
|
+
<<-EOT
|
98
|
+
Please install libpq or postgresql client package like so:
|
99
|
+
sudo apt install libpq-dev
|
100
|
+
sudo yum install postgresql-devel
|
101
|
+
sudo zypper in postgresql-devel
|
102
|
+
sudo pacman -S postgresql-libs
|
103
|
+
EOT
|
104
|
+
when /darwin/
|
105
|
+
<<-EOT
|
106
|
+
Please install libpq or postgresql client package like so:
|
107
|
+
brew install libpq
|
108
|
+
EOT
|
109
|
+
when /mingw/
|
110
|
+
<<-EOT
|
111
|
+
Please install libpq or postgresql client package like so:
|
112
|
+
ridk exec sh -c "pacman -S ${MINGW_PACKAGE_PREFIX}-postgresql"
|
113
|
+
EOT
|
114
|
+
else
|
115
|
+
<<-EOT
|
116
|
+
Please install libpq or postgresql client package.
|
117
|
+
EOT
|
118
|
+
end
|
119
|
+
|
120
|
+
$stderr.puts <<-EOT
|
121
|
+
*****************************************************************************
|
122
|
+
|
123
|
+
Unable to find PostgreSQL client library.
|
124
|
+
|
125
|
+
#{install_text}
|
126
|
+
or try again with:
|
127
|
+
gem install pg -- --with-pg-config=/path/to/pg_config
|
128
|
+
|
129
|
+
or set library paths manually with:
|
130
|
+
gem install pg -- --with-pg-include=/path/to/libpq-fe.h/ --with-pg-lib=/path/to/libpq.so/
|
131
|
+
|
132
|
+
EOT
|
133
|
+
raise
|
134
|
+
end
|
135
|
+
|
136
|
+
if /mingw/ =~ RUBY_PLATFORM && RbConfig::MAKEFILE_CONFIG['CC'] =~ /gcc/
|
137
|
+
# Work around: https://sourceware.org/bugzilla/show_bug.cgi?id=22504
|
138
|
+
checking_for "workaround gcc version with link issue" do
|
139
|
+
`#{RbConfig::MAKEFILE_CONFIG['CC']} --version`.chomp =~ /\s(\d+)\.\d+\.\d+(\s|$)/ &&
|
140
|
+
$1.to_i >= 6 &&
|
141
|
+
have_library(':libpq.lib') # Prefer linking to libpq.lib over libpq.dll if available
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
have_func 'PQconninfo', 'libpq-fe.h' or
|
58
146
|
abort "Your PostgreSQL is too old. Either install an older version " +
|
59
|
-
"of this gem or upgrade your database."
|
60
|
-
|
61
|
-
have_func '
|
62
|
-
have_func '
|
63
|
-
have_func '
|
64
|
-
have_func '
|
65
|
-
have_func '
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
have_func '
|
70
|
-
have_func '
|
71
|
-
have_func '
|
72
|
-
have_func '
|
73
|
-
have_func 'PQping'
|
74
|
-
have_func 'PQsetSingleRowMode'
|
75
|
-
have_func 'PQconninfo'
|
76
|
-
|
77
|
-
have_func 'rb_encdb_alias'
|
78
|
-
have_func 'rb_enc_alias'
|
79
|
-
have_func 'rb_thread_call_without_gvl'
|
80
|
-
have_func 'rb_thread_call_with_gvl'
|
81
|
-
have_func 'rb_thread_fd_select'
|
82
|
-
have_func 'rb_w32_wrap_io_handle'
|
83
|
-
have_func 'rb_str_modify_expand'
|
84
|
-
have_func 'rb_hash_dup'
|
85
|
-
|
86
|
-
have_const 'PGRES_COPY_BOTH', 'libpq-fe.h'
|
87
|
-
have_const 'PGRES_SINGLE_TUPLE', 'libpq-fe.h'
|
88
|
-
have_const 'PG_DIAG_TABLE_NAME', 'libpq-fe.h'
|
89
|
-
|
90
|
-
$defs.push( "-DHAVE_ST_NOTIFY_EXTRA" ) if
|
91
|
-
have_struct_member 'struct pgNotify', 'extra', 'libpq-fe.h'
|
147
|
+
"of this gem or upgrade your database to at least PostgreSQL-9.3."
|
148
|
+
# optional headers/functions
|
149
|
+
have_func 'PQsslAttribute', 'libpq-fe.h' # since PostgreSQL-9.5
|
150
|
+
have_func 'PQresultVerboseErrorMessage', 'libpq-fe.h' # since PostgreSQL-9.6
|
151
|
+
have_func 'PQencryptPasswordConn', 'libpq-fe.h' # since PostgreSQL-10
|
152
|
+
have_func 'PQresultMemorySize', 'libpq-fe.h' # since PostgreSQL-12
|
153
|
+
have_func 'PQenterPipelineMode', 'libpq-fe.h' do |src| # since PostgreSQL-14
|
154
|
+
# Ensure header files fit as well
|
155
|
+
src + " int con(){ return PGRES_PIPELINE_SYNC; }"
|
156
|
+
end
|
157
|
+
have_func 'timegm'
|
158
|
+
have_func 'rb_gc_adjust_memory_usage' # since ruby-2.4
|
159
|
+
have_func 'rb_gc_mark_movable' # since ruby-2.7
|
160
|
+
have_func 'rb_io_wait' # since ruby-3.0
|
92
161
|
|
93
162
|
# unistd.h confilicts with ruby/win32.h when cross compiling for win32 and ruby 1.9.1
|
94
163
|
have_header 'unistd.h'
|
95
|
-
have_header '
|
164
|
+
have_header 'inttypes.h'
|
165
|
+
have_header('ruby/fiber/scheduler.h') if RUBY_PLATFORM=~/mingw|mswin/
|
96
166
|
|
97
167
|
checking_for "C99 variable length arrays" do
|
98
168
|
$defs.push( "-DHAVE_VARIABLE_LENGTH_ARRAYS" ) if try_compile('void test_vla(int l){ int vla[l]; }')
|
data/ext/gvl_wrappers.c
CHANGED
@@ -5,9 +5,17 @@
|
|
5
5
|
|
6
6
|
#include "pg.h"
|
7
7
|
|
8
|
+
#ifndef HAVE_PQENCRYPTPASSWORDCONN
|
9
|
+
char *PQencryptPasswordConn(PGconn *conn, const char *passwd, const char *user, const char *algorithm){return NULL;}
|
10
|
+
#endif
|
11
|
+
|
12
|
+
#ifdef ENABLE_GVL_UNLOCK
|
8
13
|
FOR_EACH_BLOCKING_FUNCTION( DEFINE_GVL_WRAPPER_STRUCT );
|
9
14
|
FOR_EACH_BLOCKING_FUNCTION( DEFINE_GVL_SKELETON );
|
15
|
+
#endif
|
10
16
|
FOR_EACH_BLOCKING_FUNCTION( DEFINE_GVL_STUB );
|
17
|
+
#ifdef ENABLE_GVL_UNLOCK
|
11
18
|
FOR_EACH_CALLBACK_FUNCTION( DEFINE_GVL_WRAPPER_STRUCT );
|
12
19
|
FOR_EACH_CALLBACK_FUNCTION( DEFINE_GVLCB_SKELETON );
|
20
|
+
#endif
|
13
21
|
FOR_EACH_CALLBACK_FUNCTION( DEFINE_GVLCB_STUB );
|
data/ext/gvl_wrappers.h
CHANGED
@@ -15,13 +15,10 @@
|
|
15
15
|
#ifndef __gvl_wrappers_h
|
16
16
|
#define __gvl_wrappers_h
|
17
17
|
|
18
|
-
#
|
19
|
-
extern void *rb_thread_call_with_gvl(void *(*func)(void *), void *data1);
|
20
|
-
#endif
|
18
|
+
#include <ruby/thread.h>
|
21
19
|
|
22
|
-
#
|
23
|
-
|
24
|
-
rb_unblock_function_t *ubf, void *data2);
|
20
|
+
#ifdef RUBY_EXTCONF_H
|
21
|
+
# include RUBY_EXTCONF_H
|
25
22
|
#endif
|
26
23
|
|
27
24
|
#define DEFINE_PARAM_LIST1(type, name) \
|
@@ -53,20 +50,21 @@ extern void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
|
|
53
50
|
return NULL; \
|
54
51
|
}
|
55
52
|
|
56
|
-
#
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
53
|
+
#ifdef ENABLE_GVL_UNLOCK
|
54
|
+
#define DEFINE_GVL_STUB(name, when_non_void, rettype, lastparamtype, lastparamname) \
|
55
|
+
rettype gvl_##name(FOR_EACH_PARAM_OF_##name(DEFINE_PARAM_LIST3) lastparamtype lastparamname){ \
|
56
|
+
struct gvl_wrapper_##name##_params params = { \
|
57
|
+
{FOR_EACH_PARAM_OF_##name(DEFINE_PARAM_LIST1) lastparamname}, when_non_void((rettype)0) \
|
58
|
+
}; \
|
59
|
+
rb_thread_call_without_gvl(gvl_##name##_skeleton, ¶ms, RUBY_UBF_IO, 0); \
|
60
|
+
when_non_void( return params.retval; ) \
|
61
|
+
}
|
65
62
|
#else
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
63
|
+
#define DEFINE_GVL_STUB(name, when_non_void, rettype, lastparamtype, lastparamname) \
|
64
|
+
rettype gvl_##name(FOR_EACH_PARAM_OF_##name(DEFINE_PARAM_LIST3) lastparamtype lastparamname){ \
|
65
|
+
when_non_void( return ) \
|
66
|
+
name( FOR_EACH_PARAM_OF_##name(DEFINE_PARAM_LIST1) lastparamname ); \
|
67
|
+
}
|
70
68
|
#endif
|
71
69
|
|
72
70
|
#define DEFINE_GVL_STUB_DECL(name, when_non_void, rettype, lastparamtype, lastparamname) \
|
@@ -80,20 +78,21 @@ extern void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
|
|
80
78
|
return NULL; \
|
81
79
|
}
|
82
80
|
|
83
|
-
#
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
81
|
+
#ifdef ENABLE_GVL_UNLOCK
|
82
|
+
#define DEFINE_GVLCB_STUB(name, when_non_void, rettype, lastparamtype, lastparamname) \
|
83
|
+
rettype gvl_##name(FOR_EACH_PARAM_OF_##name(DEFINE_PARAM_LIST3) lastparamtype lastparamname){ \
|
84
|
+
struct gvl_wrapper_##name##_params params = { \
|
85
|
+
{FOR_EACH_PARAM_OF_##name(DEFINE_PARAM_LIST1) lastparamname}, when_non_void((rettype)0) \
|
86
|
+
}; \
|
87
|
+
rb_thread_call_with_gvl(gvl_##name##_skeleton, ¶ms); \
|
88
|
+
when_non_void( return params.retval; ) \
|
89
|
+
}
|
92
90
|
#else
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
91
|
+
#define DEFINE_GVLCB_STUB(name, when_non_void, rettype, lastparamtype, lastparamname) \
|
92
|
+
rettype gvl_##name(FOR_EACH_PARAM_OF_##name(DEFINE_PARAM_LIST3) lastparamtype lastparamname){ \
|
93
|
+
when_non_void( return ) \
|
94
|
+
name( FOR_EACH_PARAM_OF_##name(DEFINE_PARAM_LIST1) lastparamname ); \
|
95
|
+
}
|
97
96
|
#endif
|
98
97
|
|
99
98
|
#define GVL_TYPE_VOID(string)
|
@@ -116,6 +115,8 @@ extern void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
|
|
116
115
|
|
117
116
|
#define FOR_EACH_PARAM_OF_PQresetPoll(param)
|
118
117
|
|
118
|
+
#define FOR_EACH_PARAM_OF_PQping(param)
|
119
|
+
|
119
120
|
#define FOR_EACH_PARAM_OF_PQexec(param) \
|
120
121
|
param(PGconn *, conn)
|
121
122
|
|
@@ -195,8 +196,16 @@ extern void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
|
|
195
196
|
#define FOR_EACH_PARAM_OF_PQsendDescribePortal(param) \
|
196
197
|
param(PGconn *, conn)
|
197
198
|
|
199
|
+
#define FOR_EACH_PARAM_OF_PQsetClientEncoding(param) \
|
200
|
+
param(PGconn *, conn)
|
201
|
+
|
198
202
|
#define FOR_EACH_PARAM_OF_PQisBusy(param)
|
199
203
|
|
204
|
+
#define FOR_EACH_PARAM_OF_PQencryptPasswordConn(param) \
|
205
|
+
param(PGconn *, conn) \
|
206
|
+
param(const char *, passwd) \
|
207
|
+
param(const char *, user)
|
208
|
+
|
200
209
|
#define FOR_EACH_PARAM_OF_PQcancel(param) \
|
201
210
|
param(PGcancel *, cancel) \
|
202
211
|
param(char *, errbuf)
|
@@ -209,6 +218,7 @@ extern void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
|
|
209
218
|
function(PQreset, GVL_TYPE_VOID, void, PGconn *, conn) \
|
210
219
|
function(PQresetStart, GVL_TYPE_NONVOID, int, PGconn *, conn) \
|
211
220
|
function(PQresetPoll, GVL_TYPE_NONVOID, PostgresPollingStatusType, PGconn *, conn) \
|
221
|
+
function(PQping, GVL_TYPE_NONVOID, PGPing, const char *, conninfo) \
|
212
222
|
function(PQexec, GVL_TYPE_NONVOID, PGresult *, const char *, command) \
|
213
223
|
function(PQexecParams, GVL_TYPE_NONVOID, PGresult *, int, resultFormat) \
|
214
224
|
function(PQexecPrepared, GVL_TYPE_NONVOID, PGresult *, int, resultFormat) \
|
@@ -226,10 +236,11 @@ extern void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
|
|
226
236
|
function(PQsendQueryPrepared, GVL_TYPE_NONVOID, int, int, resultFormat) \
|
227
237
|
function(PQsendDescribePrepared, GVL_TYPE_NONVOID, int, const char *, stmt) \
|
228
238
|
function(PQsendDescribePortal, GVL_TYPE_NONVOID, int, const char *, portal) \
|
239
|
+
function(PQsetClientEncoding, GVL_TYPE_NONVOID, int, const char *, encoding) \
|
229
240
|
function(PQisBusy, GVL_TYPE_NONVOID, int, PGconn *, conn) \
|
241
|
+
function(PQencryptPasswordConn, GVL_TYPE_NONVOID, char *, const char *, algorithm) \
|
230
242
|
function(PQcancel, GVL_TYPE_NONVOID, int, int, errbufsize);
|
231
243
|
|
232
|
-
|
233
244
|
FOR_EACH_BLOCKING_FUNCTION( DEFINE_GVL_STUB_DECL );
|
234
245
|
|
235
246
|
|