-
```
It looks like this [1] change that allows varargs-style arguments to
plv8.execute may have an off-by-one error?
Passing in an array still works as expected:
d7l4hfvukuffq4=# do 'plv8.elog(NOTIC…
-
```
What steps will reproduce the problem?
1. brew install v8
2. make install
3.
What is the expected output? What do you see instead?
g++ -O2 -pthread -Wall -Wmissing-prototypes -Wpointer-arith
-Wd…
-
```
What steps will reproduce the problem?
1. I am compiling with mingw-w64 chain
2. Did a git clone -b r1.4 https://code.google.com/p/plv8js/ plv8js
3. Compiled as usual except pointing at my 9.3 dev…
-
```
This might not be a bug, but I'm having a rough go with type coercion errors so
hopefully this can be fixed.
summary: (id is type integer)
plv8.execute("select * from typetest where id = '1'") …
-
```
Can't call functions from plv8.start_proc under other user than postgres
Set up startup procedure in config
plv8.start_proc = 'plv8_startup'
Created function:
CREATE OR REPLACE FUNCTION plv8_s…
-
Kudos on Massive,
I just ported over [pgsanity](https://github.com/markdrago/pgsanity) from Python which uses ecpg to check the syntax of PostgreSQL files. I was thinking that we could have an option…
-
```
What steps will reproduce the problem?
CREATE SCHEMA IF NOT EXISTS plv8;
CREATE FUNCTION valid_real(r real) RETURNS boolean
LANGUAGE plv8 IMMUTABLE STRICT
AS $$
return true;
$$;
CREATE DOMAIN …
-
Schema changes:
``` sql
-- Table modifications
ALTER TABLE users ADD COLUMN trophy_count int NOT NULL DEFAULT 0;
-- New tables
CREATE TABLE trophy_groups (
id serial PRIMARY KEY,
title…
-
```
What steps will reproduce the problem?
DO $$ plv8.return_next(new Object()); $$ language plv8;
What is the expected output? What do you see instead?
EXPECTED: plv8.elog ERROR. Should never segf…
-
```
What steps will reproduce the problem?
CREATE SCHEMA IF NOT EXISTS plv8;
CREATE FUNCTION valid_real(r real) RETURNS boolean
LANGUAGE plv8 IMMUTABLE STRICT
AS $$
return true;
$$;
CREATE DOMAIN …