MySQL 8.4.0
Source Code Documentation
Table_exists_result Struct Reference

Struct for representing the result of checking if a table exists before trying to create it. More...

Public Attributes

bool m_table_exists
 true if the table already exists More...
 
bool m_error
 true if my_error() has been called and an error must be propagated. More...
 

Detailed Description

Struct for representing the result of checking if a table exists before trying to create it.

The result has two different dimensions; if the table actually exists, and if an error occurred. If the table exists m_error will still be false if this is CREATE IF NOT EXISTS.

Member Data Documentation

◆ m_error

bool Table_exists_result::m_error

true if my_error() has been called and an error must be propagated.

◆ m_table_exists

bool Table_exists_result::m_table_exists

true if the table already exists


The documentation for this struct was generated from the following file: