Open erichanson opened 5 years ago
A function call like this:
endpoint.schema('x').function('foo', [ 'hi', 'mom', null ]).then( ... )
results in the proper call to endpoint.request() in the db, but the resultant sql query omits the trailing null argument, in this case just calling
endpoint.request()
select foo('hi','mom');
A function call like this:
results in the proper call to
endpoint.request()
in the db, but the resultant sql query omits the trailing null argument, in this case just calling