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
bb529506
Commit
bb529506
authored
Nov 14, 2004
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make information schema libmysqld compatible
fixed typo
parent
25d0f827
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
6 deletions
+14
-6
sql/handler.cc
sql/handler.cc
+2
-2
sql/sql_acl.cc
sql/sql_acl.cc
+12
-4
No files found.
sql/handler.cc
View file @
bb529506
...
...
@@ -517,8 +517,8 @@ int ha_commit_trans(THD *thd, THD_TRANS* trans)
if
((
error
=
ndbcluster_commit
(
thd
,
trans
->
ndb_tid
)))
{
if
(
error
==
-
1
)
my_message
_
(
ER_ERROR_DURING_COMMIT
,
ER
(
ER_ERROR_DURING_COMMIT
),
MYF
(
0
));
my_message
(
ER_ERROR_DURING_COMMIT
,
ER
(
ER_ERROR_DURING_COMMIT
),
MYF
(
0
));
error
=
1
;
}
if
(
trans
==
&
thd
->
transaction
.
all
)
...
...
sql/sql_acl.cc
View file @
bb529506
...
...
@@ -3985,8 +3985,10 @@ int fill_schema_user_privileges(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
#endif
DBUG_RETURN
(
0
);
#else
return
(
0
);
#endif
}
...
...
@@ -4033,8 +4035,10 @@ int fill_schema_schema_privileges(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
#endif
DBUG_RETURN
(
0
);
#else
return
(
0
);
#endif
}
...
...
@@ -4078,8 +4082,10 @@ int fill_schema_table_privileges(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
#endif
DBUG_RETURN
(
0
);
#else
return
(
0
);
#endif
}
...
...
@@ -4135,8 +4141,10 @@ int fill_schema_column_privileges(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
#endif
DBUG_RETURN
(
0
);
#else
return
(
0
);
#endif
}
...
...
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