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
fe06c72d
Commit
fe06c72d
authored
Mar 14, 2007
by
gkodinov/kgeorge@magare.gmz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge 5.0->5.1
parent
5e2e4161
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mysql-test/r/alter_table.result
mysql-test/r/alter_table.result
+4
-4
No files found.
mysql-test/r/alter_table.result
View file @
fe06c72d
...
@@ -886,7 +886,7 @@ ALTER TABLE t1 ADD b GEOMETRY NOT NULL, ADD SPATIAL INDEX(b);
...
@@ -886,7 +886,7 @@ ALTER TABLE t1 ADD b GEOMETRY NOT NULL, ADD SPATIAL INDEX(b);
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` varchar(500)
default
NULL,
`a` varchar(500)
DEFAULT
NULL,
`b` geometry NOT NULL,
`b` geometry NOT NULL,
SPATIAL KEY `b` (`b`)
SPATIAL KEY `b` (`b`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
...
@@ -894,7 +894,7 @@ ALTER TABLE t1 ADD KEY(b(50));
...
@@ -894,7 +894,7 @@ ALTER TABLE t1 ADD KEY(b(50));
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` varchar(500)
default
NULL,
`a` varchar(500)
DEFAULT
NULL,
`b` geometry NOT NULL,
`b` geometry NOT NULL,
SPATIAL KEY `b` (`b`),
SPATIAL KEY `b` (`b`),
KEY `b_2` (`b`(50))
KEY `b_2` (`b`(50))
...
@@ -903,9 +903,9 @@ ALTER TABLE t1 ADD c POINT;
...
@@ -903,9 +903,9 @@ ALTER TABLE t1 ADD c POINT;
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` varchar(500)
default
NULL,
`a` varchar(500)
DEFAULT
NULL,
`b` geometry NOT NULL,
`b` geometry NOT NULL,
`c` point
default
NULL,
`c` point
DEFAULT
NULL,
SPATIAL KEY `b` (`b`),
SPATIAL KEY `b` (`b`),
KEY `b_2` (`b`(50))
KEY `b_2` (`b`(50))
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
...
...
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