lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Sat, Nov 3, 2012 at 8:18 PM, Luis Carvalho <lexcarvalho@gmail.com> wrote:
>> Is the PostgreSQL server side language PL/Lua being acitevly maintained (as
>> in tested against new PostgreSQL versions)?
>
> It is being maintained, but not as close to PosgreSQL release cycles. It's
> pretty much feature-complete, so updating the code to run on the latest
> version is most of the maintainance. I should be updating PL/Lua to PostgreSQL
> 9.2, and also to Lua 5.2. (There will be a talk on the workshop about PL/Lua,
> btw.)

FYI:

This patch was needed to make it build against postgresql-9.2 and lua-5.1:
--- ./pllua.h.orig	Tue Oct  9 17:32:18 2012
+++ ./pllua.h	Tue Oct  9 17:32:27 2012
@@ -25,6 +25,7 @@
 #include <utils/datum.h>
 #include <utils/builtins.h>
 #include <utils/array.h>
+#include <utils/rel.h>
 /* Lua */
 #include <lua.h>
 #include <lualib.h>


Found as downloadable patch here:
http://git.alpinelinux.org/cgit/aports/tree/main/pllua

-- 
Natanael Copa