read_view: don't create tuple format when read view is opened
It's incorrect to create a tuple format when a read view is created, because the tuple format registry isn't MT-safe so accessing a tuple format created in the main thread from another thread by id (for tuple_format(tuple)) may not work as expected. To address this issue, we'll introduce a thread-local tuple format-registry. As a preparation for this, let's create the tuple format when a read view is activated by the thread that's going to use it (see the EE repository) while on read view creation we now create only a field definition array necessary to construct the format. Needed for https://github.com/tarantool/tarantool-ee/issues/247 NO_DOC=refactoring NO_TEST=refactoring NO_CHANGELOG=refactoring
Please register or sign in to comment