matrixone icon indicating copy to clipboard operation
matrixone copied to clipboard

fix bug: get deleted db when autocommit=0

Open ouyuanning opened this issue 11 months ago • 0 comments

What type of PR is this?

  • [ ] API-change
  • [x] BUG
  • [ ] Improvement
  • [ ] Documentation
  • [ ] Feature
  • [ ] Test and CI
  • [ ] Code Refactoring

Which issue(s) this PR fixes:

issue #14878

What this PR does / why we need it:

fix bug: get deleted db when autocommit=0 bug repro:

create database db1;
set autocommit=0;
drop database db1;
show databases;  // return db list will contains db1

ouyuanning avatar Mar 14 '24 01:03 ouyuanning