Skip to content
Snippets Groups Projects
  1. Mar 27, 2019
  2. Mar 26, 2019
    • Mergen Imeev's avatar
      sql: remove sqlErrorMsg() · 4e486f3f
      Mergen Imeev authored
      This patch completely replaces sqlErrorMsg() with diag_set() and
      removes sqlErrorMsg().
      
      Closes #3965
      Closes #3036
      4e486f3f
    • Mergen Imeev's avatar
      sql: rework semantic errors · 287d94bb
      Mergen Imeev authored
      This patch reworks some of SQL semantic errors.
      
      Part of #3965
      287d94bb
    • Alexander Turenko's avatar
      Fix tarantoolctl cat/play premature stop with --to · 70a8342f
      Alexander Turenko authored
      Stop a file processing loop only when it is guaranteed that we will not
      find a record that match user-provided filters later in this file. If
      --replica R is provided one time and we're meet a record from R with a
      LSN equal or above of a --to value, we'll stop the loop. Otherwise (no
      --replica, several --replica arguments) a file will be read until an end
      even if --to is provided.
      
      Fixes #3827.
      70a8342f
    • Alexander Turenko's avatar
      Unify tarantoolctl cat/play xlog filtering code · 092bc7ed
      Alexander Turenko authored
      Exposed this unified code (filter_xlog() function) and wrote a unit
      test.
      
      Allow to run app-tap/tarantoolctl.test.lua w/o test-run.
      
      Needed for #3827.
      092bc7ed
    • Georgy Kirichenko's avatar
      Synchronize lua schema update with space cache · 082cffca
      Georgy Kirichenko authored
      Update lua schema as soon as space cache replace was done instead of
      doing this while on_commit trigger executes. In opposite then case
      schema changes would not be visible until commit was finished.
      
      Needed for: #2798
      082cffca
    • Roman Khabibov's avatar
      say: fix assertion in log_format when called for boot or syslog logger · 6bcff2b5
      Roman Khabibov authored
      It's OK to use json format with the boot logger. As for syslog, let's
      add a check to Lua's log_format() so that it fails gracefully rather
      than raising an assertion.
      
      Closes #3946
      6bcff2b5
    • Georgy Kirichenko's avatar
      Abort vinyl index creation in case of truncation rollback · 297d51e8
      Georgy Kirichenko authored
      Abort a new index creation if truncate couldn't be finished because of
      rollback or an error. Without this vinyl fails because of internal
      scheduler assertion.
      
      Needed for: 2798
      297d51e8
    • Kirill Shcherbatov's avatar
      test: check hints corner cases · f5721edc
      Kirill Shcherbatov authored
      We must to enshure that hints don't broke tuple comparison.
      As different field_types use different routines to calculate hint,
      we must to ensure that the calculated values are compatible with
      each other.
      
      Also tested the corner cases for large double numbers, due to the
      fact that there may be additional difficulties in hint construction.
      
      Follow-up
          9fba29ab memtx: introduce tuple compare hint
      f5721edc
    • Kirill Shcherbatov's avatar
      box: allow box.session{.exists, .fd} without args · b4b45513
      Kirill Shcherbatov authored
      Allow to call box.session.exists() and box.session.fd() without
      any arguments. In such case, current session is used.
      The box.session.peer() already support such feature, so we need
      it to be consistent.
      
      Closes #4021
      b4b45513
    • Serge Petrenko's avatar
      test: fix long_row_timeout.test.lua failure in parallel mode · 17acae1f
      Serge Petrenko authored
      The test used to write big rows (20 mb in size), so when run in parallel
      mode, it put high load on the disk and processor, which made appliers
      time out multiple times during read, and caused the test to fail
      occasionally.
      So, instead of writing huge rows in test, introduce a new error
      injection restricting sio from reading more than a couple of bytes per
      request. This ensures that the test is still relevant and makes it a lot
      more lightweight.
      
      Closes #4062
      17acae1f
    • Kirill Shcherbatov's avatar
      box: fix Tarantool upgrade from 2.1.0 to 2.1.1 · 26978b0b
      Kirill Shcherbatov authored
      Tarantool could not start from the snapshot created by version
      2.1.0 because the new version 2.1.1 does not support the
      index.opts.sql index opt and stops the execution.
      Introduced a special state OPT_DEF_LEGACY macro to ignore legacy
      options and introduced migration code in upgrade.lua.
      26978b0b
    • Mergen Imeev's avatar
      sql: ban ANALYZE statement · 6c32309e
      Mergen Imeev authored
      At this point, an ANALYZE statement can lead to many problems. It
      was decided to temporarily ban this statement.
      
      Closes #4069
      6c32309e
    • Vladislav Shpilevoy's avatar
      swim: fix build on FreeBSD · 88892f13
      Vladislav Shpilevoy authored
      Close #4050
      88892f13
  3. Mar 25, 2019
  4. Mar 22, 2019
  5. Mar 21, 2019
    • Vladimir Davydov's avatar
      vinyl: fix recovery after aborted index creation · 38fc0bbe
      Vladimir Davydov authored
      There's a bug in the code building index hash on recovery: we replace
      a dropped index with any newer index, even incomplete one. Apparently,
      this is wrong, because a dropped index may have been dropped during
      final recovery and hence is still needed for initial recovery. If we
      replace it with an incomplete index in the index hash, initial recovery
      will fail with
      
        ER_INVALID_VYLOG_FILE: Invalid VYLOG file: LSM tree 512/1 not found
      
      (see vy_lsm_recover()).
      
      Fix this problem by checking create_lsn of the index that is going to
      replace a dropped one - if it's negative, we must link it to the dropped
      index via vy_lsm_recovery_info->prepared instead of inserting it into
      the hash directly.
      
      Closes #4066
      38fc0bbe
    • Georgy Kirichenko's avatar
      SIGHUP causes a log rotation instead of termination · c9f36fb9
      Georgy Kirichenko authored
      Perform a log rotation instead of a termination according to
      the documentation. Fix regression caused by 9f99bc62
      
      Follow up for: 9f99bc62
      Closes: #4063
      c9f36fb9
    • Kirill Shcherbatov's avatar
      box: fix format of tuple produced with frommap() · 9e2a905c
      Kirill Shcherbatov authored
      Previously, all tuples created with frommap() used default format
      table_format_runtime, and therefore the created data tuples were
      not checked for the ability to be inserted into the target space.
      
      Moreover frommap(...):tomap(...) procedures sequence also did not
      work because tomap(..) routine assumes that the tuple has format
      with field names.
      
      Closes #4045
      9e2a905c
  6. Mar 20, 2019
    • Kirill Shcherbatov's avatar
      memtx: introduce tuple compare hint · 9fba29ab
      Kirill Shcherbatov authored
      Implement functions for retrieving tuple hints for a particular
      key_def. Hint is an integer that can be used for tuple comparison
      optimization: if a hint of one tuple is less than a hint of another
      then the first tuple is definitely less than the second; only if
      hints are equal tuple_compare must be called for getting comparison
      result. Hints are calculated using only the first part of key_def.
      
      @locker:
       - Rework key_def_set_hint_func.
       - Refactor functions calculating hints.
       - Drop has_collation template argument (we don't use templates
         for collations anywhere else).
       - Add part_count argument to key_hint (it's conventional to pass
         part_count along with decoded key).
       - Improve comments, rename a few functions, and cleanup code.
      
      Close #3961
      9fba29ab
    • Vladimir Davydov's avatar
      memtx_tree: refactor key_def/cmp_def selector · b5800101
      Vladimir Davydov authored
       - Fold key_def/cmp_def selection logic (memtx_tree_index_cmp_def).
         There are only a couple places that use it so it isn't going to
         hurt readability.
       - Add memtx_tree_cmp_def helper that returns the definition currently
         used by a memtx tree. In contrast to removed memtx_tree_index_cmp_def
         this one doesn't check index_def. Instead it returns memtx_tree arg.
         We will use it to compute key/tuple hints.
    • Nikita Pettik's avatar
      sql: fix recovery of VIEW space · 2425fde7
      Nikita Pettik authored
      During creation of VIEW space, string containing its definition (i.e.
      "SELECT ...") is parsed to fetch names of referenced spaces. By those
      names real struct space objects are found using schema_find_id().
      This function processes lookup in _space using its secondary index.
      On the other hand, secondary indexes of _space are unavailable during
      this stage of recovery, so this lookup fails and whole recovery process
      aborts.
      
      It is worth mentioning that now we can fetch space directly from
      in-memory cache using its name (originally, when view reference counter
      was introduced, we couldn't do this due to absence of name-cache). So,
      to fix this issue, let's use space_by_name() instead of schema_find_id()
      
      Closes #3814
      2425fde7
    • Nikita Pettik's avatar
      sql: make spaces without PK illegal in queries · de6fb197
      Nikita Pettik authored
      Our SQL codebase was inherited from SQLite, where each table must have
      at least one index - primary (if no explicit PK declared, one based on
      rowid is implicitly created). In Tarantool spaces can exists without
      indexes. The only existing restriction is that they can't contain any
      data. Hence, even very basic queries fail with assertion/seagfault if
      they are applied to spaces with no indexes. Situation when space turns
      out to remain without PK is quite common due to the absence of
      transactional DDL: for instance, space drop procedure consists of
      several steps including dropping all indexes; space itself is dropped at
      the very end. Thus, if a sequence of queries is interrupted by drop
      space procedure and one is not finished, the rest of queries will
      operate on space with no indexes.
      
      As a solution to this problem (at least temporary) now we disallow
      query processing involving spaces without PK except for views.
      
      Closes #3780
      de6fb197
  7. Mar 19, 2019
    • Vladimir Davydov's avatar
      tuple_compare: rename *_compare_with_hint to *_compare_with_type · 139482e0
      Vladimir Davydov authored
      We're planning to introduce tuple comparison hints soon. Let's rename
      those helper function so as not to mix them.
      139482e0
    • Vladimir Davydov's avatar
      tuple_compare: cleanup key_def virtual func setter · 829c811c
      Vladimir Davydov authored
      Over time key_def virtual func setter code has turned into a complete
      mess: now it's an incomprehensible mix of if-else blocks, linear array
      search, and devious array indexing. What is worse, it's duplicated by
      tuple_compare_create and tuple_compare_with_key_create. Adding yet
      another parameter to key_def templates, which is needed to implement
      multi-key indexes, is literally impossible.
      
      This patch attempts to alleviate the situation by splitting code paths
      for pre-compiled, plain, and json indexes plus merging tuple_compare and
      tuple_compare_with_key setters.
      829c811c
    • Mergen Imeev's avatar
      sql: rework three errors of "unsupported" type · c8e4b9ed
      Mergen Imeev authored
      Three errors of "unsupported" type were reworked in this patch.
      
      Part of ...3965
      c8e4b9ed
    • Mergen Imeev's avatar
      sql: remove field nErr from struct Parse · 9cafd70b
      Mergen Imeev authored
      At the moment, the only purpose of the field nErr of struct Parse
      is to show whether the field is_aborted of the same struct is true
      or false. Let's remove it.
      
      Part of ...3965
      9cafd70b
    • Nikita Pettik's avatar
      sql: bind BLOB value as BLOB not as STRING · 4007436a
      Nikita Pettik authored
      It is obvious that BLOB (that is value encoded in msgpack with MP_BIN
      format) values must be bound as BLOBs, not as strings. Unfortunately,
      they were bound as strings, which lead to wrong resulting type
      calculations after execution of SQL statement.
      4007436a
    • Mergen Imeev's avatar
      sql: replace rc with is_aborted status in struct Parse · 71c6e823
      Mergen Imeev authored
      Currently, field representing return code in struct Parse can take
      only two values: SQL_OK (successfully finished parsing) and
      SQL_TARANTOOL_ERROR (in case of any errors occurred). Therefore,
      it can be replaced with a boolean field. Patch provides
      straightforward refactoring.
      
      Part of #3965
      71c6e823
    • Mergen Imeev's avatar
      sql: remove argument pzErrMsg from sqlRunParser() · effbfeb0
      Mergen Imeev authored
      This argument has practically no functionality, but deleting it
      allows us to replace the rc field of the Parse structure with a
      new bool field.
      
      Part of #3965
      effbfeb0
    • Alexander Turenko's avatar
      travis: add Fedora 28 and 29 · 67dcbf28
      Alexander Turenko authored
      Fixes #4027.
      67dcbf28
    • Alexander Turenko's avatar
      lua: remove digest.sha() and digest.sha_hex() · 390693a1
      Alexander Turenko authored
      SHA-0 is considered weak for years and was removed in OpenSSL since
      1.1.0.
      
      These Lua functions did not work since 15ed10e4, but give 'Digest
      method "sha" is not supported' error for any input. Removed them to
      don't confuse a user with a Tab completion.
      
      Follow up #1722.
      Fixes #4028.
      390693a1
    • Ivan Koptelov's avatar
      sql: forbid diff. sorting orders in ORDER BY + LIMIT · aa4a2de6
      Ivan Koptelov authored
      Without multi-directional iterators (to be introduced in #3309)
      ORDER BY + LIMIT with different specified ordered leads to wrong
      result. So for now (till #3309 is resolved) different sort
      orders are forbidden in ORDER BY + LIMIT.
      
      Close #4038
      
      @TarantoolBot document
      Title: different sorting orders in ORDER BY are forbidden now
      The error will be raised if different sorting orders are
      encountered.
      aa4a2de6
    • Mergen Imeev's avatar
      sql: set SQL parser errors via diag_set() · 3abd5926
      Mergen Imeev authored
      After this patch all SQL parser errors will be set via diag_set().
      They were saved in field zErrMsg of struct Parse before this
      patch.
      
      Part of #3965
      3abd5926
  8. Mar 18, 2019
Loading