Re: [Maria-developers] Getting the columns from LEX or THD

2015-06-16 Thread sriram patil
Thank you Sergei. We need to think of a work-around now. On Mon, Jun 15, 2015 at 11:48 PM, Sergei Golubchik wrote: > Hi, Sriram! > > On Jun 14, Sriram Patil wrote: > > Hi all, > > > > I wanted to retrieve a tables columns i.e its schema definition when a > > query is executed. I figured out LEX

Re: [Maria-developers] Getting the columns from LEX or THD

2015-06-15 Thread Sergei Golubchik
Hi, Sriram! On Jun 14, Sriram Patil wrote: > Hi all, > > I wanted to retrieve a tables columns i.e its schema definition when a > query is executed. I figured out LEX and THD structures store these in > different variables for different queries. > > I wanted to get the same when a simple INSERT

[Maria-developers] Getting the columns from LEX or THD

2015-06-14 Thread sriram patil
Hi all, I wanted to retrieve a tables columns i.e its schema definition when a query is executed. I figured out LEX and THD structures store these in different variables for different queries. I wanted to get the same when a simple INSERT query is executed, e.g INSERT INTO VALUES(). Where can I