hustjieke

Results 33 comments of hustjieke

Now mtr in 5.7 is not work, would you make a pr to fix this?

Wrong execute plan on and contition: ``` mysql> explain SELECT * FROM t1 WHERE a='2001-01-01 00:00:00' AND a=b AND b='2001-01-01'\G *************************** 1. row *************************** id: 1 select_type: SIMPLE table: t1...

We are working on upgrading gcc to support higher gcc version https://github.com/stoneatom/stonedb/issues/12 , there are still some remaining problems and will be resolved soon. Or you can compile stonedb in...

For TP we send to mysql plugin engine innodb, For AP we send to our new mysql plugin engine stonedb column engine, both innodb and stonedb column engine use mysql...

In MySQL docs: https://dev.mysql.com/doc/refman/5.7/en/binary-installation.html ``` $> groupadd mysql $> useradd -r -g mysql -s /bin/false mysql ```

After useradd mysql, exeute install.sh again, mysqld start successfully, but got error log in mysqld.log and stonedb.log: ``` 2022-06-21 03:10:40 213294 [ERROR] Can't open and lock privilege tables: Table 'mysql.servers'...

Good question, we have a build file: https://github.com/stoneatom/stonedb/blob/stonedb-5.6/scripts/stonedb_build.sh and the docker building env is here: https://stonedb.io/docs/developer-guide/compiling-methods/compile-using-docker/ Maybe the links above should be easier for users to see, a good fisrt...

> Congratulations !!! Join the open source database family! Thanks, we look forward to doing sth on mysql HTAP and anyone can join on us to work togother!

With both `stonedb_insert_delayed=0/1`: ``` mysql> select * from t2; +-------+------+ | name | n | +-------+------+ | bb | 1 | | aa | 2 | | cc | 3...