PurgeStatement
class PurgeStatement extends Statement (View source)
PURGE
statement.
PURGE { BINARY | MASTER } LOGS { TO 'log_name' | BEFORE datetime_expr }
Properties
static array<string,int|array<int,int|string>> | $OPTIONS | Options for this statement. |
from Statement |
static array<string,array<int,int|string>> | $CLAUSES | The clauses of this statement, in order. |
from Statement |
static array<string,int|array<int,int|string>> | $END_OPTIONS | from Statement | |
OptionsArray|null | $options | The options of this query. |
from Statement |
int|null | $first | The index of the first token used in this statement. |
from Statement |
int|null | $last | The index of the last token used in this statement. |
from Statement |
string|null | $log_type | The type of logs |
|
string|null | $end_option | The end option of this query. |
|
string|null | $end_expr | The end expr of this query. |
Methods
No description
Function called before the token is processed.
Function called after the token was processed.
Validates the order of the clauses in parsed statement Ideally this should be called after successfully completing the parsing of each statement.
Details
__construct(Parser|null $parser = null, TokensList|null $list = null)
No description
string
build()
No description
void
parse(Parser $parser, TokensList $list)
No description
void
before(Parser $parser, TokensList $list, Token $token)
Function called before the token is processed.
void
after(Parser $parser, TokensList $list, Token $token)
Function called after the token was processed.
array<string,array<int,int|string>>
getClauses()
Gets the clauses of this statement.
string
__toString()
Builds the string representation of this statement.
bool
validateClauseOrder(Parser $parser, TokensList $list)
Validates the order of the clauses in parsed statement Ideally this should be called after successfully completing the parsing of each statement.