1. 25 Dec, 2022 1 commit
    • Sergei Golubchik's avatar
      MDEV-29582 post-review fixes · 647f10ce
      Sergei Golubchik authored
      don't include my_progname in the error message, my_error starts from it
      automatically, resulting in, like
      
      /usr/bin/mysqladmin: Notice: /usr/bin/mysqladmin is deprecated and will be removed in a future release, use command 'mariadb-admin'
      
      and remove "Notice" so that the problem description would directly
      follow the executable name.
      
      make the check to work when the executable is in the PATH
      (so, invoked simply like 'mysql' and thus readlink cannot find it)
      
      fix the check in mysql_install_db and mysql_secure_installation to not
      print the warning if the intermediate path contains "mysql" substring
      
      add this message also to
      * mysql_waitpid
      * mysql_convert_table_format
      * mysql_find_rows
      * mysql_setpermissions
      * mysqlaccess
      * mysqld_multi
      * mysqld_safe
      * mysqldumpslow
      * mysqlhotcopy
      * mysql_ldb
      
      Closes #2273
      647f10ce
  2. 24 Dec, 2022 8 commits
    • Daniel Black's avatar
      MDEV-29582 deprecate mysql* names · bdf1b8ee
      Daniel Black authored
      Eventually mysql symlinks will go away, as MariaDB and MySQL keep
      diverging and we do not want to make it impossible to install
      MariaDB and MySQL side-by-side when users want it.
      
      It also useful if people start using MariaDB tools with MariaDB.
      
      If the exe doesn't begine with "mariadb" or is a symlink,
      print a warning to use the resolved name.
      
      In my_readlink, add check on my_thread_var as its used by comp_err
      and other build utils that also use my_init.
      bdf1b8ee
    • Sergei Golubchik's avatar
      MDEV-30128 remove support for 5.1- replication events · 27a0c239
      Sergei Golubchik authored
      including patches from Andrei Elkin
      27a0c239
    • Sergei Golubchik's avatar
      MDEV-30153 ad hoc client versions are confusing · cdf26c55
      Sergei Golubchik authored
      try to make them less confusing for users.
      Hopefully, if the version string will be changed like
      
      - mariadb Ver 15.1 Distrib 10.11.2-MariaDB for Linux (x86_64)
      + mariadb from 10.11.2-MariaDB, client 15.1 for Linux (x86_64)
      
      users will be less inclined to reply "15.1" to the question
      "what mariadb version are you using?"
      cdf26c55
    • Sergei Golubchik's avatar
      unify client/tool version string · 57688042
      Sergei Golubchik authored
      it should now always be
      
      /path/to/exe Ver <tool version> Distrib <server version> for <OS> (<ARCH>)
      
      in all tools and clients
      57688042
    • Sergei Golubchik's avatar
      MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges · 5b76d507
      Sergei Golubchik authored
      SUPER privilege used to allow various actions that were alternatively
      allowed by one of BINLOG ADMIN, BINLOG MONITOR, BINLOG REPLAY,
      CONNECTION ADMIN, FEDERATED ADMIN, REPL MASTER ADMIN, REPL SLAVE ADMIN,
      SET USER, SLAVE MONITOR.
      
      Now SUPER no longer does that, one has to grant one of the fine-grained
      privileges above to be to perform corresponding actions.
      
      On upgrade from MariaDB versions 10.11 and below all the privileges
      above are granted automatically if the user has SUPER.
      
      As a side-effect, such an upgrade will allow SUPER-user to run SHOW
      BINLOG EVENTS, SHOW RELAYLOG EVENTS, SHOW SLAVE HOSTS, even if he wasn't
      able to do it before the upgrade.
      5b76d507
    • Sergei Golubchik's avatar
    • Sergei Golubchik's avatar
      MDEV-28910 remove the 5.5.5- version hack · 80fd717b
      Sergei Golubchik authored
      no longer needed, MySQL replication was fixed meanwhile.
      
      client code still can recognize and strip the prefix though.
      80fd717b
    • Vicențiu Ciorbaru's avatar
      add missing lintian overrides · de0bf118
      Vicențiu Ciorbaru authored
      de0bf118
  3. 23 Dec, 2022 3 commits
  4. 20 Dec, 2022 3 commits
  5. 16 Dec, 2022 7 commits
  6. 15 Dec, 2022 6 commits
  7. 14 Dec, 2022 12 commits