Re: [Maria-developers] [Commits] c285dbe: MDEV-5535: Cannot reopen temporary table

2016-06-08 Thread Nirbhay Choubey
Hi Serg! On Fri, Jun 3, 2016 at 7:20 AM, Sergei Golubchik wrote: > Hi, Nirbhay! > > On May 26, Nirbhay Choubey wrote: > > > > > +/* > > > > + Create a temporary table, open it and return the TABLE handle. > > > > + > > > > + @param hton [IN]Handlerton > >

Re: [Maria-developers] 56a2835: MDEV-5535: Cannot reopen temporary table

2016-06-08 Thread Nirbhay Choubey
Hi Serg! On Fri, Jun 3, 2016 at 4:10 PM, Sergei Golubchik wrote: > Hi, Nirbhay! > > Just a couple of questions/comments, see below. > > And please pay attention to Kristian's email about locking and parallel > replication. I don't think I can confidently review it in a patch,

Re: [Maria-developers] [Commits] c285dbe: MDEV-5535: Cannot reopen temporary table

2016-06-08 Thread Nirbhay Choubey
Hi Kristian! On Fri, Jun 3, 2016 at 7:53 AM, Kristian Nielsen wrote: > Sergei Golubchik writes: > > > On May 26, Nirbhay Choubey wrote: > > >> > > + if (wait_for_prior_commit()) > > Please call this method tmptable_wait_for_prior_commit() or

[Maria-developers] Unsubscribe

2016-06-08 Thread Abdul Hakeem
___ Mailing list: https://launchpad.net/~maria-developers Post to : maria-developers@lists.launchpad.net Unsubscribe : https://launchpad.net/~maria-developers More help : https://help.launchpad.net/ListHelp

Re: [Maria-developers] [Commits] 9a03e78: MDEV-5535: Cannot reopen temporary table

2016-06-08 Thread Sergei Golubchik
Hi, Nirbhay! On Jun 08, Nirbhay Choubey wrote: > revision-id: 9a03e780f179b575dc0d7be8de0c1731adf8726e > (mariadb-10.2.0-82-g9a03e78) > parent(s): 3826f59972f19791754c7ef542e9e4a9beb67004 > author: Nirbhay Choubey > committer: Nirbhay Choubey > timestamp: 2016-06-08 10:09:42 -0400 > message: >

Re: [Maria-developers] MATCH returns -1

2016-06-08 Thread Sergei Golubchik
Hi, Alexander! On Jun 08, Alexander Barkov wrote: > > This script: > > DROP TABLE IF EXISTS t1; > CREATE TABLE t1 (a VARCHAR(30), b DOUBLE); > INSERT INTO t1 values(' ', MATCH (a) AGAINST('' IN > BOOLEAN MODE)); > SELECT * FROM t1; > > returns: > >

Re: [Maria-developers] MATCH returns -1

2016-06-08 Thread Sachin Setia
Hello Sergei How can we solve this bug? Regards sachin On Wed, Jun 8, 2016 at 1:28 PM, Sergei Golubchik wrote: > Hi, Alexander! > > On Jun 08, Alexander Barkov wrote: > > > > This script: > > > > DROP TABLE IF EXISTS t1; > > CREATE TABLE t1 (a VARCHAR(30), b DOUBLE); > >

Re: [Maria-developers] GSoc weekly reports (Aggregate Functions)

2016-06-08 Thread Sergei Golubchik
Hi, Varun! On Jun 06, Varun Gupta wrote: > details > > 1) Added the field 'aggregate' to the proc table . > Order should be maintained for the fields added. Don't make it a YES/NO boolean. As MDEV-7773 says, we want to have window-aware aggregate functions some day. And while you're not doing

Re: [Maria-developers] MATCH returns -1

2016-06-08 Thread Alexander Barkov
Hi Sergei, On 06/08/2016 11:58 AM, Sergei Golubchik wrote: Hi, Alexander! On Jun 08, Alexander Barkov wrote: This script: DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a VARCHAR(30), b DOUBLE); INSERT INTO t1 values(' ', MATCH (a) AGAINST('' IN BOOLEAN MODE)); SELECT *

Re: [Maria-developers] MATCH returns -1

2016-06-08 Thread Sergei Golubchik
Hi, Alexander! On Jun 08, Alexander Barkov wrote: > > > >double Item_func_match::val_real() > >{ > > DBUG_ENTER("Item_func_match::val"); > > if (ft_handler == NULL) > >DBUG_RETURN(-1.0); > > > >> Is this a bug? > > I believe so! > > What should happen instead? > Should

[Maria-developers] MATCH returns -1

2016-06-08 Thread Alexander Barkov
Hello Sergei, This script: DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a VARCHAR(30), b DOUBLE); INSERT INTO t1 values(' ', MATCH (a) AGAINST('' IN BOOLEAN MODE)); SELECT * FROM t1; returns: +-+--+ | a | b|