Skip to content

feat: improve pico.sql function

Denis Smirnov requested to merge sql_api into master

Now it is possible to make the second argument (query parameters) optional. I.e. now we support

pico.sql([[select * from t]])'

as well as

pico.sql([[select * from t where a = ?]], {1})'

Merge request reports