We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 540b64d commit 9ddb7cfCopy full SHA for 9ddb7cf
crates/mysql/src/lib.rs
@@ -129,9 +129,10 @@ use crate::{
129
};
130
131
// Vitess limits query results to 64MiB.
132
-// As documents can be up to 1MiB (plus some overhead), we may need to fall back
133
-// to a much smaller page size if we hit the limit while loading documents.
134
-const FALLBACK_PAGE_SIZE: u32 = 10;
+// As documents can be up to 1MiB (plus some overhead) and system documents can
+// be larger still, we may need to fall back to a much smaller page size if we
+// hit the limit while loading documents.
135
+const FALLBACK_PAGE_SIZE: u32 = 5;
136
137
#[derive(Clone, Debug)]
138
pub struct MySqlInstanceName {
0 commit comments