摘要:
mysql列存储引擎-耗尽磁盘空间-记录
关联ISSUE: https://github.com/stoneatom/stonedb/issues/1110
上下文关联: 2022-12-13 mysql列存储引擎-GroupBy查询出错-记录_帝尊悟世的博客-优快云博客
插入数据脚本:
#!/bin/bash
while true
do
echo mysql -D d105 -e "insert into A select * from A;"
mysql -D d105 -e "insert into A select * from A;"
echo mysql -D d105 -e "insert into B select * from B;"
mysql -D d105 -e "insert into B select * from B;"
done