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
297639bd
Commit
297639bd
authored
Nov 15, 2005
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test suite for BUG#13673 (the bug was fixed in the bugfix for BUG#14138)
parent
5d8cefe0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
mysql-test/r/analyze.result
mysql-test/r/analyze.result
+7
-0
mysql-test/t/analyze.test
mysql-test/t/analyze.test
+9
-0
No files found.
mysql-test/r/analyze.result
View file @
297639bd
...
@@ -30,3 +30,10 @@ check table t1;
...
@@ -30,3 +30,10 @@ check table t1;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 check status OK
test.t1 check status OK
drop table t1;
drop table t1;
CREATE TABLE t1 (a int);
prepare stmt1 from "SELECT * FROM t1 PROCEDURE ANALYSE()";
execute stmt1;
Field_name Min_value Max_value Min_length Max_length Empties_or_zeros Nulls Avg_value_or_avg_length Std Optimal_fieldtype
execute stmt1;
Field_name Min_value Max_value Min_length Max_length Empties_or_zeros Nulls Avg_value_or_avg_length Std Optimal_fieldtype
deallocate prepare stmt1;
mysql-test/t/analyze.test
View file @
297639bd
...
@@ -39,4 +39,13 @@ check table t1;
...
@@ -39,4 +39,13 @@ check table t1;
drop
table
t1
;
drop
table
t1
;
#
# procedure in PS BUG#13673
#
CREATE
TABLE
t1
(
a
int
);
prepare
stmt1
from
"SELECT * FROM t1 PROCEDURE ANALYSE()"
;
execute
stmt1
;
execute
stmt1
;
deallocate
prepare
stmt1
;
# End of 4.1 tests
# End of 4.1 tests
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