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
be1d522d
Commit
be1d522d
authored
Oct 12, 2004
by
timour@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/timka/mysql/src/5.0-virgin
into mysql.com:/home/timka/mysql/src/5.0-1724
parents
f23b30a6
8be26469
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
mysql-test/r/view.result
mysql-test/r/view.result
+1
-1
server-tools/instance-manager/Makefile.am
server-tools/instance-manager/Makefile.am
+1
-1
server-tools/instance-manager/mysqlmanager.cc
server-tools/instance-manager/mysqlmanager.cc
+2
-0
sql/sql_show.cc
sql/sql_show.cc
+1
-1
No files found.
mysql-test/r/view.result
View file @
be1d522d
...
@@ -139,7 +139,7 @@ v4
...
@@ -139,7 +139,7 @@ v4
v5
v5
v6
v6
show full tables;
show full tables;
Tables_in_test
t
able_type
Tables_in_test
T
able_type
t1 BASE TABLE
t1 BASE TABLE
v1 VIEW
v1 VIEW
v2 VIEW
v2 VIEW
...
...
server-tools/instance-manager/Makefile.am
View file @
be1d522d
...
@@ -11,7 +11,7 @@ liboptions_a_CPPFLAGS= $(CPPFLAGS) \
...
@@ -11,7 +11,7 @@ liboptions_a_CPPFLAGS= $(CPPFLAGS) \
-DDEFAULT_LOG_FILE_NAME
=
"
$(localstatedir)
/mysqlmanager.log"
\
-DDEFAULT_LOG_FILE_NAME
=
"
$(localstatedir)
/mysqlmanager.log"
\
-DDEFAULT_SOCKET_FILE_NAME
=
"
$(localstatedir)
/mysqlmanager.sock"
-DDEFAULT_SOCKET_FILE_NAME
=
"
$(localstatedir)
/mysqlmanager.sock"
liboptions_a_SOURCES
=
o
tp
ions.h options.cc
liboptions_a_SOURCES
=
o
pt
ions.h options.cc
bin_PROGRAMS
=
mysqlmanager
bin_PROGRAMS
=
mysqlmanager
...
...
server-tools/instance-manager/mysqlmanager.cc
View file @
be1d522d
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
#include <string.h>
#include <string.h>
#include <signal.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "manager.h"
#include "manager.h"
#include "options.h"
#include "options.h"
...
...
sql/sql_show.cc
View file @
be1d522d
...
@@ -160,7 +160,7 @@ int mysqld_show_tables(THD *thd, const char *db, const char *wild,
...
@@ -160,7 +160,7 @@ int mysqld_show_tables(THD *thd, const char *db, const char *wild,
len
=
FN_LEN
-
len
;
len
=
FN_LEN
-
len
;
field_list
.
push_back
(
field
);
field_list
.
push_back
(
field
);
if
(
show_type
)
if
(
show_type
)
field_list
.
push_back
(
new
Item_empty_string
(
"
t
able_type"
,
10
));
field_list
.
push_back
(
new
Item_empty_string
(
"
T
able_type"
,
10
));
if
(
protocol
->
send_fields
(
&
field_list
,
if
(
protocol
->
send_fields
(
&
field_list
,
Protocol
::
SEND_NUM_ROWS
|
Protocol
::
SEND_EOF
))
Protocol
::
SEND_NUM_ROWS
|
Protocol
::
SEND_EOF
))
DBUG_RETURN
(
1
);
DBUG_RETURN
(
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