mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-03 21:47:10 +00:00
When loading a schema from disk, only the `tables` and `columns` tables are required to have an entry to the loaded schema. All the others are optional. Yet the schema loader expects all the tables to have a corresponding entry, which leads to errors when trying to load a schema which doesn't. Relax the loader to only require existing entries in the two mandatory tables and not the others. Closes #13393