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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
917ac423
Commit
917ac423
authored
Aug 10, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_base.cc, table.cc:
After merge fix sql/table.cc: After merge fix sql/sql_base.cc: After merge fix
parent
f0601c2e
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 @
917ac423
...
...
@@ -2657,14 +2657,15 @@ static int open_unireg_entry(THD *thd, TABLE *entry, TABLE_LIST *table_list,
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 @
917ac423
...
...
@@ -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