MySQL 9.1.0
Source Code Documentation
|
Contains classes representing SQL-data change statements. More...
#include "sql/sql_data_change.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_sys.h"
#include "sql/current_thd.h"
#include "sql/field.h"
#include "sql/item.h"
#include "sql/sql_class.h"
#include "sql/sql_list.h"
#include "sql/table.h"
Functions | |
static bool | allocate_column_bitmap (TABLE *table, MY_BITMAP **bitmap) |
Allocates and initializes a MY_BITMAP bitmap, containing one bit per column in the table. More... | |
Contains classes representing SQL-data change statements.
Currently the only data change functionality implemented here is function defaults.
Allocates and initializes a MY_BITMAP bitmap, containing one bit per column in the table.
The table THD's MEM_ROOT is used to allocate memory.
table | The table whose columns should be used as a template for the bitmap. | |
[out] | bitmap | A pointer to the allocated bitmap. |
false | Success. |
true | Memory allocation error. |