summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Gorrod <alexg@wiredtiger.com>2015-10-30 09:59:46 +1100
committerAlex Gorrod <alexg@wiredtiger.com>2015-10-30 09:59:46 +1100
commit192a75ed36d330b6249c7eb3b5a39fa04fbb0d43 (patch)
treefc98b0f783809d9b0a38ed12752dfe24d675388c /src
parent8323d282dd3fec6a378050ad7ee3a2543db03446 (diff)
downloadmongo-192a75ed36d330b6249c7eb3b5a39fa04fbb0d43.tar.gz
Make new in-memory only error return undocumented.
Diffstat (limited to 'src')
-rw-r--r--src/docs/error-handling.dox3
-rw-r--r--src/include/wiredtiger.in2
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.