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
16f77ce9
Commit
16f77ce9
authored
Jan 19, 2005
by
tulin@build.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge build.mysql.com:/users/tulin/mysql-5.0
into build.mysql.com:/users/tulin/mysql-5.0-ndb
parents
c24b6aa1
26d8fc49
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
3 deletions
+20
-3
config/ac-macros/ha_ndbcluster.m4
config/ac-macros/ha_ndbcluster.m4
+6
-1
configure.in
configure.in
+0
-1
mysql-test/r/view.result
mysql-test/r/view.result
+6
-0
mysql-test/t/view.test
mysql-test/t/view.test
+7
-0
sql/sql_base.cc
sql/sql_base.cc
+1
-1
No files found.
config/ac-macros/ha_ndbcluster.m4
View file @
16f77ce9
...
...
@@ -61,6 +61,11 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
--without-ndb-debug Disable special ndb debug features],
[ndb_debug="$withval"],
[ndb_debug="default"])
AC_ARG_WITH([ndb-ccflags],
[
--with-ndb-ccflags Extra CC options for ndb compile],
[ndb_cxxflags_fix=$withval],
[ndb_cxxflags_fix=])
AC_MSG_CHECKING([for NDB Cluster options])
AC_MSG_RESULT([])
...
...
configure.in
View file @
16f77ce9
...
...
@@ -361,7 +361,6 @@ AC_SUBST(INSTALL_SCRIPT)
export
CC CXX CFLAGS LD LDFLAGS AR
ndb_cxxflags_fix
=
if
test
"
$GXX
"
=
"yes"
then
# mysqld requires -fno-implicit-templates.
...
...
mysql-test/r/view.result
View file @
16f77ce9
...
...
@@ -1724,3 +1724,9 @@ a b
301 0
drop view v3;
drop tables t1,t2;
create table t1(f1 int);
create view v1 as select f1 from t1;
select * from v1 where F1 = 1;
f1
drop view v1;
drop table t1;
mysql-test/t/view.test
View file @
16f77ce9
...
...
@@ -1654,3 +1654,10 @@ select * from v3;
drop
view
v3
;
drop
tables
t1
,
t2
;
# View field names should be case insensitive
create
table
t1
(
f1
int
);
create
view
v1
as
select
f1
from
t1
;
select
*
from
v1
where
F1
=
1
;
drop
view
v1
;
drop
table
t1
;
sql/sql_base.cc
View file @
16f77ce9
...
...
@@ -2120,7 +2120,7 @@ find_field_in_table(THD *thd, TABLE_LIST *table_list,
Field_translator
*
trans
=
table_list
->
field_translation
;
for
(
uint
i
=
0
;
i
<
num
;
i
++
)
{
if
(
strcmp
(
trans
[
i
].
name
,
name
)
==
0
)
if
(
!
my_strcasecmp
(
system_charset_info
,
trans
[
i
].
name
,
name
)
)
{
#ifndef NO_EMBEDDED_ACCESS_CHECKS
if
(
check_grants_view
&&
...
...
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