Skip to content

Commit

Permalink
[CBRD-24670] Fix simple typo in btree_find_next_index_record. (CUBRID…
Browse files Browse the repository at this point in the history
…#4128)

http://jira.cubrid.org/browse/CBRD-24670

Purpose
Fix some typos of comment.
  • Loading branch information
hyahong authored Mar 6, 2023
1 parent 001d9f0 commit 129a0da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/storage/btree.c
Original file line number Diff line number Diff line change
Expand Up @@ -15533,10 +15533,10 @@ btree_find_next_index_record (THREAD_ENTRY * thread_p, BTREE_SCAN * bts)
*
* case 1: P_page == NULL, C_page == first_page x do not fix 1 next page
* case 2: P_page == first_page, C_page == NULL x can't fix 1 next page
* case 3: P_page == first_page, C_page != first_pag o fix 1 next
* case 3: P_page == first_page, C_page != first_page o fix 1 next
* case 4: P_page == NULL, C_page == NULL o can't fix N next, unfix N-1 prev
* case 5: P_page == NULL, C_page != first_page o fix N next, unfix N-1 prev
* other case: imppossible (assert)
* other case: impossible (assert)
*
* in case of 3, 4, 5, unfix first_page
*/
Expand Down

0 comments on commit 129a0da

Please sign in to comment.