You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
9ddf39d fuzz: Handle missing BDBRO errors (Ava Chow)
Pull request description:
Adds error messages that were not being handled. Also removes error messages that no longer exist.
Fixes #30166
ACKs for top commit:
dergoegge:
reACK 9ddf39d
TheCharlatan:
ACK 9ddf39d
Tree-SHA512: 2597536a1e5d030653dfcb02fd892f7492f5a091def787f6cbd421b8bca9544847684a498e9458ea99ae7de5a8a6d91532ff904d1e39222d324939d31d2eb3f0
error.original == "Unknown record type in records page" ||
76
73
error.original == "Unknown record type in internal page" ||
77
74
error.original == "Unexpected page size" ||
78
75
error.original == "Unexpected page type" ||
79
76
error.original == "Page number mismatch" ||
80
77
error.original == "Bad btree level" ||
81
78
error.original == "Bad page size" ||
82
-
error.original == "File size is not a multiple of page size" ||
83
-
error.original == "Meta page number mismatch") {
79
+
error.original == "Meta page number mismatch" ||
80
+
error.original == "Data record position not in page" ||
81
+
error.original == "Internal record position not in page" ||
82
+
error.original == "LSNs are not reset, this database is not completely flushed. Please reopen then close the database with a version that has BDB support" ||
83
+
error.original == "Records page has odd number of records" ||
84
+
error.original == "Bad overflow record page type") {
84
85
// Do nothing
85
86
} elseif (error.original == "Subdatabase last page is greater than database last page" ||
86
87
error.original == "Page number is greater than database last page" ||
87
-
error.original == "Page number is greater than subdatabase last page" ||
88
-
error.original == "Last page number could not fit in file") {
88
+
error.original == "Last page number could not fit in file" ||
89
+
error.original == "Subdatabase has an unexpected name" ||
90
+
error.original == "Unsupported BDB data file version number" ||
91
+
error.original == "BDB builtin encryption is not supported") {
0 commit comments