Compare commits

...

1 Commits

Author SHA1 Message Date
265b93b203 Fix for encrypted cursor in production mode bug 2020-03-06 21:38:01 +05:30

View File

@ -152,6 +152,10 @@ func (c *coreContext) resolvePreparedSQL() ([]byte, *stmt, error) {
}
}
if root, err = encryptCursor(ps.st.qc, root); err != nil {
return nil, nil, err
}
return root, &ps.st, nil
}