Commit 328298b6 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msi: Add a FIXME for join queries.

parent 1d46cdf1
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment