mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-22660 System versioning cleanups
- Cleaned up Vers_parse_info::check_sys_fields(); - Renamed VERS_SYS_START_FLAG, VERS_SYS_END_FLAG to VERS_ROW_START, VERS_ROW_END.
This commit is contained in:
@ -8322,7 +8322,7 @@ bool LEX::last_field_generated_always_as_row_start()
|
||||
Vers_parse_info &info= vers_get_info();
|
||||
Lex_ident *p= &info.as_row.start;
|
||||
return last_field_generated_always_as_row_start_or_end(p, "START",
|
||||
VERS_SYS_START_FLAG);
|
||||
VERS_ROW_START);
|
||||
}
|
||||
|
||||
|
||||
@ -8331,7 +8331,7 @@ bool LEX::last_field_generated_always_as_row_end()
|
||||
Vers_parse_info &info= vers_get_info();
|
||||
Lex_ident *p= &info.as_row.end;
|
||||
return last_field_generated_always_as_row_start_or_end(p, "END",
|
||||
VERS_SYS_END_FLAG);
|
||||
VERS_ROW_END);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user