postgresql-plruby
postgresql-plruby copied to clipboard
PL/Ruby procedural language for the PostgreSQL database system by Guy Decoux
It appears that the current maintainer has abandoned this project. If that is the case, it would be helpful to have a statement to that effect included in the README....
FYI: Upstream dropped `rb_cFixnum` constant, and moved to `rb_cInteger`, so to fix builds we had to apply downstream patch: http://pkgs.fedoraproject.org/cgit/rpms/postgresql-plruby.git/commit/?id=4c94c436be1a1c94183fc43706c633bfe4fb0bf5
Ruby 2.1.1 changed things related to safe level, specifically Ruby 2.1+ does not support safe level bigger than 3. https://bugs.ruby-lang.org/issues/8468 https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/41259 It means that it fails to build with the...
Installing on Centos 6 PostgreSQL 9.5 (64 bit) ; ruby 1.8 and get from **[](https://pkgs.org/centos-6/epel-x86_64/postgresql-plruby-0.5.3-4.el6.x86_64.rpm.html)** plruby libraries. Trying add plruby to PostgreSQL - **create function plruby_call_handler() returns language_handler as '/usr/lib64/ruby/site_ruby/1.8/x86_64-linux/plruby.so'...
Hi, This pull request includes the addition of a gemspec, including a post install message, a Rakefile, some code cleanup to eliminate most warnings, and has merged changes from tfoldl...
Full output of "make test" is below. However, one issue is: ERROR: syntax error at or near "lancompiler" LINE 3: lancompiler 'PL/Ruby'; If I Google for lancompiler, I get http://www.postgresql.org/docs/7.1/static/sql-createlanguage.html....
Hi, I am getting random Ruby process segfaults leading to PostgreSQL restart Here is a fragment of the log file: /usr/local/rvm/rubies/ruby-1.8.7-p352/lib/ruby/1.8/yaml.rb:133: [BUG] Segmentation fault ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]...
I don't think extconf is parsing pg_config properly
Hello, Just downloaded and installed. Thanks for all the good work! Here is an issue that came up: (Running Postgresql 8.4.5 on Ubuntu 2.6.32-25-server) CREATE TABLE emp ( "name" character...
plruby does not work with ruby19 (ruby 1.9.1p378) and just segfaults. Steps to reproduce: 1) create function foo() returns int as '1' language 'plruby'; select foo(); 2) STATEMENT: drop function...