Skip to content
Snippets Groups Projects
  1. Aug 16, 2023
  2. Aug 15, 2023
    • Ilya Verbin's avatar
      box: support functional default field values · b055625f
      Ilya Verbin authored
      Now the default value of a tuple field can be computed as a result of a
      function call.
      
      Closes #8609
      
      @TarantoolBot document
      Title: Document functional default field values
      Product: Tarantool
      Since: 3.0
      Root document: https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/format/
      Depends on: tarantool/doc#3520
      
      The format clause contains, for each field, a definition within braces:
      `{name='...',type='...'[,default=...][,default_func=...]}`,
      where:
      
      * (Optional) The `default_func` string value specifies the name of a
        function, that is used to generate a default value for the field. If
        `default_func` is set, the `default` value is used as the function
        argument. See [field default functions](https://www.tarantool.io/en/doc/latest/concepts/data_model/value_store/#field-default-functions).
      
      ---
      
      Root document: https://www.tarantool.io/en/doc/latest/concepts/data_model/value_store/#constraint-functions
      
      **Field default functions**
      
      Stored Lua function can be used to generate a default value for the tuple
      field. It can take one optional parameter, and must return exactly one
      value. To create a field default function, use func.create with function
      body. The function must not yield.
      
      Example:
      
      ```lua
      box.schema.func.create('random_point', {
          language = 'Lua',
          body = 'function(param) return math.random(param.min, param.max) end'
      })
      
      box.schema.space.create('test')
      box.space.test:create_index('pk')
      box.space.test:format({
          {name = 'id', type = 'integer'},
          {name = 'latitude', type = 'number',
           default_func = 'random_point', default = {min = -90, max = 90}},
          {name = 'longitude', type = 'number',
           default_func = 'random_point', default = {min = -180, max = 180}}
      })
      ```
      
      ```lua
      tarantool> math.randomseed(os.time())
      ---
      ...
      
      tarantool> box.space.test:insert{1}
      ---
      - [1, 56, 38]
      ...
      ```
      b055625f
    • Ilya Verbin's avatar
      box: move data and size to field_default_value structure · 796d4c7d
      Ilya Verbin authored
      This structure will be extended in the next commit.
      
      Part of #8609
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      796d4c7d
    • Ilya Verbin's avatar
      box: do not call constraint[i].destroy() in tuple_field_delete() · 7a87b9a5
      Ilya Verbin authored
      This call is redundant and does nothing. Constraints are destroyed in
      space_cleanup_constraints(), which is called from space_create() and
      space_delete(). Standalone tuples can't have initialized constraints.
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      7a87b9a5
    • Ilya Verbin's avatar
      box: fix function id in ER_DROP_FUNCTION message · 5227b525
      Ilya Verbin authored
      User id instead of function id was erroneously used there.
      
      NO_DOC=bugfix
      NO_CHANGELOG=minor
      5227b525
    • Ilya Verbin's avatar
      box: move index_opts::hint check from Lua to space_check_index_def · 4e25384b
      Ilya Verbin authored
      The checks in box.schema.index.create() and box.schema.index.alter()
      were case sensitive, also it was possible to insert incorrect index
      options directly into `box.space._index`. Fixed by adding checks
      to memtx_space_check_index_def() and vinyl_space_check_index_def().
      
      Closes #8937
      
      NO_DOC=bugfix
      4e25384b
    • Ilya Verbin's avatar
      box: replace malloc with xmalloc in index_def_dup · f6d61754
      Ilya Verbin authored
      And remove unused index_def_check_xc().
      
      As index_def_dup() never returns NULL anymore, change index_create() and
      index_read_view_create() return type to `void` and update their callers.
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      f6d61754
    • Ilya Verbin's avatar
      core: fix ASAN_START_SWITCH_FIBER() usage · 72a6abee
      Ilya Verbin authored
      The `__sanitizer_start_switch_fiber()` function takes a pointer as the
      first argument to store the current fake stack if there is one (it is
      necessary when stack-use-after-return detection is enabled). When leaving a
      fiber definitely, NULL must be passed so that the fake stack is destroyed.
      
      Before this patch, NULL was passed for dead fibers, however this is wrong
      for dead fibers that are recycled and resumed. In such cases ASAN destroys
      the fake stack, and the fiber crashes trying to use it in `fiber_yield()`
      upon return from `coro_transfer()`.
      
      Closes tarantool/tarantool-qa#321
      
      NO_DOC=bugfix
      NO_TEST=tested by test-release-asan workflow
      72a6abee
    • Vladislav Shpilevoy's avatar
      alter: add an assert in _cluster replace for old tuple · 3209f548
      Vladislav Shpilevoy authored
      _cluster on-replace trigger parses old and new tuples into
      replica_def objects. One path handles the case of new_def != NULL.
      The other assumes that old_def != NULL if new_def was NULL. This
      is correct, because replace wouldn't happen if both tuples are
      NULL. It would mean nothing changed.
      
      Nonetheless coverity complained here that the old tuple could be
      NULL even if the new one was NULL. The patch silences this warning
      by adding an assert.
      
      NO_DOC=refactor
      NO_CHANGELOG=refactor
      NO_TEST=not testable
      3209f548
    • Vladislav Shpilevoy's avatar
      replication: guard name set fail with try-catch · 2fc05577
      Vladislav Shpilevoy authored
      box_set_instance_name() has a scoped guard to try to restore the
      replication back to normal if the connection to master was
      recreated to make the applier request a new name.
      
      The guard calls box_restart_replication() which might throw
      exceptions. But in this case it apparently can only happen in
      theory with bootstrap strategy legacy + high connection quorum +
      failing to gather this quorum. Also iostream creation might fail.
      
      Iostream creation failure is not testable, and the legacy
      bootstrap strategy is being deprecated at some point. So the
      patch simply adds try-catch without a test as it is too much
      effort for too little gain to bother. This should also calm down
      the coverity reporter.
      
      NO_DOC=bugfix/refactor
      NO_CHANGELOG=hardly possible to observe this bug
      NO_TEST=too hard to repro
      2fc05577
  3. Aug 14, 2023
    • Sergey Bronnikov's avatar
      test/fuzz: collect and print Lua metrics · 430fa6a2
      Sergey Bronnikov authored
      Fuzzing test for LuaJIT generates random Lua programs and executes them.
      We want to build a fuzzing test that will produce Lua programs that will
      not contain semantic errors and will trigger as much as possible
      components in LuaJIT.
      
      This proposed patch introduces metrics that gathered after running the
      test. LuaJIT metrics gathered using LuaJIT getmetrics module [1]. All
      gathered metrics test will output after running with a finite number of
      runs or finite duration of time (options `-runs` and `-max_total_time`)
      or after sending SIGUSR1 to a test process.
      
      ```
      $ ./build/test/fuzz/luaL_loadbuffer/luaL_loadbuffer_fuzzer -runs=1000
      
      <snipped>
      
      Done 1000 runs in 1 second(s)
      Total number of samples: 1000
      Total number of samples with errors: 438 (43%)
      Total number of samples with recorded traces: 87 (8%)
      Total number of samples with snap restores: 30 (3%)
      Total number of samples with abort traces: 55 (5%)
      ```
      
      1. https://www.tarantool.io/en/doc/latest/reference/tooling/luajit_getmetrics/#getmetrics-c-api
      
      NO_CHANGELOG=testing
      NO_DOC=testing
      430fa6a2
    • Vladimir Davydov's avatar
      box: fix box.iproto.override crash if used before box.cfg · 4fd2686e
      Vladimir Davydov authored
      The function can't be called on an unconfigured instance because it
      needs IPROTO threads up and running. Let's raise an error to avoid
      a crash.
      
      Since we have two other places where we need to raise the same error
      (box.session.su and box.__index), let's introduce the new code
      ER_UNCONFIGURED for this error.
      
      Closes #8975
      
      NO_DOC=bug fix
      4fd2686e
    • Alexander Turenko's avatar
      popen: fix memcpy(dst, NULL, 0) · a4e21fec
      Alexander Turenko authored
      The `popen_new()` function may be called with inherit_fds = NULL,
      nr_inherit_fds = 0. The lua/popen.c code actually does this.
      
      It leads to the following memcpy() call.
      
      ```
      memcpy(dst, NULL, 0);
      ```
      
      According to the C11 standard (n1256, 7.21.1), the pointer argument
      should have a valid value, which means pointing to some area in the
      program's address space, not NULL. The standard doesn't make an
      exception for a zero size array.
      
      Personally I doubt that any memcpy() implementation attempts to
      dereference the source pointer in case of a zero size, but it is my
      assumption, while the standard is the standard.
      
      The problem is found by Coverity.
      
      Follows up #8926
      
      NO_DOC=it is a bug
      NO_CHANGELOG=this code is not released yet
      NO_TEST=verified by existing test cases, which call popen.new() without
              the inherit_fds option
      a4e21fec
  4. Aug 11, 2023
    • Vladimir Davydov's avatar
      box: deprecate box.session.push · 2939e053
      Vladimir Davydov authored
      Closes #8802
      
      @TarantoolBot document
      Title: Deprecate box.session.push
      
      The `box.session.push` Lua function and `box_session_push` C API
      function are deprecated starting from Tarantool 3.0. Calling any
      of these functions for the first time results in printing a warning
      message to the log.
      
      The new compat module option `box_session_push_deprecation` was
      introduced to control whether the functions are still available.
      With the old behavior, which is the default in Tarantool 3.0,
      `box.session.push` is still available. With the new behavior,
      any attempt to use it raises an exception.
      
      (Please create https://tarantool.io/compat/box_session_push_deprecation)
      
      We are planning to switch the compat option to the new behavior
      starting from Tarantool 4.0 with the ability to revert to the
      old behavior. Starting from Tarantool 5.0 we are planning to
      drop `box.session.push` completely.
      2939e053
    • Alexander Turenko's avatar
      config: add --help-env-list CLI option · 78c8cab8
      Alexander Turenko authored
      It lists the environment variables that are taken into account by the
      config module.
      
      Part of #8862
      
      NO_DOC=reflected in https://github.com/tarantool/doc/issues/3544
      78c8cab8
    • Alexander Turenko's avatar
      config: add simple pretty-printer for tabular data · e435f62f
      Alexander Turenko authored
      The next commit needs to output a lot of environment variables, their
      types in the config schema, defaults and so on. It looks much more
      readable when formatted in the tabular form.
      
      This commits adds a simple tabular formatter for this purpose.
      
      Part of #8862
      
      NO_DOC=the new module is internal
      NO_CHANGELOG=see NO_DOC
      e435f62f
    • Alexander Turenko's avatar
      config/schema: store parent's annotations in nodes · 4ddb9f21
      Alexander Turenko authored
      Sometimes we need to know somethings about ancestor nodes during
      processing of a current node.
      
      Now, the `<schema node>.computed.annotations` table represents all the
      annotations from the root of the schema down to the given schema node
      merged into a flat table. If the same named annotation met several times
      on the path, the descendant value is preferred.
      
      This computed annotations table is available everywhere, where the
      schema node is returned or passed as a callback's argument. For example,
      in values of the `<schema>:pairs()` iterator and in the `validate()`
      schema node's callback.
      
      It will be used in one of the next commits this way:
      
      ```lua
      for _, w in instance_config:pairs() do
          if w.schema.computed.annotations.enterprise_edition then
              <...>
          else
              <...>
          end
      end
      ```
      
      Part of #8862
      
      NO_DOC=the schema module is internal, at least now
      NO_CHANGELOG=see NO_DOC
      4ddb9f21
  5. Aug 10, 2023
    • Ilya Verbin's avatar
      box: pin coll_id by space format and by indexes · d69aa687
      Ilya Verbin authored
      Pin in cache the collation identifiers that are referenced by space format
      and/or indexes, so that they can't be deleted.
      
      Closes #4544
      
      NO_DOC=bugfix
      d69aa687
    • Ilya Verbin's avatar
      box: reference collation by key_def parts · 07beb340
      Ilya Verbin authored
      It was possible to delete a collation, which is in use by a key_def.
      
      Part of #4544
      
      NO_DOC=bugfix
      NO_CHANGELOG=next commit
      07beb340
    • Magomed Kostoev's avatar
      box: fix invalid memory access in tuple_compare_with_key_sequential · f4de9faf
      Magomed Kostoev authored
      Since number type was introduced we can not assume if tuples are
      equal by comparison then their sizes are equal too. So the place
      the assumption is used is fixed.
      
      Closes #8899
      
      NO_DOC=bugfix
      f4de9faf
    • Vladimir Davydov's avatar
      iproto: remove exception handling code · 9d28d372
      Vladimir Davydov authored
      Getting rid of C++ exception is our long term goal. This commit removes
      the exceptions from the IPROTO code as follows:
      
      - Make iproto_set_msg_max return -1 instead of raising an exception
        on error. Update box_set_net_msg_max accordingly.
      - Make box_process_auth return -1 instead of raising an exception on
        error. Move it along with box_process_vote (which never fails) to
        the extern "C" namespace.
      - Remove try/catch from iproto_connection_on_input, tx_process_misc,
        tx_process_connect. Use a label instead.
      - Panic instead of raising an exception on an error starting an IPROTO
        thread in iproto_init. It should be fine because the function is
        called only at startup and shouldn't normally fail.
      - Remove try/catch from iproto_do_cfg_f. It turns out that this function
        never fails so we don't even need to use an error label.
      - Drop iproto_do_cfg_crit and move the assertion to iproto_do_cfg
        because this function should never fail and so we don't need the
        wrapper.
      
      After this commit, the only exception-handling piece of code left in
      IPROTO is tx_process_replication. Dropping it would entail patching
      replication, relay, and recovery code so it was postponed.
      
      NO_DOC=code cleanup
      NO_TEST=code cleanup
      NO_CHANGELOG=code cleanup
      9d28d372
    • Vladimir Davydov's avatar
      iproto: use xobuf_alloc for output buffer allocations · defdcff6
      Vladimir Davydov authored
      The buffer is unlimited so allocations from it never fail. Even if
      decide to add a hard limit some day, it's better to do it somewhere in
      one place to simplify testing so the dropped code isn't going to be
      needed.
      
      NO_DOC=code cleanup
      NO_TEST=code cleanup
      NO_CHANGELOG=code cleanup
      defdcff6
    • Vladimir Davydov's avatar
      iproto: use xmempool_alloc for connection and message allocations · 57f8cf4d
      Vladimir Davydov authored
      The mempools are unlimited so allocations from them never fail. Even if
      we decide to add a hard limit some day, it's better to do it somewhere
      in one place to simplify testing so the dropped code isn't going to be
      needed.
      
      NO_DOC=code cleanup
      NO_TEST=code cleanup
      NO_CHANGELOG=code cleanup
      57f8cf4d
    • Vladimir Davydov's avatar
      rmean: use xmalloc in rmean_new · c49ee22d
      Vladimir Davydov authored
      malloc isn't supposed to fail so let's use xmalloc helper in rmean_new
      and get rid of allocation failure paths.
      
      NO_DOC=code cleanup
      NO_TEST=code cleanup
      NO_CHANGELOG=code cleanup
      c49ee22d
  6. Aug 09, 2023
    • Vladimir Davydov's avatar
      lua/socket: introduce socket.socketpair · 61130805
      Vladimir Davydov authored
      The new function is a wrapper around the socketpair system call.
      It takes the same arguments as the socket constructor and returns
      two socket objects representing the two ends of the newly created
      socket pair on success.
      
      It may be useful for establishing a communication channel between
      related processes.
      
      Closes #8927
      
      @TarantoolBot document
      Title: Document new socket functions
      
      Two socket module functions and one socket object method were added to
      Tarantool 3.0:
      
      - `socket.from_fd(fd)`: constructs a socket object from the file
        descriptor number. Returns the new socket object on success. Never
        fails. Note, the function doesn't perform any checks on the given
        file descriptor so technically it's possible to pass a closed file
        descriptor or a file descriptor that refers to a file, in which case
        the new socket object methods may not work as expected.
      
      - `socket:detach()`: like `socket:close()` but doesn't close the socket
        file descriptor, only switches the socket object to the closed state.
        Returns nothing. If the socket was already detached or closed, raises
        an exception.
      
        Along with `socket.from_fd`, this method may be used for transferring
        file descriptor ownership from one socket to another:
      
        ```Lua
        local socket = require('socket')
        local s1 = socket('AF_INET', 'SOCK_STREAM', 'tcp')
        local s2 = socket.from_fd(s1:fd())
        s1:detach()
        ```
      
      - `socket.socketpair(domain, type, proto)`: a wrapper around the
        [`socketpair`][1] system call. Returns two socket objects representing
        the two ends of the new socket pair on success. On failure, returns
        nil and sets [`errno`][2].
      
        Example:
      
        ```Lua
        local errno = require('errno')
        local socket = require('socket')
        local s1, s1 = socket.socketpair('AF_UNIX', 'SOCK_STREAM', 0)
        if not s1 then
            error('socketpair: ' .. errno.strerror())
        end
        s1:send('foo')
        assert(s2:recv() == 'foo')
        s1:close()
        s2:close()
        ```
      
      [1]: https://man7.org/linux/man-pages/man2/socketpair.2.html
      [2]: https://www.tarantool.io/en/doc/latest/reference/reference_lua/errno/
      61130805
    • Vladimir Davydov's avatar
      lua/socket: introduce socket:detach · 628de012
      Vladimir Davydov authored
      The new socket object method is equivalent to socket:close except it
      doesn't close the underlying socket file descriptor - it just switches
      the socket object to the closed state.
      
      It may be useful for transferring fd ownership from a socket object, to
      for example, a net.box connection.
      
      Part of #8927
      
      NO_DOC=later
      NO_CHANGELOG=later
      628de012
    • Vladimir Davydov's avatar
      lua/socket: introduce socket.from_fd · 5304087c
      Vladimir Davydov authored
      The new function constructs a socket object from a file descriptor
      number. No checks are performed on the given fd so the user may pass
      a closed fd or a fd that refers to a file, in which case the socket
      object methods will fail and/or work not as expected.
      
      It may be useful for creating a socket object from a file descriptor
      inherited from a parent process.
      
      The only tricky part here is setting the socket itype, which is used
      for setting the correct receive buffer size for datagram sockets, see
      commit 11fb3ab9 ("socket: evaluate buffer size in recv / recvfrom").
      On error the itype is silently set to 0.
      
      Part of #8927
      
      NO_DOC=later
      NO_CHANGELOG=later
      5304087c
  7. Aug 08, 2023
    • Nikolay Shirokovskiy's avatar
      misc: get rid of small _xc functions · 3fccfc8f
      Nikolay Shirokovskiy authored
      Small library currently depends on Tarantool core through 'exception.h'.
      This is not the way to go. Let's drop this dependency and instead of
      moving _xc functions to Tarantool repo we can just stop using them. Our
      current policy is to panic on OOM in case of runtime allocation.
      
      Part of #7327
      
      NO_DOC=<OOM behaviour is not documented>
      NO_CHANGELOG=<no OOM expectations>
      NO_TEST=<no test harness for checking OOM>
      3fccfc8f
    • Sergey Ostanevich's avatar
      perf: initial version of 1M operations test · 10870343
      Sergey Ostanevich authored
      The test can be used for regression testing. It is advisable to tune
      the machine: check the NUMA configuration, fix the pstate or similar
      CPU autotune. Although, running dozen times gives more-less stable
      result for the peak performance, that should be enough for regression
      identification.
      
      NO_DOC=adding an internal test
      NO_CHANGELOG=ditto
      NO_TEST=ditto
      10870343
    • Aleksandr Lyapunov's avatar
      box: forbid foreign keys for incompatible temp/local spaces · 7d23b339
      Aleksandr Lyapunov authored
      There must be a couple of rules:
      * foreign key from non-temporary space to temporary space must be
        forbidden since after restart all existing links will be broken.
      * foreign key from non-local space to local space must be forbidden
        on any replica all existing can be broken.
      
      This patch implements the rules.
      
      Closes #8936
      
      NO_DOC=bugfix
      7d23b339
  8. Aug 07, 2023
    • Vladimir Davydov's avatar
      test: increase max fiber slice for box/before_replace · 371d4110
      Vladimir Davydov authored
      The test fails on osx_debug quite frequently with the following error:
      
      NO_WRAP
      > box/before_replace.test.lua                                     [ fail ]
      >
      > Test failed! Result content mismatch:
      > --- box/before_replace.result	Mon Aug  7 10:36:06 2023
      > +++ /tmp/t/rejects/box/before_replace.reject	Mon Aug  7 10:42:03 2023
      > @@ -899,6 +899,7 @@
      >  ...
      >  for i = 1,17 do gen_inserts() end
      >  ---
      > +- error: fiber slice is exceeded
      >  ...
      >  test_run:cmd('restart server test')
      >  s = box.space.test_on_schema_init
      > @@ -906,7 +907,7 @@
      >  ...
      >  s:count()
      >  ---
      > -- 1
      > +- 0
      >  ...
      >  -- For this test the number of invocations of the before_replace
      >  -- trigger during recovery multiplied by the amount of return values
      > @@ -921,7 +922,8 @@
      >  -- the value is only increased by 1, and this change is visible only in memory.
      >  s:get{1}[2] == 1 + 16999 + 17000 + 1 or s:get{1}[2]
      >  ---
      > -- true
      > +- error: '[string "return s:get{1}[2] == 1 + 16999 + 17000 + 1 o..."]:1: attempt to
      > +    index a nil value'
      >  ...
      >  test_run:cmd('switch default')
      >  ---
      NO_WRAP
      
      Let's try to increase the max fiber slice up to 15 seconds to avoid
      that, like we do in other potentially long tests. (The default value
      is 1 second.)
      
      NO_DOC=test fix
      NO_CHANGELOG=test fix
      371d4110
    • Vladimir Davydov's avatar
      memtx: assert that space is not NULL in index_read_view_create · f2886dd0
      Vladimir Davydov authored
      This should suppress the following coverity issues:
      
      https://scan7.scan.coverity.com/reports.htm#v39198/p13437/fileInstanceId=146712118&defectInstanceId=18978766&mergedDefectId=1563095
      https://scan7.scan.coverity.com/reports.htm#v39198/p13437/fileInstanceId=146712113&defectInstanceId=18978750&mergedDefectId=1563094
      
      While we are at it, let's use space_by_id instead of space_cache_find
      because read view creation is a rare operation affecting all spaces so
      caching the last space by id doesn't make any sense.
      
      NO_DOC=code health
      NO_TEST=code health
      NO_CHANGELOG=code health
      f2886dd0
    • Aleksandr Lyapunov's avatar
      box: loose truncate check in case of foreign key · 983a7ec2
      Aleksandr Lyapunov authored
      In #7309 a truncation of a space that was referenced by foreign
      key from some other space was prohibited.
      
      It appeared that this solution is too bothering since a user can't
      truncate a space even if he truncated referring space before that.
      
      Fix it by allowing space truncate if referring spaces are empty.
      Also allow drop of the primary index in the same case with the
      same reason: logically the index along with all space data is
      not needed for consistency if there's no referring data.
      
      Note that by design space truncate is implemented quite similar
      to space drop. Both delete all indexes, from secondary to primary.
      Since this patch allows deletion of the primary index (which is
      the action that actually deletes all data from the space), this
      patch changes the result of space drop too: the space remains
      alive with no indexes, while before this patch it remained alive
      with no secondary indexes but with present primary. In both cases
      the behaviour is quite strange and must be fixed in #4348. To
      make tests pass I had to perform drop in box.atomic manually.
      
      Closes #8946
      
      NO_DOC=bugfix
      983a7ec2
    • Vladimir Davydov's avatar
      lua/popen: introduce inherit_fds option for popen.new · bfd33055
      Vladimir Davydov authored
      Closes #8926
      
      @TarantoolBot document
      Title: Document `inherit_fds` option of `popen.new`
      
      The new option takes an array of file descriptor numbers that should be
      left open in the child process if the `close_fds` flag is set. If the
      `close_fds` flag isn't set, the option has no effect because in this
      case none of the parent's file descriptors are closed anyway.
      
      The option may be useful for establishing a communication channel
      between a Tarantool instance and a process spawned by it with
      `popen.new`, for example, using `socket.socketpair`.
      bfd33055
    • Vladimir Davydov's avatar
      popen: remove OOM handling code · 23a8b0e9
      Vladimir Davydov authored
      Allocation from malloc and the fiber region never fail so we can use x*
      variants to simplify code and improve coverage.
      
      NO_TEST=code cleanup
      NO_CHANGELOG=code cleanup
      
      @TarantoolBot document
      Title: Remove `OutOfMemory` error from `popen.new` and `popen.read`
      
      These functions don't raise the `OutOfMemory` exception anymore so all
      mentions of it should be removed from the documentation:
      
       - https://www.tarantool.io/en/doc/latest/reference/reference_lua/popen/#popen-new
       - https://www.tarantool.io/en/doc/latest/reference/reference_lua/popen/#popen-read
      23a8b0e9
    • Yaroslav Lobankov's avatar
      make: fix hard-coded compiler version in .test.mk · ed35713e
      Yaroslav Lobankov authored
      Remove hard-coded compiler version for the `test-release-asan` target
      in the .test.mk file.
      
      NO_DOC=make
      NO_TEST=make
      NO_CHANGELOG=make
      ed35713e
  9. Aug 04, 2023
Loading