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
4136968c
Commit
4136968c
authored
Oct 15, 2016
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable spatial indexes in innodb vcol tests
parent
c2b2cb8a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
mysql-test/suite/vcol/r/vcol_keys_innodb.result
mysql-test/suite/vcol/r/vcol_keys_innodb.result
+7
-0
mysql-test/suite/vcol/t/vcol_keys_innodb.test
mysql-test/suite/vcol/t/vcol_keys_innodb.test
+1
-2
mysql-test/suite/vcol/t/vcol_keys_myisam.test
mysql-test/suite/vcol/t/vcol_keys_myisam.test
+1
-1
No files found.
mysql-test/suite/vcol/r/vcol_keys_innodb.result
View file @
4136968c
...
...
@@ -99,6 +99,13 @@ drop table t1;
#
# TODO: FULLTEXT INDEX
# SPATIAL INDEX
# Error "All parts of a SPATIAL index must be NOT NULL"
create table t1 (a int, b geometry as (a+1) persistent, spatial index (b));
ERROR 42000: All parts of a SPATIAL index must be NOT NULL
create table t1 (a int, b int as (a+1) persistent);
alter table t1 add spatial index (b);
ERROR HY000: Incorrect arguments to SPATIAL INDEX
drop table t1;
# FOREIGN KEY
# Rejected FK options.
create table t1 (a int, b int as (a+1) persistent,
...
...
mysql-test/suite/vcol/t/vcol_keys_innodb.test
View file @
4136968c
...
...
@@ -34,14 +34,13 @@
##### Storage engine to be tested
# Set the session storage engine
--
source
include
/
have_innodb
.
inc
eval
SET
@@
session
.
storage_engine
=
'InnoDB'
;
SET
@@
session
.
storage_engine
=
'InnoDB'
;
##### Workarounds for known open engine specific bugs
# none
#------------------------------------------------------------------------------#
# Execute the tests to be applied to all storage engines
let
$skip_spatial_index_check
=
1
;
--
source
suite
/
vcol
/
inc
/
vcol_keys
.
inc
#------------------------------------------------------------------------------#
...
...
mysql-test/suite/vcol/t/vcol_keys_myisam.test
View file @
4136968c
...
...
@@ -33,7 +33,7 @@
##### Storage engine to be tested
# Set the session storage engine
eval
SET
@@
session
.
storage_engine
=
'MyISAM'
;
SET
@@
session
.
storage_engine
=
'MyISAM'
;
##### Workarounds for known open engine specific bugs
# none
...
...
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