fix %destructor of table_n
This commit is contained in:
parent
4e3be32ba0
commit
7da22a8bb1
File diff suppressed because it is too large
Load Diff
|
@ -133,7 +133,8 @@ int yyerror(YYLTYPE* llocp, SQLParserResult* result, yyscan_t scanner, const cha
|
||||||
/*********************************
|
/*********************************
|
||||||
** Descrutor symbols
|
** Descrutor symbols
|
||||||
*********************************/
|
*********************************/
|
||||||
%destructor { } <fval> <ival> <uval> <bval> <order_type> <table_n>
|
%destructor { } <fval> <ival> <uval> <bval> <order_type>
|
||||||
|
%destructor { free( ($$.name) ); free( ($$.schema) ); } <table_n>
|
||||||
%destructor { free( ($$) ); } <sval>
|
%destructor { free( ($$) ); } <sval>
|
||||||
%destructor {
|
%destructor {
|
||||||
if (($$) != nullptr) {
|
if (($$) != nullptr) {
|
||||||
|
|
Loading…
Reference in New Issue