Fix #1264, allow bulk RPC call

This commit is contained in:
steve-chavez
2019-04-05 19:10:00 -05:00
committed by Steve Chávez
parent 40b004c9f7
commit bdfb11001e
4 changed files with 87 additions and 34 deletions
+6 -1
View File
@@ -1659,4 +1659,9 @@ CREATE TABLE test.openapi_types(
"a_numeric" numeric,
"a_real" real,
"a_double_precision" double precision
);
);
create function add_them(a integer, b integer)
returns integer as $$
select a + b;
$$ language sql;