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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
674a1c4e
Commit
674a1c4e
authored
Jun 24, 2004
by
konstantin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- fixed test_frm_bug test to work with increased number of columns in
result of SHOW TABLE STATUS
parent
29b88ff5
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
566 additions
and
2 deletions
+566
-2
.bzrignore
.bzrignore
+3
-0
sql-common/my_time.c
sql-common/my_time.c
+561
-0
tests/client_test.c
tests/client_test.c
+2
-2
No files found.
.bzrignore
View file @
674a1c4e
...
...
@@ -787,3 +787,6 @@ vio/viotest-ssl
extra/tztime.cc
extra/mysql_tzinfo_to_sql
sql/mysql_tzinfo_to_sql_tztime.cc
sql/my_time.c
libmysql/my_time.c
libmysqld/my_time.c
sql-common/my_time.c
0 → 100644
View file @
674a1c4e
This diff is collapsed.
Click to expand it.
tests/client_test.c
View file @
674a1c4e
...
...
@@ -6622,8 +6622,8 @@ static void test_frm_bug()
row
=
mysql_fetch_row
(
result
);
mytest
(
row
);
fprintf
(
stdout
,
"
\n
Comment: %s"
,
row
[
1
6
]);
assert
(
row
[
1
6
]
!=
0
);
fprintf
(
stdout
,
"
\n
Comment: %s"
,
row
[
1
7
]);
assert
(
row
[
1
7
]
!=
0
);
mysql_free_result
(
result
);
mysql_stmt_close
(
stmt
);
...
...
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