-
```
The build fails on OS X like this:
Undefined symbols for architecture x86_64:
"_libintl_gettext", referenced from:
FormatSPIStatus(int) in plv8.o
DoCall(v8::Handle, v8::Handle, int…
-
```
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 …
-
For a
-
```
What steps will reproduce the problem?
do language plv8 $$ plv8.execute("select $1::int[]",['{1,2,3}']); $$;
What is the expected output? What do you see instead?
get:
ERROR: Error: value i…
-
```
The build fails on OS X like this:
Undefined symbols for architecture x86_64:
"_libintl_gettext", referenced from:
FormatSPIStatus(int) in plv8.o
DoCall(v8::Handle, v8::Handle, int…
-
```
What steps will reproduce the problem?
do language plv8 $$ plv8.execute("select $1::int[]",['{1,2,3}']); $$;
What is the expected output? What do you see instead?
get:
ERROR: Error: value i…
-
```
I would like a test like this added to the regression suite:
CREATE OR REPLACE FUNCTION v8_test_throw() RETURNS float AS
$$
throw new Error('Error');
$$
LANGUAGE plv8;
CREATE OR REPLACE FUNCTIO…
-
```
In the issue #35, we added LiveScript suuport. However, in order to support
more dialects around JavaScript, we need more sanity way to add them.
One of the main concerns is the build system. …
-
```
hstore value is returned as a string, a javascript object is obviously
preferable. I'm looking at writing a parser in js for now, but wondered if
this could be handled by plv8 natively.
curren…
-
```
What steps will reproduce the problem?
CREATE TABLE baz (
baz_id integer
);
CREATE OR REPLACE FUNCTION errors_but_no_crash() RETURNS text AS $$
plv8.execute("select * from baz where baz_i…