mirror of
https://github.com/MariaDB/server.git
synced 2025-06-13 13:01:51 +03:00
A fix and a test case for Bug#9643 " CURSOR_TYPE_SCROLLABLE dos not work"
- check on the client the unsupported feature and return an error message if it's been requested. Additionally added API support for STMT_ATTR_PREFETCH_ROWS. Post-review fixes.
This commit is contained in:
@ -81,6 +81,7 @@ const char *client_errors[]=
|
||||
"Attempt to read column without prior row fetch",
|
||||
"Prepared statement contains no metadata",
|
||||
"Attempt to read a row while there is no result set associated with the statement",
|
||||
"This feature is not implemented yet",
|
||||
""
|
||||
};
|
||||
|
||||
@ -143,6 +144,7 @@ const char *client_errors[]=
|
||||
"Attempt to read column without prior row fetch",
|
||||
"Prepared statement contains no metadata",
|
||||
"Attempt to read a row while there is no result set associated with the statement",
|
||||
"This feature is not implemented yet",
|
||||
""
|
||||
};
|
||||
|
||||
@ -203,6 +205,7 @@ const char *client_errors[]=
|
||||
"Attempt to read column without prior row fetch",
|
||||
"Prepared statement contains no metadata",
|
||||
"Attempt to read a row while there is no result set associated with the statement",
|
||||
"This feature is not implemented yet",
|
||||
""
|
||||
};
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user