wuwenchi opened a new pull request, #35499: URL: https://github.com/apache/doris/pull/35499
## Proposed changes issue: ``` create table tb1 (id int); select * from tb1; drop table tb1; ``` When executing these SQLs in a loop, there will be a probability of select failure and an error that the table cannot be found. ``` Statistics thread | create/drop/select table thread --------------------------------------------------------------------------------------------- | drop table --> initialized = false if (!initialized) { | get_tables(); | // There is no new table here yet | | create table ---> initialized = false initialized = true; | } | | select table ---> Because initialized is true at this time, the db will not be updated, | but there are no new tables in the db at this time, so an error will be reported here. ``` <!--Describe your changes.--> ## Further comments If this is a relatively large or complex change, kick off the discussion at [d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you chose the solution you did and what alternatives you considered, etc... -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org