Re: [Maria-developers] Debug interface

2013-06-25 Thread James Briggs
Roberto: Also consider using DTrace on the Mac or Solaris, and the oprofile linux module. Later, James. On Tue, 6/25/13, Hartmut Holzgraefe hart...@skysql.com wrote: Subject: Re: [Maria-developers] Debug interface To:

Re: [Maria-developers] Rev 3517: MySQL 5.6.10 performance schema: merge of host_cache table

2013-06-25 Thread Sergei Golubchik
Hi, Timour! Just few comments On Jun 25, tim...@askmonty.org wrote: revno: 3517 revision-id: tim...@askmonty.org-20130621115451-tyxgeeroqyxwz7gn parent: mo...@askmonty.org-20130623091543-zqu5dvhry6okna6g committer:

Re: [Maria-developers] MDEV-4472 (audit plugin)

2013-06-25 Thread Sergei Golubchik
Hi, Alexey! On Jun 25, Alexey Botchkov wrote: Modified version of the file is in the same place: Ok What's missing in it as i'm not sure how it can be done: - No server host/ip in the log. How get that information? What server host/ip? I mean i don't know about the server's

Re: [Maria-developers] query cache issue

2013-06-25 Thread Roberto Spadim
it's a memory in client side with query_parameters (sql_mode, query text, schema used, and others flags that change results) + query_results example in php $query_cache= array( sql_mode=12341234124124;SELECT * from query_Table = array( tables_used=array(query_Table),

Re: [Maria-developers] Implementing implicit primary key in mysql server

2013-06-25 Thread Lixun Peng
Hi Jeremy, Thank you for your suggestion. I also want to just add the PK field for custom automatically, but some of our customs can't accept it. Because they are using SELECT * FROM table or INSERT INTO table VALUES(...) , if I add a visible PK for them, SELECT * will show this value,