stonedb icon indicating copy to clipboard operation
stonedb copied to clipboard

StoneDB is an Open-Source MySQL HTAP and MySQL-Native DataBase for OLTP, Real-Time Analytics, a counterpart of MySQLHeatWave. (https://stonedb.io)

Results 262 stonedb issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** Fix hard code on and more friendly in install_scripts/CMakeList.txt ``` SET (INSTALL_ENGINE "/stonedb57") SET (ENGINE_MYSQLDIR "${INSTALL_ENGINE}/install") install(FILES my.cnf DESTINATION ${ENGINE_MYSQLDIR}...

A-feature

### Describe the problem ``` ./mtr --suite=binlog binlog_unsafe --force --max-test-fail=0 --retry=0 ``` fail msg ``` [ 82%] binlog.binlog_unsafe 'stmt' w2 [ fail ] Test ended at 2022-08-02 18:35:00 CURRENT_TEST: binlog.binlog_unsafe...

A-bug

执行完Q18的语句,内存使用了135GB,分析究竟为何使用这么多 SQL语句: select c_name, c_custkey, o_orderkey, o_orderdate, o_totalprice, sum(l_quantity) from customer, orders, lineitem where o_orderkey in ( select l_orderkey from lineitem group by l_orderkey having sum(l_quantity) > 300 ) and...

A-question

### Describe the problem ``` CREATE TABLE t1 (name varchar(255))engine=stonedb; CREATE TABLE t2 (name varchar(255), n int, KEY (name(3)))engine=stonedb; INSERT INTO t1 VALUES ('ccc'), ('bb'), ('cc '), ('aa '), ('aa');...

A-bug

### Describe the problem 1. use tpch data 2. exec sql ` select sum(l_extendedprice) / 7.0 as avg_yearly from lineitem, part where p_partkey = l_partkey and p_brand = 'Brand#23' and...

A-bug

### Describe the problem 1. use tpch data 2. exec sql ` -- using default substitutions select c_name, c_custkey, o_orderkey, o_orderdate, o_totalprice, sum(l_quantity) from customer, orders, lineitem where o_orderkey in...

A-bug

mysql> show engines; +--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ | Engine | Support | Comment | Transactions | XA | Savepoints | +--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ | CSV | YES | CSV storage engine | NO | NO...

A-question

### Describe the problem 1. use tpch data 2. exec sql ` select s_acctbal, s_name, n_name, p_partkey, p_mfgr, s_address, s_phone, s_comment from part, supplier, partsupp, nation, region where p_partkey =...

A-bug

### Describe the problem error while loading shared libraried : libzstd.so.1 ### Expected behavior install success ### How To Reproduce tar zxvf stonedb-ee-5.7-v1.0.0.el7.aarch64.tar.gz cd install ./reinstall.sh ### Environment Server OS...

A-bug
good first issue

Can this mydumper tool restore the backed up MySQL data to stonedb? If yes, the original database table engine in MySQL is engine=innodb. How to restore the table engine in...

good first issue
A-question