- 09 Mar, 2016 1 commit
-
-
Vladislav Vaintroub authored
-
- 08 Mar, 2016 12 commits
-
-
Vicențiu Ciorbaru authored
-
Vicențiu Ciorbaru authored
-
Vicențiu Ciorbaru authored
* Maintain coding style in sql_yacc.yy in regards to optional clauses. * Remove unused variable from sql_acl.cc. * Update test case
-
Vicențiu Ciorbaru authored
-
Vicențiu Ciorbaru authored
Update test to account for the new SHOW CREATE USER command.
-
Vicențiu Ciorbaru authored
-
Vicențiu Ciorbaru authored
Adding an extra statement requires test cases update.
-
Vicențiu Ciorbaru authored
Implemented the alter user syntax. Also tested that create user creates users accordingly.
-
Vicențiu Ciorbaru authored
Extend the syntax accepted by the grammar to account for the new create user and alter user syntax.
-
Vicențiu Ciorbaru authored
-
Vladislav Vaintroub authored
-
Sergey Vojtovich authored
Simplified audit event dispatching call chain from: mysql_audit_notify_connection_connect() // can be inlined mysql_audit_notify() // can't be inlined connection_class_handler() // can't be inlined event_class_dispatch() // can be inlined plugins_dispatch() // can be inlined plugin->event_notify() // can't be inlined to: mysql_audit_notify_connection_connect() // can be inlined mysql_audit_notify() // can't be inlined plugins_dispatch() // can be inlined plugin->event_notify() // can't be inlined
-
- 28 Feb, 2016 3 commits
-
-
Sergey Vojtovich authored
In RHEL7/RHEL7.1 libcrack behavior seem to have been modified so that "foobar" password is considered bad (due to descending "ba") earlier than expected. For details google for cracklib-2.9.0-simplistic.patch. Adjusted affected passwords not to have descending and ascending sequences.
-
Sergei Petrunia authored
Show outer_ref_condition in EXPLAIN FORMAT=JSON output.
-
Sergey Vojtovich authored
Also fixed race condition in main.connect2 test: we need to wait for disconnected connections to actually decrease Threads_connected.
-
- 27 Feb, 2016 3 commits
-
-
Sergey Vojtovich authored
-
Sergey Vojtovich authored
This is expected to fix many test failures on 32bit builds where creation of second temporary table was failing.
-
Alexey Botchkov authored
--raw, --stop-never and --stop-never-slave-server-id=id options added to the mysqlbinlog tool.
-
- 26 Feb, 2016 10 commits
-
-
Sergey Vojtovich authored
This is an addition to rev. ed990465 Reverted some test cases changes done in MDEV-6150.
-
Sergey Vojtovich authored
Cleanup now unused arguments of tdc_open_view().
-
Sergey Vojtovich authored
Remove tdc_acquire_share() helpers: they don't actually make things simpler.
-
Sergey Vojtovich authored
tdc_assign_new_table_id() does not relate to table cache, move it out of table_cache.cc.
-
Sergey Vojtovich authored
-
Sergey Vojtovich authored
Compile time assertion "sizeof(struct st_irem) % sizeof(double) == 0" started to fail on 32bit systems after my_thread_id was changed from ulong to int64. Fixed by added padding to struct st_irem on 32bit systems.
-
Sergey Vojtovich authored
First thread was getting id 0, while it is intended to get id 1.
-
Sergey Vojtovich authored
Fixed assertion failure introduced along with MDEV-6150 (thd must be unlinked before calling "delete thd").
-
Sergey Vojtovich authored
It is not permitted to "delete thd" under LOCK_thread_count anymore.
-
Sergei Golubchik authored
-
- 25 Feb, 2016 2 commits
-
-
Sergei Golubchik authored
-
Nirbhay Choubey authored
Also, renamed wsrep_skip_append_keys to wsrep_ignore_table. Test case : galera.galera_as_slave_gtid.test
-
- 24 Feb, 2016 9 commits
-
-
Sergei Petrunia authored
- "Early NULLs filtering" optimization used to "peel off" Item_ref and Item_direct_ref wrappers from an outside column reference before adding "outer_table_col IS NOT NULL" into JOIN::outer_ref_cond. - When this happened in a subquery that was evaluated in a post-GROUP-BY context, attempt to evaluate JOIN::outer_ref_cond would fetch an incorrect value of outer_table_col.
-
Sergei Golubchik authored
10.0 merge 10.0-galera merge connect/10.1 merge
-
Sergei Golubchik authored
-
Alexander Barkov authored
contains broken procedure body when used shielding quotes inside.
-
Nirbhay Choubey authored
-
Krunal Bauskar authored
If any given variable the xtrabackup-v2 sst script looks for is specified multiple times in cnf file then it tend to pick both of them causing some of the follow-up command to fail. Avoid this programatic mistake by honoring only the last variable assigned setting as done by mysqld too. Check https://bugs.launchpad.net/percona-xtradb-cluster/+bug/1362830
-
Krunal Bauskar authored
Semantics: --------- * Generally end-user will create a separate user with needed privileges for performing DONOR action. * This user credentials are specified using wsrep_sst_auth. * Along with this user there could be other user(s) created on the server that sysadmin may use for normal or other operations * Credentials for these user(s) can be specified in same cluster/server cnf file as part of [client] section When cluster act as DONOR and if wsrep_sst_auth is provided then it should strictly use it for performing SST based action. What if end-user has same credentials for performing both SST action and normal admin work ? * Then end-user can simply specify these credentials as part of [client] section in cnf file and skip providing wsrep_sst_auth. Issue: ----- MySQL client user/password parsing preference order is as follows: * command line (through --user/--password) * cnf file * MYSQL_PWD enviornment variable. Recent change tried passing sst user password through MYSQL_PWD (and user though --user command line param as before). On the system where-in admin had another user for performing non-SST actions, credentials for such user were present in cnf file under [client] section. Due to mysql client preference order, SST user name was used (as it was passed through command line) but password of other user (meant for non-SST) action was being used as it was passed through cnf file. Password passed through MYSQL_PWD was completely ignored causing user-name/password mismatch. Solution: --------- * If user has specified credentials for SST then pass them through command line so that they are used in priority. (There could be security concern on passing things through command line but when I tried passing user-name and password through command line to mysql client and then did ps I saw this ./bin/mysql --user=sstuser --password=x xxxxxxxx -S /tmp/n1.sock so seems like password is not shown)
-
Nirbhay Choubey authored
-
Nirbhay Choubey authored
-