pg 1.6.0.rc1 → 1.6.0.rc2
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/{History.md → CHANGELOG.md} +28 -0
- data/Gemfile +1 -1
- data/README.ja.md +1 -1
- data/README.md +2 -1
- data/Rakefile +31 -7
- data/ext/extconf.rb +51 -13
- data/ext/pg.h +1 -0
- data/ext/pg_binary_encoder.c +8 -1
- data/ext/pg_coder.c +49 -0
- data/ext/pg_connection.c +31 -10
- data/ext/pg_text_encoder.c +18 -5
- data/ext/pg_type_map_by_column.c +1 -0
- data/ext/pg_type_map_by_oid.c +2 -0
- data/lib/pg/basic_type_map_for_queries.rb +7 -3
- data/lib/pg/cancel_connection.rb +26 -3
- data/lib/pg/coder.rb +2 -1
- data/lib/pg/connection.rb +84 -19
- data/lib/pg/version.rb +1 -1
- data/misc/yugabyte/Dockerfile +9 -0
- data/misc/yugabyte/docker-compose.yml +28 -0
- data/misc/yugabyte/pg-test.rb +45 -0
- data/pg.gemspec +3 -1
- data/ports/patches/krb5/1.21.3/0001-Allow-static-linking-krb5-library.patch +30 -0
- data/ports/patches/openssl/3.5.1/0001-aarch64-mingw.patch +21 -0
- data/ports/patches/postgresql/17.5/0001-Use-workaround-of-__builtin_setjmp-only-on-MINGW-on-.patch +42 -0
- data/ports/patches/postgresql/17.5/0001-libpq-Process-buffered-SSL-read-bytes-to-support-rec.patch +52 -0
- data/rakelib/pg_gem_helper.rb +64 -0
- data.tar.gz.sig +0 -0
- metadata +26 -19
- metadata.gz.sig +0 -0
- data/Manifest.txt +0 -72
data/Manifest.txt
DELETED
@@ -1,72 +0,0 @@
|
|
1
|
-
.gemtest
|
2
|
-
BSDL
|
3
|
-
Contributors.rdoc
|
4
|
-
History.rdoc
|
5
|
-
LICENSE
|
6
|
-
Manifest.txt
|
7
|
-
POSTGRES
|
8
|
-
README-OS_X.rdoc
|
9
|
-
README-Windows.rdoc
|
10
|
-
README.ja.rdoc
|
11
|
-
README.rdoc
|
12
|
-
Rakefile
|
13
|
-
Rakefile.cross
|
14
|
-
ext/errorcodes.def
|
15
|
-
ext/errorcodes.rb
|
16
|
-
ext/errorcodes.txt
|
17
|
-
ext/extconf.rb
|
18
|
-
ext/gvl_wrappers.c
|
19
|
-
ext/gvl_wrappers.h
|
20
|
-
ext/pg.c
|
21
|
-
ext/pg.h
|
22
|
-
ext/pg_binary_decoder.c
|
23
|
-
ext/pg_binary_encoder.c
|
24
|
-
ext/pg_coder.c
|
25
|
-
ext/pg_connection.c
|
26
|
-
ext/pg_copy_coder.c
|
27
|
-
ext/pg_errors.c
|
28
|
-
ext/pg_record_coder.c
|
29
|
-
ext/pg_result.c
|
30
|
-
ext/pg_text_decoder.c
|
31
|
-
ext/pg_text_encoder.c
|
32
|
-
ext/pg_tuple.c
|
33
|
-
ext/pg_type_map.c
|
34
|
-
ext/pg_type_map_all_strings.c
|
35
|
-
ext/pg_type_map_by_class.c
|
36
|
-
ext/pg_type_map_by_column.c
|
37
|
-
ext/pg_type_map_by_mri_type.c
|
38
|
-
ext/pg_type_map_by_oid.c
|
39
|
-
ext/pg_type_map_in_ruby.c
|
40
|
-
ext/pg_util.c
|
41
|
-
ext/pg_util.h
|
42
|
-
ext/vc/pg.sln
|
43
|
-
ext/vc/pg_18/pg.vcproj
|
44
|
-
ext/vc/pg_19/pg_19.vcproj
|
45
|
-
lib/pg.rb
|
46
|
-
lib/pg/basic_type_mapping.rb
|
47
|
-
lib/pg/binary_decoder.rb
|
48
|
-
lib/pg/coder.rb
|
49
|
-
lib/pg/connection.rb
|
50
|
-
lib/pg/constants.rb
|
51
|
-
lib/pg/exceptions.rb
|
52
|
-
lib/pg/result.rb
|
53
|
-
lib/pg/text_decoder.rb
|
54
|
-
lib/pg/text_encoder.rb
|
55
|
-
lib/pg/tuple.rb
|
56
|
-
lib/pg/type_map_by_column.rb
|
57
|
-
spec/data/expected_trace.out
|
58
|
-
spec/data/random_binary_data
|
59
|
-
spec/helpers.rb
|
60
|
-
spec/pg/basic_type_mapping_spec.rb
|
61
|
-
spec/pg/connection_spec.rb
|
62
|
-
spec/pg/connection_sync_spec.rb
|
63
|
-
spec/pg/result_spec.rb
|
64
|
-
spec/pg/tuple_spec.rb
|
65
|
-
spec/pg/type_map_by_class_spec.rb
|
66
|
-
spec/pg/type_map_by_column_spec.rb
|
67
|
-
spec/pg/type_map_by_mri_type_spec.rb
|
68
|
-
spec/pg/type_map_by_oid_spec.rb
|
69
|
-
spec/pg/type_map_in_ruby_spec.rb
|
70
|
-
spec/pg/type_map_spec.rb
|
71
|
-
spec/pg/type_spec.rb
|
72
|
-
spec/pg_spec.rb
|