We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b493ca9 commit d5c76c6Copy full SHA for d5c76c6
README.md
@@ -353,9 +353,9 @@ Example
353
354
tnt_pass_http_request
355
------------------
356
-**syntax:** *tnt_pass_http_request [on|off]*
+**syntax:** *tnt_pass_http_request [on|off|parse_args]*
357
358
-**default:** *no*
+**default:** *off*
359
360
**context:** *location, location if*
361
@@ -378,6 +378,14 @@ Examples
378
req.query -- string
379
return { 'OK' }
380
end
381
+
382
+ -- With parse_args
383
+ function tarantool_stored_procedure_name_1(req, ...)
384
+ req.headers -- lua table
385
+ req.query -- string
386
+ req.args -- query args as lua table
387
+ return { 'OK' }
388
+ end
389
```
390
```bash
391
# Call tarantool_stored_procedure_name()
0 commit comments