diff options
author | Alex Gorrod <alexg@wiredtiger.com> | 2015-10-30 09:59:46 +1100 |
---|---|---|
committer | Alex Gorrod <alexg@wiredtiger.com> | 2015-10-30 09:59:46 +1100 |
commit | 192a75ed36d330b6249c7eb3b5a39fa04fbb0d43 (patch) | |
tree | fc98b0f783809d9b0a38ed12752dfe24d675388c /src | |
parent | 8323d282dd3fec6a378050ad7ee3a2543db03446 (diff) | |
download | mongo-192a75ed36d330b6249c7eb3b5a39fa04fbb0d43.tar.gz |
Make new in-memory only error return undocumented.
Diffstat (limited to 'src')
-rw-r--r-- | src/docs/error-handling.dox | 3 | ||||
-rw-r--r-- | src/include/wiredtiger.in | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/docs/error-handling.dox b/src/docs/error-handling.dox index ad7d9e8cdde..d1291e38ff0 100644 --- a/src/docs/error-handling.dox +++ b/src/docs/error-handling.dox @@ -52,9 +52,6 @@ This error indicates an underlying problem that requires the application exit an @par <code>WT_RUN_RECOVERY</code> This error is generated when wiredtiger_open is configured to return an error if recovery is required to use the database. -@par <code>WT_CACHE_FULL</code> -This error is generated when wiredtiger_open is configured to run in-memory, and an insert or update operation requires more than the configured cache size to complete. - @if IGNORE_BUILT_BY_API_ERR_END @endif diff --git a/src/include/wiredtiger.in b/src/include/wiredtiger.in index 807e6218790..037399625ea 100644 --- a/src/include/wiredtiger.in +++ b/src/include/wiredtiger.in @@ -2910,6 +2910,7 @@ const char *wiredtiger_version(int *majorp, int *minorp, int *patchp); * if recovery is required to use the database. */ #define WT_RUN_RECOVERY -31806 +/*! @cond internal */ /*! * Operation would overflow cache. * This error is generated when wiredtiger_open is configured to run in-memory, @@ -2917,6 +2918,7 @@ const char *wiredtiger_version(int *majorp, int *minorp, int *patchp); * size to complete. */ #define WT_CACHE_FULL -31807 +/*! @endcond */ /* * Error return section: END * DO NOT EDIT: automatically built by dist/api_err.py. |