msi: Add a FIXME for join queries.

This commit is contained in:
Mike McCormack 2006-07-26 11:17:26 +09:00 committed by Alexandre Julliard
parent 1d46cdf11a
commit 328298b64f
1 changed files with 12 additions and 2 deletions

View File

@ -126,7 +126,7 @@ static struct expr * EXPR_wildcard( void *info );
%type <string> table id
%type <column_list> selcollist column column_and_type column_def table_def
%type <column_list> column_assignment update_assign_list constlist
%type <query> query from fromtable selectfrom unorderedsel
%type <query> query multifrom from fromtable selectfrom unorderedsel
%type <query> oneupdate onedelete oneselect onequery onecreate oneinsert
%type <expr> expr val column_val const_val
%type <column_type> column_type data_type data_type_l data_count
@ -369,7 +369,7 @@ unorderedsel:
;
selectfrom:
selcollist from
selcollist multifrom
{
SQL_input* sql = (SQL_input*) info;
UINT r;
@ -401,6 +401,16 @@ selcollist:
}
;
multifrom:
from
| TK_FROM table TK_COMMA table TK_WHERE expr
{
SQL_input* sql = (SQL_input*) info;
FIXME("join query %s\n", debugstr_w(sql->command));
YYABORT;
}
;
from:
fromtable
| fromtable TK_WHERE expr