mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
2c2b06ad75
symbols. Use it for all definitions of non-static variables and functions. lexyy.c, make_flex.sh: Declare yylex as UNIV_INTERN, not static. It is referenced from pars0grm.c. Actually, according to nm .libs/ha_innodb.so|grep -w '[ABCE-TVXYZ]' the following symbols are still global: * The vtable for class ha_innodb * pars0grm.c: The function yyparse() and the variables yychar, yylval, yynerrs The required changes to the Bison-generated file pars0grm.c will be addressed in a separate commit, which will add a script similar to make_flex.sh. The class ha_innodb is renamed from class ha_innobase by a #define. Thus, there will be no clash with the builtin InnoDB. However, there will be some overhead for invoking virtual methods of class ha_innodb. Ideas for making the vtable hidden are welcome. -fvisibility=hidden is not available in GCC 3.
76 lines
1.6 KiB
Text
76 lines
1.6 KiB
Text
/******************************************************
|
|
Data dictionary creation and booting
|
|
|
|
(c) 1996 Innobase Oy
|
|
|
|
Created 4/18/1996 Heikki Tuuri
|
|
*******************************************************/
|
|
|
|
/**************************************************************************
|
|
Writes the current value of the row id counter to the dictionary header file
|
|
page. */
|
|
UNIV_INTERN
|
|
void
|
|
dict_hdr_flush_row_id(void);
|
|
/*=======================*/
|
|
|
|
|
|
/**************************************************************************
|
|
Returns a new row id. */
|
|
UNIV_INLINE
|
|
dulint
|
|
dict_sys_get_new_row_id(void)
|
|
/*=========================*/
|
|
/* out: the new id */
|
|
{
|
|
dulint id;
|
|
|
|
mutex_enter(&(dict_sys->mutex));
|
|
|
|
id = dict_sys->row_id;
|
|
|
|
if (0 == (ut_dulint_get_low(id) % DICT_HDR_ROW_ID_WRITE_MARGIN)) {
|
|
|
|
dict_hdr_flush_row_id();
|
|
}
|
|
|
|
UT_DULINT_INC(dict_sys->row_id);
|
|
|
|
mutex_exit(&(dict_sys->mutex));
|
|
|
|
return(id);
|
|
}
|
|
|
|
/**************************************************************************
|
|
Reads a row id from a record or other 6-byte stored form. */
|
|
UNIV_INLINE
|
|
dulint
|
|
dict_sys_read_row_id(
|
|
/*=================*/
|
|
/* out: row id */
|
|
byte* field) /* in: record field */
|
|
{
|
|
#if DATA_ROW_ID_LEN != 6
|
|
# error "DATA_ROW_ID_LEN != 6"
|
|
#endif
|
|
|
|
return(mach_read_from_6(field));
|
|
}
|
|
|
|
/**************************************************************************
|
|
Writes a row id to a record or other 6-byte stored form. */
|
|
UNIV_INLINE
|
|
void
|
|
dict_sys_write_row_id(
|
|
/*==================*/
|
|
byte* field, /* in: record field */
|
|
dulint row_id) /* in: row id */
|
|
{
|
|
#if DATA_ROW_ID_LEN != 6
|
|
# error "DATA_ROW_ID_LEN != 6"
|
|
#endif
|
|
|
|
mach_write_to_6(field, row_id);
|
|
}
|
|
|
|
|