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
f157f01e
Commit
f157f01e
authored
Aug 25, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wording changed (postreview fix)
mysql-test/r/view.result: wording changed sql/sql_base.cc: wording changed
parent
f766837f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/r/view.result
mysql-test/r/view.result
+1
-1
sql/sql_base.cc
sql/sql_base.cc
+1
-1
No files found.
mysql-test/r/view.result
View file @
f157f01e
...
...
@@ -1049,7 +1049,7 @@ drop view v1;
create table t1 (col1 int,col2 char(22));
create view v1 as select * from t1;
create index i1 on v1 (col1);
ERROR HY000: 'test.v1' is not BAS
IC
TABLE
ERROR HY000: 'test.v1' is not BAS
E
TABLE
drop view v1;
drop table t1;
CREATE VIEW v1 (f1,f2,f3,f4) AS SELECT connection_id(), pi(), current_user(), version();
...
...
sql/sql_base.cc
View file @
f157f01e
...
...
@@ -3242,7 +3242,7 @@ open_new_frm(const char *path, const char *alias,
{
if
(
table_desc
==
0
||
table_desc
->
required_type
==
FRMTYPE_TABLE
)
{
my_error
(
ER_WRONG_OBJECT
,
MYF
(
0
),
db
,
table_name
,
"BAS
IC
TABLE"
);
my_error
(
ER_WRONG_OBJECT
,
MYF
(
0
),
db
,
table_name
,
"BAS
E
TABLE"
);
goto
err
;
}
if
(
mysql_make_view
(
parser
,
table_desc
))
...
...
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