Citizen
MySQL script - Argument support list
Do you have a guide in order to debug locally ? In the contributor guide (https://www.windmill.dev/docs/misc/contributing) I don't find info about it
26 replies
MySQL script - Argument support list
Currently, the notation
-- %%param%% (type)
seems not supported in the RE_ARG_SQL_INTERPOLATION
variable.
So I have added this part \((\w+(?:\([\w, ]+\))?(?:\[\])?)\)
, in order to support type declaration inside sanitized interpolation.
It allows -- %%param%% (type)
and add the list support (-- %%param%% (type[])
) with this optional non capturing group (?:\[\])?
26 replies
MySQL script - Argument support list
I've started the implementation, but I'm a first time user of Rust, so I wanted to validate with you the taken direction :
https://github.com/windmill-labs/windmill/commit/9e4dbcaa75e50df544665cd13bc6018cd1eb3187
26 replies