Fix for encrypted cursor in production mode bug

This commit is contained in:
Vikram Rangnekar 2020-03-06 21:38:01 +05:30
parent 6c240e21b4
commit 265b93b203
1 changed files with 4 additions and 0 deletions

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
}