Skip to content

Commit a2335b7

Browse files
waynexiaan3l
authored andcommitted
Typo fix in sql_sequence.cc
1 parent 4dc10ec commit a2335b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/sql_sequence.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ bool sequence_definition::check_and_adjust(bool set_reserved_until)
8888

8989
/*
9090
If min_value is not set, set it to LONGLONG_MIN or 1, depending on
91-
increment
91+
real_increment
9292
*/
9393
if (!(used_fields & seq_field_used_min_value))
9494
min_value= real_increment < 0 ? LONGLONG_MIN+1 : 1;
9595

9696
/*
97-
If min_value is not set, set it to LONGLONG_MAX or -1, depending on
97+
If max_value is not set, set it to LONGLONG_MAX or -1, depending on
9898
real_increment
9999
*/
100100
if (!(used_fields & seq_field_used_max_value))

0 commit comments

Comments
 (0)