Skip to content
Snippets Groups Projects
  1. Apr 15, 2021
    • Roman Khabibov's avatar
      box: set box.cfg options via environment variables · 1b330121
      Roman Khabibov authored
      
      Add ability to set box.cfg options via environment variables. These
      variables should have name `TT_<OPTION>`. When Tarantool instance is
      started under tarantoolctl utility, environment variables have higher
      priority than tarantoolctl configuration file.
      
      Closes #5602
      
      Co-authored-by: default avatarLeonid Vasiliev <lvasiliev@tarantool.org>
      Co-authored-by: default avatarAlexander Turenko <alexander.turenko@tarantool.org>
      
      @TarantoolBot document
      Title: Set box.cfg options via environment variables
      
      Now, it is possible to set box.cfg options via environment variables.
      The name of variable should correspond the following pattern:
      `TT_<NAME>`, where `<NAME>` is uppercase box.cfg option name. For
      example: `TT_LISTEN`, `TT_READAHEAD`.
      
      Array values are separated by comma. Example:
      
      ```sh
      export TT_REPLICATION=localhost:3301,localhost:3302
      ```
      
      An empty variable is the same as unset one.
      1b330121
    • Cyrill Gorcunov's avatar
      cfg: provide types for logger options · 8d1a4bdb
      Cyrill Gorcunov authored
      
      This needed for fast type check when fetching
      options from environment variable.
      
      Part-of #5602
      
      Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
      8d1a4bdb
    • Mergen Imeev's avatar
      sql: introduce mem_get_agg() · 8cb3b77d
      Mergen Imeev authored
      This patch introduces mem_get_agg(). This function is used to receive
      address of memory allocated for accumulation structure of the aggregate
      function.
      
      Closes #5818
      8cb3b77d
    • Mergen Imeev's avatar
      sql: introduce mem_len() · 718d43ee
      Mergen Imeev authored
      This patch introduces mem_len(). This function is used to receive
      length of string or binary value of MEM. If MEM is not of STRING or
      VARBINARy type this function returns -1.
      
      Part of #5818
      718d43ee
    • Mergen Imeev's avatar
      sql: introduce mem_get_bin() · deabc2ce
      Mergen Imeev authored
      This patch introduces mem_get_bin(). This function is used to receive
      binary value from MEM. If value of MEM is not binary value, it is
      converted to binary value if possible. MEM is not changed.
      
      Part of #5818
      deabc2ce
    • Mergen Imeev's avatar
      sql: introduce mem_get_str0() and mem_as_str0() · 716a33d1
      Mergen Imeev authored
      This patch introduces mem_get_str0() and mem_as_str0(). Function
      mem_get_str0() is used to receive NULL-terminated string from MEM. If
      value of MEM is not NULL-terminated string, it is converted to
      NULL-terminated string if possible. MEM is not changed. Function
      mem_as_str0() is also used to receive NULL-terminated string from MEM,
      however if MEM does not contain NULL-terminated string it converts MEM
      to MEM that contains NULL-terminated string and returns its value.
      
      Part of #5818
      716a33d1
    • Mergen Imeev's avatar
      sql: introduce mem_get_bool() · 953a847c
      Mergen Imeev authored
      This patch introduces mem_get_bool(). This function is used to receive
      boolean value from MEM. If value of MEM is not boolean, it is
      converted to boolean if possible. MEM is not changed.
      
      Part of #5818
      953a847c
    • Mergen Imeev's avatar
      sql: introduce mem_get_double() · d4e55ae8
      Mergen Imeev authored
      This patch introduces mem_get_double(). This function is used to receive
      double value from MEM. If value of MEM is not double, it is converted to
      double if possible. MEM is not changed.
      
      Part of #5818
      d4e55ae8
    • Mergen Imeev's avatar
      sql: introduce mem_get_uint() · bde6d26e
      Mergen Imeev authored
      This patch introduces mem_get_uint() function. This function is used to
      receive unsigned value from MEM. If value of MEM is not unsigned, it is
      converted to unsigned if possible. MEM is not changed.
      
      Part of #5818
      bde6d26e
    • Mergen Imeev's avatar
      sql: introduce mem_get_int() · dbdc4eec
      Mergen Imeev authored
      This patch introduces mem_get_int() function. This function is used to
      receive integer value from MEM. If value of MEM is not integer, it is
      converted to integer if possible. MEM is not changed.
      
      Part of #5818
      dbdc4eec
    • Mergen Imeev's avatar
      sql: introduce mem_cast_implicit() · 655c4df5
      Mergen Imeev authored
      This patch introduces mem_cast_implicit(). This function is used to
      convert a MEM to given type according to implicit cast rules.
      
      Part of #5818
      655c4df5
    • Mergen Imeev's avatar
      sql: introduce mem_cast_explicit() · c8b8fd66
      Mergen Imeev authored
      This patch introduces mem_cast_explicit(). This function is used to
      convert a MEM to a given field type according to explicit cast rules.
      
      Part of #5818
      c8b8fd66
    • Mergen Imeev's avatar
      sql: introduce mem_to_str() and mem_to_str0() · b47715c1
      Mergen Imeev authored
      This patch introduces mem_to_str() and mem_to_str0() functions. These
      functions are used to convert a MEM to a MEM that contains string value.
      These functions defines the rules that are used during convertion from
      values of all other types to STRING.
      
      Part of #5818
      b47715c1
    • Mergen Imeev's avatar
      sql: introduce mem_to_number() · 985eca7c
      Mergen Imeev authored
      This patch introduces mem_to_number(). This function is used to convert
      MEM to MEM contains number.
      
      Part of #5818
      985eca7c
    • Mergen Imeev's avatar
      sql: introduce mem_to_double() · 5b438e24
      Mergen Imeev authored
      This patch intruduces mem_to_double(). This function is used to convert
      a MEM to a MEM that contains double value. This function defines the
      rules that are used during conversion from values of all other types to
      double.
      
      Part of #5818
      5b438e24
    • Mergen Imeev's avatar
      sql: introduce mem_to_int*() functions · 829daeed
      Mergen Imeev authored
      This patch introduces mem_to_int() and mem_to_int_precise() functions.
      These functions are used to convert a MEM to a MEM that contains
      integer value. These functions defines the rules that are used during
      convertion from values of all other types to INTEGER.
      
      Part of #5818
      829daeed
    • Mergen Imeev's avatar
      sql: introduce mem_set_null_clear() · 1581f883
      Mergen Imeev authored
      This patch introduces mem_set_null_clear() function. This function sets
      "cleared" NULL to MEM. This NULL is used only in internal VDBE
      operations.
      
      Part of #5818
      1581f883
    • Mergen Imeev's avatar
      sql: introduce mem_set_agg() · bdb64c1d
      Mergen Imeev authored
      This patch introduces mem_set_agg() function. This function stores
      aggregation function to MEM and allocates enough memory to hold
      accumulation structure for aggregate function.
      
      Part of #5818
      bdb64c1d
    • Mergen Imeev's avatar
      sql: introduce mem_set_frame() · d15f2a72
      Mergen Imeev authored
      This patch introduces mem_set_frame() function. This function clears the
      MEM and sets a frame to MEM. Frames used for internal VDBE operations.
      
      Part of #5818
      d15f2a72
    • Mergen Imeev's avatar
      sql: refactor mem_set_ptr() · f22686dc
      Mergen Imeev authored
      This patch refactors mem_set_ptr() function. Also, it moves the function
      to all others mem_set_*() functions.
      
      Part of #5818
      f22686dc
    • Mergen Imeev's avatar
      sql: introduce mem_set_invalid() · 8bdc9da8
      Mergen Imeev authored
      This patch introduces mem_set_invalid() function. This function clears
      MEM and invalidates it.
      
      Part of #5818
      8bdc9da8
    • Mergen Imeev's avatar
      sql: introduce mem_set_*() for map and array · f149b5ad
      Mergen Imeev authored
      This patch introduces set of mem_set_*() functions for MAP and ARRAY.
      These functions clears MEM and sets it to given binary value. Binary
      value must be MAP or ARRAY. Degree of clearing and type of allocation of
      the binary value is determined by the function used.
      
      Part of #5818
      f149b5ad
    • Mergen Imeev's avatar
      sql: introduce mem_set_zerobin() · fe92a240
      Mergen Imeev authored
      This patch introduces mem_set_zerobin() function. This function clears
      MEM and sets it to binary value that consists of given number of zero
      bytes.
      
      Part of #5818
      fe92a240
    • Mergen Imeev's avatar
      sql: introduce mem_copy_bin() · 95d49373
      Mergen Imeev authored
      This patch introduces mem_copy_bin() function. This function copies
      given binary value to a newly allocated by MEM memory.
      
      Part of #5818
      95d49373
    • Mergen Imeev's avatar
      sql: introduce mem_set_bin_*() functions · 2a4efdd5
      Mergen Imeev authored
      This patch introduces set of mem_set_bin_*() functions. These functions
      clears MEM and sets it to given binary value. Degree of clearing and
      type of allocation of the binary value is determined by the function
      used.
      
      Part of #5818
      2a4efdd5
    • Mergen Imeev's avatar
      sql: introduce mem_copy_str() and mem_copy_str0() · d089a6cf
      Mergen Imeev authored
      This patch introduces mem_copy_str() and mem_copy_str0() functions.
      These functions copy given string to newly allocated by MEM memory.
      String given to mem_copy_str0() should be NULL-terminated. This is not
      necessary for mem_copy_str().
      
      Part of #5818
      d089a6cf
    • Mergen Imeev's avatar
      sql: introduce mem_set_str_*() functions · 79273e38
      Mergen Imeev authored
      This patch introduces set of mem_set_str_*() functions. These functions
      clears MEM and sets it to given string value. Degree of clearing and
      type of allocation of the string is determined by the function used.
      
      Part of #5818
      79273e38
    • Mergen Imeev's avatar
      sql: move mem_set_bool() and mem_set_double() · d689a3af
      Mergen Imeev authored
      This patch performs a small refactoring of mem_set_double() and moves
      this function and mem_set_bool() to another place so that they are part
      of the code block containing all mem_set_*() functions.
      
      Part of #5818
      d689a3af
    • Mergen Imeev's avatar
      sql: introduce mem_set_uint() · c4a86696
      Mergen Imeev authored
      This patch introduces mem_set_uint(). This function clears MEM and sets
      it to given unsigned value.
      
      Part of #5818
      c4a86696
    • Mergen Imeev's avatar
      sql: introduce mem_set_int() · c9b6a278
      Mergen Imeev authored
      This patch introduces mem_set_int(). This function clears MEM and sets
      it to given integer value.
      
      Part of #5818
      c9b6a278
    • Mergen Imeev's avatar
      sql: introduce mem_set_null() · 1aad8fdb
      Mergen Imeev authored
      This patch introduces mem_set_null(). This function clears MEM and sets
      it to NULL.
      
      Part of #5818
      1aad8fdb
    • Mergen Imeev's avatar
      sql: Initialize MEM in sqlVdbeAllocUnpackedRecord() · 4d801264
      Mergen Imeev authored
      This patch adds initialization for newly created MEM objects in
      sqlVdbeAllocUnpackedRecord(). Changing a MEM without being
      initialized may give us unexpected result.
      
      Part of #5818
      4d801264
    • Mergen Imeev's avatar
      sql: introduce bitwise operations for MEM · 8bc1b411
      Mergen Imeev authored
      This patch introduces mem_bit_and(), mem_bit_or(), mem_shift_left(),
      mem_shift_right(), and mem_bit_not(), which perform bitwise operations
      on MEM.
      
      Part of #5818
      8bc1b411
    • Mergen Imeev's avatar
      sql: introduce mem_cmp_*() functions · 80cbac4d
      Mergen Imeev authored
      This patch introduces set of mem_cmp_*() functions. These functions are
      used to compare MEMs.
      
      Part of #5818
      80cbac4d
    • Mergen Imeev's avatar
      sql: introduce arithmetic operations for MEM · de0e77f9
      Mergen Imeev authored
      This patch introduces mem_add(), mem_sub(), mem_mul(), mem_div() and
      mem_rem(), which perform arithmetic operations on two MEMs. Operands
      must contain values of numeric types or values that can be converted
      to a number according to implicit casting rules.
      
      Part of #5818
      de0e77f9
    • Mergen Imeev's avatar
      sql: introduce mem_concat() · 0c3d0af3
      Mergen Imeev authored
      This patch introduces mem_concat(). Function mem_concat() concatenates
      values from two MEMs in case these values are strings or binaries and
      writes the result to the third MEM.
      
      Part of #5818
      0c3d0af3
    • Mergen Imeev's avatar
      sql: remove sql_column_to_messagepack() · f9b70495
      Mergen Imeev authored
      Function sql_column_to_messagepack() has almost the same functionality
      as sql_vdbe_mem_encode_tuple(). Due to this it is not necessary to
      have sql_column_to_messagepack(), so it is removed in this commit.
      
      Part of #5818
      f9b70495
    • Mergen Imeev's avatar
      sql: rework vdbe_decode_msgpack_into_mem() · f7a3eff7
      Mergen Imeev authored
      The original vdbe_decode_msgpack_into_mem() returns a MEM that contains
      string and binary values as ephemeral. This patch renames this function
      to mem_from_mp_ephemeral() and introduces new function mem_from_mp(),
      which returns a MEM that contains string and binary values in newly
      allocated memory.
      
      This patch changes behavior for this query:
      
      CREATE TABLE t1(m VARBINARY primary key);
      INSERT INTO t1 VALUES(x'6178'), (x'6278'), (x'6379');
      SELECT count(*), substr(m,2,1) AS mx FROM t1 GROUP BY mx;
      
      Before this patch:
      
      tarantool> SELECT count(*), substr(m,2,1) AS mx FROM t1 GROUP BY mx;
      ---
      - metadata:
        - name: COLUMN_1
          type: integer
        - name: MX
          type: string
        rows:
        - [2, 'y']
        - [1, 'y']
      ...
      
      After this patch.
      
      tarantool> SELECT count(*), substr(m,2,1) AS mx FROM t1 GROUP BY mx;
      ---
      - metadata:
        - name: COLUMN_1
          type: integer
        - name: MX
          type: string
        rows:
        - [2, 'x']
        - [1, 'y']
      ...
      
      Part of #5818
      Closes #5890
      f7a3eff7
    • Mergen Imeev's avatar
      sql: rework mem_move() · 1d24bef8
      Mergen Imeev authored
      This patch reworks mem_move(). This function moves all content of source
      MEM to destination MEM. Source mem is set to NULL.
      
      Part of #5818
      1d24bef8
    • Mergen Imeev's avatar
      sql: introduce mem_copy_as_ephemeral() · aae2c0a3
      Mergen Imeev authored
      This patch intoduces mem_copy_as_ephemeral(). This function copies value
      from source MEM to destination MEM. In case value is of string or binary
      type and its allocation type is not static, it copied as value with
      ephemeral allocation type.
      
      Part of #5818
      aae2c0a3
Loading