Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/processor_sql/parser/sql-parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "sql_expression.h"
#include "parser/sql_parser.h"

extern int yylex();
extern int yylex(YYSTYPE * yylval_param , yyscan_t yyscanner);

void yyerror (struct sql_query *query, void *scanner, const char *str)
{
Expand Down
2 changes: 1 addition & 1 deletion src/record_accessor/ra.y
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "ra_parser.h"
#include "ra_lex.h"

extern int flb_ra_lex();
extern int flb_ra_lex(YYSTYPE * yylval_param , yyscan_t yyscanner);

void flb_ra_error(struct flb_ra_parser *rp, const char *query, void *scanner,
const char *str)
Expand Down
2 changes: 1 addition & 1 deletion src/stream_processor/parser/sql.y
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "sql_parser.h"
#include "sql_lex.h"

extern int yylex();
extern int yylex(YYSTYPE * yylval_param , yyscan_t yyscanner);

void yyerror(struct flb_sp_cmd *cmd, const char *query, void *scanner, const char *str)
{
Expand Down
Loading