Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
2e7f47c6
Commit
2e7f47c6
authored
Aug 10, 2006
by
evgen@moonbone.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_base.cc, table.cc:
After merge fix
parent
0d699601
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
sql/sql_base.cc
sql/sql_base.cc
+4
-3
sql/table.cc
sql/table.cc
+0
-3
No files found.
sql/sql_base.cc
View file @
2e7f47c6
...
...
@@ -2657,14 +2657,15 @@ retry:
error
=
(
int
)
open_new_frm
(
thd
,
share
,
alias
,
(
uint
)
(
HA_OPEN_KEYFILE
|
HA_OPEN_RNDFILE
|
HA_GET_INDEX
|
HA_TRY_READ_ONLY
),
READ_KEYINFO
|
COMPUTE_TYPES
|
EXTRA_RECORD
,
READ_KEYINFO
|
COMPUTE_TYPES
|
EXTRA_RECORD
|
(
flags
&
OPEN_VIEW_NO_PARSE
),
thd
->
open_options
,
entry
,
table_list
,
mem_root
,
(
flags
&
OPEN_VIEW_NO_PARSE
))
);
mem_root
);
if
(
error
)
goto
err
;
/* TODO: Don't free this */
release_table_share
(
share
,
RELEASE_NORMAL
);
DBUG_RETURN
(
0
);
DBUG_RETURN
(
(
flags
&
OPEN_VIEW_NO_PARSE
)
?
-
1
:
0
);
}
while
((
error
=
open_table_from_share
(
thd
,
share
,
alias
,
...
...
sql/table.cc
View file @
2e7f47c6
...
...
@@ -352,9 +352,6 @@ int open_table_def(THD *thd, TABLE_SHARE *share, uint db_flags)
}
else
goto
err
;
if
(
prgflag
&
OPEN_VIEW_NO_PARSE
)
goto
err
;
/* No handling of text based files yet */
if
(
table_type
==
1
)
...
...
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