cipherstash-pg 1.0.0.beta.1-x86_64-linux

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.
Files changed (72) hide show
  1. checksums.yaml +7 -0
  2. data/BSDL +22 -0
  3. data/Contributors.rdoc +46 -0
  4. data/Gemfile +14 -0
  5. data/History.rdoc +789 -0
  6. data/LICENSE +56 -0
  7. data/Manifest.txt +72 -0
  8. data/POSTGRES +23 -0
  9. data/README-OS_X.rdoc +68 -0
  10. data/README-Windows.rdoc +56 -0
  11. data/README.ja.rdoc +13 -0
  12. data/README.rdoc +233 -0
  13. data/Rakefile +115 -0
  14. data/certs/ged.pem +24 -0
  15. data/certs/larskanis-2022.pem +26 -0
  16. data/cipherstash-pg.gemspec +31 -0
  17. data/lib/2.7/pg_ext.so +0 -0
  18. data/lib/3.0/pg_ext.so +0 -0
  19. data/lib/3.1/pg_ext.so +0 -0
  20. data/lib/3.2/pg_ext.so +0 -0
  21. data/lib/cipherstash-pg.rb +15 -0
  22. data/lib/libpq.so.5 +0 -0
  23. data/lib/pg/basic_type_map_based_on_result.rb +47 -0
  24. data/lib/pg/basic_type_map_for_queries.rb +193 -0
  25. data/lib/pg/basic_type_map_for_results.rb +81 -0
  26. data/lib/pg/basic_type_registry.rb +301 -0
  27. data/lib/pg/binary_decoder.rb +23 -0
  28. data/lib/pg/coder.rb +104 -0
  29. data/lib/pg/connection.rb +878 -0
  30. data/lib/pg/constants.rb +12 -0
  31. data/lib/pg/exceptions.rb +18 -0
  32. data/lib/pg/result.rb +43 -0
  33. data/lib/pg/text_decoder.rb +46 -0
  34. data/lib/pg/text_encoder.rb +59 -0
  35. data/lib/pg/tuple.rb +30 -0
  36. data/lib/pg/type_map_by_column.rb +16 -0
  37. data/lib/pg/version.rb +4 -0
  38. data/lib/pg.rb +55 -0
  39. data/misc/openssl-pg-segfault.rb +31 -0
  40. data/misc/postgres/History.txt +9 -0
  41. data/misc/postgres/Manifest.txt +5 -0
  42. data/misc/postgres/README.txt +21 -0
  43. data/misc/postgres/Rakefile +21 -0
  44. data/misc/postgres/lib/postgres.rb +16 -0
  45. data/misc/ruby-pg/History.txt +9 -0
  46. data/misc/ruby-pg/Manifest.txt +5 -0
  47. data/misc/ruby-pg/README.txt +21 -0
  48. data/misc/ruby-pg/Rakefile +21 -0
  49. data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
  50. data/rakelib/task_extension.rb +46 -0
  51. data/sample/array_insert.rb +20 -0
  52. data/sample/async_api.rb +102 -0
  53. data/sample/async_copyto.rb +39 -0
  54. data/sample/async_mixed.rb +56 -0
  55. data/sample/check_conn.rb +21 -0
  56. data/sample/copydata.rb +71 -0
  57. data/sample/copyfrom.rb +81 -0
  58. data/sample/copyto.rb +19 -0
  59. data/sample/cursor.rb +21 -0
  60. data/sample/disk_usage_report.rb +177 -0
  61. data/sample/issue-119.rb +94 -0
  62. data/sample/losample.rb +69 -0
  63. data/sample/minimal-testcase.rb +17 -0
  64. data/sample/notify_wait.rb +72 -0
  65. data/sample/pg_statistics.rb +285 -0
  66. data/sample/replication_monitor.rb +222 -0
  67. data/sample/test_binary_values.rb +33 -0
  68. data/sample/wal_shipper.rb +434 -0
  69. data/sample/warehouse_partitions.rb +311 -0
  70. data/vendor/database-extensions/install.sql +317 -0
  71. data/vendor/database-extensions/uninstall.sql +20 -0
  72. metadata +118 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 68a47209463ac5c8fc874214953aecfe1dc67e27f6d6ab0a4da8cc4ae62d5330
