hstore_pllua

Hstore transform for Lua

Overview

PackageVersionCategoryLicenseLanguage
pllua2.0.12LANGMITC
IDExtensionBinLibLoadCreateTrustRelocSchema
3020plluaNoYesNoYesNoNopg_catalog
3021hstore_plluaNoYesNoYesNoYes-
3030plluauNoYesNoYesNoNopg_catalog
3031hstore_plluauNoYesNoYesNoYespg_catalog
Relatedhstore pllua hstore_plperl hstore_plperlu hstore_plpython3u plpgsql

missing pg12-15 on el.aarch64

Version

TypeRepoVersionPG VerPackageDeps
EXTPGDG2.0.121817161514plluahstore, pllua
DEBPGDG2.0.121817161514postgresql-$v-pllua-
OS / PGPG18PG17PG16PG15PG14
el8.x86_64PGDG MISSPGDG 2.0.12PGDG 2.0.12PGDG 2.0.11PGDG 2.0.11
el8.aarch64PGDG MISSPGDG 2.0.12PGDG 2.0.12PGDG MISSPGDG MISS
el9.x86_64PGDG MISSPGDG 2.0.12PGDG 2.0.12PGDG 2.0.11PGDG 2.0.11
el9.aarch64PGDG MISSPGDG 2.0.12PGDG 2.0.12PGDG MISSPGDG MISS
el10.x86_64PGDG MISSPGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
el10.aarch64PGDG MISSPGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
d12.x86_64PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
d12.aarch64PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
d13.x86_64PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
d13.aarch64PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
u22.x86_64PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
u22.aarch64PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
u24.x86_64PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12
u24.aarch64PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12PGDG 2.0.12

Install

You can install pllua directly. First, make sure the PGDG repository is added and enabled:

pig repo add pgdg -u          # Add PGDG repo and update cache

Install the extension using pig or apt/yum/dnf:

pig install pllua;          # Install for current active PG version
pig ext install -y pllua -v 18  # PG 18
pig ext install -y pllua -v 17  # PG 17
pig ext install -y pllua -v 16  # PG 16
pig ext install -y pllua -v 15  # PG 15
pig ext install -y pllua -v 14  # PG 14
apt install -y postgresql-18-pllua   # PG 18
apt install -y postgresql-17-pllua   # PG 17
apt install -y postgresql-16-pllua   # PG 16
apt install -y postgresql-15-pllua   # PG 15
apt install -y postgresql-14-pllua   # PG 14

Create Extension:

CREATE EXTENSION hstore_pllua CASCADE;  -- requires: hstore, pllua

Usage

hstore_pllua: hstore transform for PL/Lua

The hstore_pllua extension provides a transform that allows hstore values to be passed directly to and from PL/Lua functions as native Lua tables, instead of opaque datum objects.

CREATE EXTENSION hstore;
CREATE EXTENSION pllua;
CREATE EXTENSION hstore_pllua;

Using hstore in PL/Lua

With the transform installed, hstore arguments are automatically converted to Lua tables, and Lua tables can be returned as hstore values:

CREATE FUNCTION process_hstore(h hstore) RETURNS hstore LANGUAGE pllua AS $$
  -- h is a Lua table with string keys and string values
  h["new_key"] = "new_value"
  h["modified"] = "true"
  return h
$$;

SELECT process_hstore('name => "Alice", age => "30"'::hstore);

Iterate Over hstore Keys

CREATE FUNCTION hstore_keys(h hstore) RETURNS SETOF text LANGUAGE pllua AS $$
  for k, v in pairs(h) do
    coroutine.yield(k)
  end
$$;

Without this transform, hstore values would need to be manually converted using the hstore type functions.


Last Modified 2026-03-12: add pg extension catalog (95749bf)