Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0fd49432
Commit
0fd49432
authored
Oct 20, 2011
by
Bernhard Loos
Committed by
Alexandre Julliard
Oct 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Get rid of JOINVIEW.
parent
4383aafa
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
15 deletions
+12
-15
Makefile.in
dlls/msi/Makefile.in
+0
-1
join.c
dlls/msi/join.c
+0
-0
query.h
dlls/msi/query.h
+0
-2
sql.y
dlls/msi/sql.y
+12
-12
No files found.
dlls/msi/Makefile.in
View file @
0fd49432
...
@@ -24,7 +24,6 @@ C_SRCS = \
...
@@ -24,7 +24,6 @@ C_SRCS = \
handle.c
\
handle.c
\
insert.c
\
insert.c
\
install.c
\
install.c
\
join.c
\
media.c
\
media.c
\
msi.c
\
msi.c
\
msi_main.c
\
msi_main.c
\
...
...
dlls/msi/join.c
deleted
100644 → 0
View file @
4383aafa
This diff is collapsed.
Click to expand it.
dlls/msi/query.h
View file @
0fd49432
...
@@ -123,8 +123,6 @@ UINT UPDATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR table,
...
@@ -123,8 +123,6 @@ UINT UPDATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR table,
UINT
DELETE_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
,
MSIVIEW
*
table
)
DECLSPEC_HIDDEN
;
UINT
DELETE_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
,
MSIVIEW
*
table
)
DECLSPEC_HIDDEN
;
UINT
JOIN_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
,
LPWSTR
tables
)
DECLSPEC_HIDDEN
;
UINT
ALTER_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
,
LPCWSTR
name
,
column_info
*
colinfo
,
int
hold
)
DECLSPEC_HIDDEN
;
UINT
ALTER_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
,
LPCWSTR
name
,
column_info
*
colinfo
,
int
hold
)
DECLSPEC_HIDDEN
;
UINT
STREAMS_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
)
DECLSPEC_HIDDEN
;
UINT
STREAMS_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
)
DECLSPEC_HIDDEN
;
...
...
dlls/msi/sql.y
View file @
0fd49432
...
@@ -490,6 +490,18 @@ from:
...
@@ -490,6 +490,18 @@ from:
PARSER_BUBBLE_UP_VIEW( sql, $$, where );
PARSER_BUBBLE_UP_VIEW( sql, $$, where );
}
}
| TK_FROM tablelist
{
SQL_input* sql = (SQL_input*) info;
MSIVIEW* where = NULL;
UINT r;
r = WHERE_CreateView( sql->db, &where, $2, NULL );
if( r != ERROR_SUCCESS )
YYABORT;
PARSER_BUBBLE_UP_VIEW( sql, $$, where );
}
;
;
fromtable:
fromtable:
...
@@ -505,18 +517,6 @@ fromtable:
...
@@ -505,18 +517,6 @@ fromtable:
PARSER_BUBBLE_UP_VIEW( sql, $$, table );
PARSER_BUBBLE_UP_VIEW( sql, $$, table );
}
}
| TK_FROM tablelist
{
SQL_input* sql = (SQL_input*) info;
MSIVIEW* join = NULL;
UINT r;
r = JOIN_CreateView( sql->db, &join, $2 );
if( r != ERROR_SUCCESS )
YYABORT;
PARSER_BUBBLE_UP_VIEW( sql, $$, join );
}
;
;
tablelist:
tablelist:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment