Re: [Maria-developers] auth_socket/unix_socket auth plugin naming incompatibility with Percona Server

2015-02-19 Thread John Leach
Hi Sergei, thanks for your response! On Thu, 2015-02-19 at 21:38 +0100, Sergei Golubchik wrote: > On Feb 19, John Leach wrote: > > > > I just tested a switch from Percona Server 5.6 to MariaDB 10.0.16 and > > hit a problem with socket authentication. > ... > > Percona renamed it to auth_socket,

Re: [Maria-developers] auth_socket/unix_socket auth plugin naming incompatibility with Percona Server

2015-02-19 Thread Sergei Golubchik
Hi, John! On Feb 19, John Leach wrote: > > I just tested a switch from Percona Server 5.6 to MariaDB 10.0.16 and > hit a problem with socket authentication. ... > Percona renamed it to auth_socket, matching the actual library filename > auth_socket.so and MariaDB chose unix_socket, but keeping th

[Maria-developers] auth_socket/unix_socket auth plugin naming incompatibility with Percona Server

2015-02-19 Thread John Leach
Hi, I just tested a switch from Percona Server 5.6 to MariaDB 10.0.16 and hit a problem with socket authentication. I had it set up to auth root using the auth_socket plugin, but when I switched to MariaDB I could no longer login as root. I get this error from the client: ERROR 1524 (HY000): Plu

Re: [Maria-developers] PLEASE REVIEW: (MDEV-7574) Security definer views don't work with CONNECT ODBC tables

2015-02-19 Thread Sergei Golubchik
Hi, Alexander! On Feb 17, Alexander Barkov wrote: > > From what I understood, FILE_ACL is written (among the other > privileges) into thd->security_ctx.privilege in > TABLE_LIST::prepare_security(). In case of a DEFINER view, > thd->security_ctx.privilege is filled exactly with the definer > priv

Re: [Maria-developers] binlog_row_image

2015-02-19 Thread Kristian Nielsen
Rasmus Johansson writes: > Is anyone familiar with binlog_row_image in MySQL 5.6, would it make > sense to add it to MariaDB? Sure it makes sense. Adding the slave side, where the slave is able to process the new smaller row images, is required to be able to replicate from a MySQL 5.6 master ru

[Maria-developers] binlog_row_image

2015-02-19 Thread Rasmus Johansson
Hi, Is anyone familiar with binlog_row_image in MySQL 5.6, would it make sense to add it to MariaDB? I received a request for it where they have a wide table with high write activity and only a few fields are updated for each DML. Apparently binlog_row_image would be efficient in this case. Ther