clkao / plv8js-migrated

Automatically exported from code.google.com/p/plv8js
Other
0 stars 0 forks source link

ERROR: cache lookup failed for function 16406 #105

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Creating any function using plv8.

What is the expected output? What do you see instead?

A function without an error

What version of the product are you using? On what operating system?

Using latest git master of both PostgreSQL and plv8 on Linux Mint Debian 
Edition.  libv8 is version 3.14.5.8.

Please provide any additional information below.

This is the exact error I get:

# CREATE OR REPLACE FUNCTION divide_plv8(a numeric, b numeric) RETURNS numeric 
AS $$
  if (b > 0) {
    return a / b;
  }
$$ LANGUAGE plv8;
ERROR:  cache lookup failed for function 16406

Original issue reported on code.google.com by thombr...@gmail.com on 25 Oct 2014 at 11:31