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

fix(mtr):fix sysschema mtr fix(mtr):fix rpl mtr result、pump fix and mv rpl_drop_scheduled_event fix(mtr):fix mtr query_rewrite_plugins fix(mtr):fix parts mtr test fix(mtr):fix opt_trace test fix(mtr):fix binlog suite result and mv binlog_unsafe to test/binlog...

PR-bug

**Is your feature request related to a problem? Please describe.** >Delete the data of a single table and the whole table **Describe the solution you'd like** **Describe alternatives you've considered**...

A-feature

>We need to support delete statement to improve capabilities ## Functional decomposition - #344 - #345 - #347 - #348

A-feature

## Summary about this PR After fix abs path during install, you can set path using `install_target=`YOUR_PATHl`, for default we use `install_target="`pwd`/../build/install`" in scripts/stonedb_build.sh or just set path using cmake...

PR-feature

### Describe the problem ``` 1、create database syw_mtr; 2、use syw_mtr; 3、CREATE TABLE t1 (f1 VARCHAR(255) CHARACTER SET utf8)engine=stonedb; 4、CREATE TABLE t2 AS SELECT LEFT(f1,171) AS f2 FROM t1 UNION SELECT...

A-bug
prio: high

### Describe the problem ``` CREATE TABLE `A` ( `pk` int(11) NOT NULL AUTO_INCREMENT, `date_key` date NOT NULL, `date_nokey` date NOT NULL, `datetime_key` datetime NOT NULL, `int_nokey` int(11) NOT NULL,...

A-bug
prio: normal

### Describe the problem mysql> show create table t_user_innodb\G *************************** 1. row *************************** Table: t_user_innodb Create Table: CREATE TABLE `t_user_innodb` ( `id` int(11) NOT NULL AUTO_INCREMENT, `first_name` varchar(10) NOT NULL,...

A-bug

The gravity tool supports data filtering transformation, re command column transformation and delete column transformation when synchronizing. What I want to ask is whether it also supports the deletion and...

A-question

hi,Where can I download the.tar.gz file of version 5.7 directly?

A-question

### Describe the problem ``` CREATE TABLE t1 ( ID_with_null int NULL, ID_better int NOT NULL, INDEX idx1 (ID_with_null), INDEX idx2 (ID_better) )engine=stonedb; INSERT INTO t2 VALUES (1,1), (2,1), (null,3),...

A-bug