mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
The test tried to create multiple VARCHAR attributes in the same collection, including a 16381-character varchar. The cumulative row width exceeded MariaDB's 65535 byte row limit, causing the test to fail with a 400 error. Calculation: 1067 (base) + 1021 (255*4+1) + 401 (100*4+1) + 201 (50*4+1) + 20 (array) + 65526 (16381*4+2) = 68236 bytes > 65535 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>