Skip to content
ghdrako edited this page Mar 12, 2024 · 4 revisions

Trade-off

  • Dropping a table takes a global lock that prevents the execution of ANY QUERY until the underlying files for the table are removed from the filesystem. Under many circumstances
  • There's no way to enforce that clients will only use SQL strict mode. You have to trust your clients. According to the manual, if client A does stuff with strict mode on and client B does stuff with strict mode off, data corruption will occur.

Test

Clone this wiki locally