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

### Describe the problem ``` create table t1 (a int not null auto_increment primary key)engine=stonedb; insert into t1 values (); insert into t1 values (); insert into t1 values ();...

A-bug

**Is your feature request related to a problem? Please describe.** **Describe the solution you'd like** **Describe alternatives you've considered** **Additional context** Implement master-slave replication of binlog in row format of...

A-feature

## Summary about this PR Issue Number: close #389 ## Tests Check List - [ ] Unit test - [ ] Integration test - [ ] Manual test (add detailed...

PR-bug

### Describe the problem https://stonedb.io/zh/docs/developer-guide/compiling-methods/compile-using-docker/ Compile StoneDB in a Docker Container docs optimization ### Expected behavior _No response_ ### How To Reproduce _No response_ ### Environment _No response_ ### Are...

A-bug

**Is your feature request related to a problem? Please describe.** **Describe the solution you'd like** need to support temporary table **Describe alternatives you've considered** **Additional context** now,can create temporary table...

A-feature

### Describe the problem Mtr test fail suite : main (group_concat_max_len warning need fix) sys_vars binlog rpl opt_trace parts query_rewrite_plugins sysschema ### Expected behavior Completed: All * tests were successful....

A-bug
B-testing

### Describe the problem ``` CREATE TABLE t1 (sku int PRIMARY KEY, pr int)engine=stonedb; CREATE TABLE t2 (sku int PRIMARY KEY, sppr int, name varchar(255))engine=stonedb; INSERT INTO t1 VALUES (10,...

A-bug

### Describe the problem ``` mysql> show tables; +----------------+ | Tables_in_test | +----------------+ | t | +----------------+ 1 row in set (0.00 sec) mysql> delete from t; Query OK, 0...

A-bug

### Describe the problem ``` CREATE TABLE `abcÿdef` (i int)engine=tianmu; INSERT INTO `abcÿdef` VALUES (1); INSERT INTO abcÿdef VALUES (2); SELECT * FROM `abcÿdef`; SELECT * FROM abcÿdef; ##The error...

A-bug

### Describe the problem ``` CREATE TABLE t1 (a INT NOT NULL, b INT)engine=stonedb; INSERT INTO t1 VALUES (1, 1); SELECT * FROM t1 WHERE (a=a AND a=a) OR b...

A-bug