1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-26 14:22:25 +03:00

plpgsql: add to README.

This commit is contained in:
Joel Martin 2016-03-31 01:09:08 -05:00
parent 08e44c41d6
commit b25bf8d8d0

View File

@ -6,7 +6,7 @@
Mal is a Clojure inspired Lisp interpreter.
Mal is implemented in 51 languages:
Mal is implemented in 52 languages:
* Ada
* GNU awk
@ -46,6 +46,7 @@ Mal is implemented in 51 languages:
* OCaml
* Perl
* PHP
* PL/pgSQL
* Postscript
* Python
* RPython
@ -582,6 +583,19 @@ cd ps
gs -q -dNODISPLAY -I./ stepX_YYY.ps
```
### PL/pgSQL (Postgres SQL Procedural Language)
The PL/pgSQL implementation of mal requires a running Postgres
server (the "kanaka/mal-test-plpgsql" docker image automatically
starts a Postgres server). The implementation connects to the Postgres
server and create a database named "mal" to store tables and stored
procedures. It has been tested with Postgres 9.4.
```
cd plpgsql
./wrap.sh stepX_YYY.sql
```
### Python (2.X or 3.X)
```