4
+ data.tar.gz: b73f45c82e7bdb5e22d4a3e38ef0cf258b799afb8b4e59eed3a8df79495508b6
5
+ SHA512:
6
+ metadata.gz: 2dfa68fb0d845d8db94d075ee438dd4de805101364dbdfcc45977b1895dd6f91a45f58e6903abda84bb3b57520d54e62453c1174ee198c077959c0c7d2738382
7
+ data.tar.gz: 16338a12f520183f4069b86a44e53a81024b2f4f0b269bfa2194b9eb0a56a84057c62ba873dd550d48e00a1e158871c0a75ab74f02567c93de87e1971d971a73
data/BSDL ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without
4
+ modification, are permitted provided that the following conditions
5
+ are met:
6
+ 1. Redistributions of source code must retain the above copyright
7
+ notice, this list of conditions and the following disclaimer.
8
+ 2. Redistributions in binary form must reproduce the above copyright
9
+ notice, this list of conditions and the following disclaimer in the
10
+ documentation and/or other materials provided with the distribution.
11
+
12
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
13
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
14
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
15
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
16
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
17
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
18
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
19
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
20
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
21
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
22
+ SUCH DAMAGE.
data/Contributors.rdoc ADDED
@@ -0,0 +1,46 @@
1
+
2
+ Thanks to all the great people that have contributed code, suggestions, and patches through the
3
+ years. If you contribute a patch, please include a patch for this file that adds your name to the
4
+ list.
5
+
6
+ * Dennis Vshivkov <walrus@amur.ru>
7
+ * Gabriel Emerson <gemerson@evalsoft.com>
8
+ * Noboru Saitou <noborus@netlab.jp>
9
+ * Akinori MUSHA <knu@iDaemons.org>
10
+ * Andy Yu <is@gnuchina.org>
11
+ * Ceri Storey <cez@compsoc.man.ac.uk>
12
+ * Gavin Kistner <gavin@refinery.com>
13
+ * Henry T. So Jr. <henryso@panix.com>
14
+ * Jeremy Henty <jeremy@chaos.org.uk>
15
+ * <kasa@air.linkclub.or.jp>
16
+ * Leon Brooks <leon-ruby-postgres@cyberknights.com.au>
17
+ * Martin Hedenfalk <mahe@kth.se>
18
+ * Yukihiro Matsumoto <matz@zetabits.com>
19
+ * Eiji Matsumoto <usagi@ruby.club.or.jp>
20
+ * MoonWolf <moonwolf@moonwolf.com>
21
+ * <m_seki@mva.biglobe.ne.jp>
22
+ * Nate Haggard <nate@wordplace.com>
23
+ * Neil Conway <nconway@klamath.dyndns.org>
24
+ * Noboru Matui <silicon@mx1.freemail.ne.jp>
25
+ * Okada Jun <yun@be-in.org>
26
+ * Shirai,Kaoru <shirai@p1jp.com>
27
+ * Riley <wormwood@speakeasy.org>
28
+ * shibata <kshibata@vesta.ocn.ne.jp>
29
+ * <greentea@fa2.so-net.ne.jp>
30
+ * ts <decoux@moulon.inra.fr>
31
+ * Yuta TSUBOI <yuuta-t@is.aist-nara.ac.jp>
32
+ * Lugovoi Nikolai <meadow.nnick@gmail.com>
33
+ * Jeff Davis <ruby@j-davis.com>
34
+ * Bertram Scharpf <software@bertram-scharpf.de>
35
+ * Michael Granger <ged@FaerieMUD.org>
36
+ * Mahlon E. Smith <mahlon@martini.nu>
37
+ * Lars Kanis <kanis@comcard.de>
38
+ * Jason Yanowitz <me-bitbucket@jasonyanowitz.com>
39
+ * Charlie Savage <cfis@rubyforge.org>
40
+ * Rafał Bigaj <rafal.bigaj@gmail.com>
41
+ * Jason Yanowitz <me-bitbucket@jasonyanowitz.com>
42
+ * Greg Hazel <ghazel@gmail.com>
43
+ * Chris White <cwprogram@live.com>
44
+ * Aaron Patterson <aaron.patterson@gmail.com>
45
+ * Tim Felgentreff <timfelgentreff@gmail.com>
46
+
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ # -*- ruby -*-
2
+
3
+ # Specify your gem's runtime dependencies in cipherstash-pg.gemspec
4
+ gemspec
5
+
6
+ source "https://rubygems.org/"
7
+
8
+ group :development, :test do
9
+ gem "bundler", ">= 1.16", "< 3.0"
10
+ gem "rake-compiler", "~> 1.2.1"
11
+ gem "rake-compiler-dock", "~> 1.3.0"
12
+ gem "rdoc", "~> 6.4"
13
+ gem "rspec", "~> 3.5"
14
+ end