SQL Expressions: (Chore) Update code for latest plugin-sdk data pkg (#100425)

Use new NilAt and SetRefId methods
This commit is contained in:
Kyle Brandt
2025-02-11 10:15:54 -05:00
committed by GitHub
parent 28f21e0a0d
commit f7588376df
3 changed files with 3 additions and 70 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ func (ri *rowIter) Next(_ *mysql.Context) (mysql.Row, error) {
// the value from each column at the current row index.
row := make(mysql.Row, len(ri.ft.Frame.Fields))
for colIndex, field := range ri.ft.Frame.Fields {
if nilAt(*field, ri.row) {
if field.NilAt(ri.row) {
continue
}
row[colIndex], _ = field.ConcreteAt(ri.row)