You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for SEARCH INTO $variable to close#2363 (#2375)
Fixed SELECT INTO $variable (src/40select.js)
- Modified ParamValue INTO handling to initialize array and set whole data array
- Changed from per-row push to full array assignment
- Now properly handles `SELECT * INTO $var FROM ...` syntax
Added SEARCH INTO $variable support (src/35search.js)
- Extended SEARCH statement to support ParamValue and VarValue in INTO clause
- Previously only supported FuncValue (INTO TXT(), INTO JSON(), etc.)
- Now supports:
- `SEARCH ... INTO $variable FROM ...` (ParamValue with string param)
- `SEARCH ... INTO ? FROM ...` (ParamValue with numeric param)
- `SEARCH ... INTO @variable FROM ...` (VarValue)
- Maintains backward compatibility with function-based INTO
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: mathiasrw <[email protected]>
0 commit comments