You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we pre-allocate the table id before starting the procedure of creating a table because the create table operation needs to return the table id to the Frontend. However, procedures cannot return a value before. Now that procedures support returning values, we should apply for the table id within the procedure. This way, it can avoid wasting table ids due to concurrent table creation.
What type of enhancement is this?
Tech debt reduction
What does the enhancement do?
Currently, we pre-allocate the table id before starting the procedure of creating a table because the create table operation needs to return the table id to the Frontend. However, procedures cannot return a value before. Now that procedures support returning values, we should apply for the table id within the procedure. This way, it can avoid wasting table ids due to concurrent table creation.
Related PR #3232
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: