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
16ae38bd
Commit
16ae38bd
authored
Mar 09, 2011
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a wrong error code in gis.test
parent
ec802424
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
mysql-test/r/gis.result
mysql-test/r/gis.result
+1
-1
mysql-test/t/gis.test
mysql-test/t/gis.test
+1
-2
No files found.
mysql-test/r/gis.result
View file @
16ae38bd
...
...
@@ -1040,7 +1040,7 @@ drop table t1;
#
create table t1(a char(32) not null) engine=myisam;
create spatial index i on t1 (a);
ERROR HY000:
Can't create table '#sql-temporary' (errno: 140)
ERROR HY000:
Incorrect arguments to SPATIAL INDEX
drop table t1;
CREATE TABLE t0 (a BINARY(32) NOT NULL);
CREATE SPATIAL INDEX i on t0 (a);
...
...
mysql-test/t/gis.test
View file @
16ae38bd
...
...
@@ -760,8 +760,7 @@ drop table t1;
--
echo
# on char > 31 bytes".
--
echo
#
create
table
t1
(
a
char
(
32
)
not
null
)
engine
=
myisam
;
--
replace_regex
/
'[^'
]
*
test
\
.
#sql-[0-9a-f_]*'/'#sql-temporary'/
--
error
ER_CANT_CREATE_TABLE
--
error
ER_WRONG_ARGUMENTS
create
spatial
index
i
on
t1
(
a
);
drop
table
t1
;
...
...
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