Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl
Commits
fc4990b5
Commit
fc4990b5
authored
Feb 12, 2019
by
Tiago Grego
Browse files
patched test dbs with patch_96_97_b and updated fixtures
parent
5415237e
Changes
31
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
21 additions
and
11 deletions
+21
-11
modules/t/test-genome-DBs/mus_musculus/core/table.sql
modules/t/test-genome-DBs/mus_musculus/core/table.sql
+2
-1
modules/t/test-genome-DBs/nameless/core/SQLite/table.sql
modules/t/test-genome-DBs/nameless/core/SQLite/table.sql
+3
-2
modules/t/test-genome-DBs/nameless/core/meta.txt
modules/t/test-genome-DBs/nameless/core/meta.txt
+1
-0
modules/t/test-genome-DBs/nameless/core/table.sql
modules/t/test-genome-DBs/nameless/core/table.sql
+2
-1
modules/t/test-genome-DBs/ontology/ontology/SQLite/table.sql
modules/t/test-genome-DBs/ontology/ontology/SQLite/table.sql
+1
-1
modules/t/test-genome-DBs/polyploidy/core/SQLite/table.sql
modules/t/test-genome-DBs/polyploidy/core/SQLite/table.sql
+3
-2
modules/t/test-genome-DBs/polyploidy/core/meta.txt
modules/t/test-genome-DBs/polyploidy/core/meta.txt
+1
-0
modules/t/test-genome-DBs/polyploidy/core/table.sql
modules/t/test-genome-DBs/polyploidy/core/table.sql
+2
-1
modules/t/test-genome-DBs/test_collection/core/SQLite/table.sql
...s/t/test-genome-DBs/test_collection/core/SQLite/table.sql
+3
-2
modules/t/test-genome-DBs/test_collection/core/meta.txt
modules/t/test-genome-DBs/test_collection/core/meta.txt
+1
-0
modules/t/test-genome-DBs/test_collection/core/table.sql
modules/t/test-genome-DBs/test_collection/core/table.sql
+2
-1
No files found.
modules/t/test-genome-DBs/mus_musculus/core/table.sql
View file @
fc4990b5
...
...
@@ -114,6 +114,7 @@ CREATE TABLE `biotype` (
`description`
text
,
`biotype_group`
enum
(
'coding'
,
'pseudogene'
,
'snoncoding'
,
'lnoncoding'
,
'mnoncoding'
,
'LRG'
,
'undefined'
,
'no_group'
)
DEFAULT
NULL
,
`so_acc`
varchar
(
64
)
DEFAULT
NULL
,
`so_term`
varchar
(
1023
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`biotype_id`
),
UNIQUE
KEY
`name_type_idx`
(
`name`
,
`object_type`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
...
...
@@ -489,7 +490,7 @@ CREATE TABLE `meta` (
PRIMARY
KEY
(
`meta_id`
),
UNIQUE
KEY
`species_key_value_idx`
(
`species_id`
,
`meta_key`
,
`meta_value`
),
KEY
`species_value_idx`
(
`species_id`
,
`meta_value`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
1
699
DEFAULT
CHARSET
=
latin1
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
1
700
DEFAULT
CHARSET
=
latin1
;
CREATE
TABLE
`meta_coord`
(
`table_name`
varchar
(
40
)
COLLATE
latin1_bin
NOT
NULL
DEFAULT
''
,
...
...
modules/t/test-genome-DBs/nameless/core/SQLite/table.sql
View file @
fc4990b5
--
-- Created by SQL::Translator::Producer::SQLite
-- Created on Tue Feb 12 1
1:45:27
2019
-- Created on Tue Feb 12 1
5:00:40
2019
--
BEGIN
TRANSACTION
;
...
...
@@ -142,7 +142,8 @@ CREATE TABLE "biotype" (
"attrib_type_id"
integer
,
"description"
text
,
"biotype_group"
enum
,
"so_acc"
varchar
(
64
)
"so_acc"
varchar
(
64
),
"so_term"
varchar
(
1023
)
);
CREATE
UNIQUE
INDEX
"name_type_idx"
ON
"biotype"
(
"name"
,
"object_type"
);
...
...
modules/t/test-genome-DBs/nameless/core/meta.txt
View file @
fc4990b5
...
...
@@ -105,3 +105,4 @@
159 \N patch patch_94_95_c.sql|ox_key_update
160 \N patch patch_95_96_a.sql|schema_version
161 \N patch patch_96_97_a.sql|schema_version
162 \N patch patch_96_97_b.sql|biotype_so_term
modules/t/test-genome-DBs/nameless/core/table.sql
View file @
fc4990b5
...
...
@@ -114,6 +114,7 @@ CREATE TABLE `biotype` (
`description`
text
,
`biotype_group`
enum
(
'coding'
,
'pseudogene'
,
'snoncoding'
,
'lnoncoding'
,
'mnoncoding'
,
'LRG'
,
'undefined'
,
'no_group'
)
DEFAULT
NULL
,
`so_acc`
varchar
(
64
)
DEFAULT
NULL
,
`so_term`
varchar
(
1023
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`biotype_id`
),
UNIQUE
KEY
`name_type_idx`
(
`name`
,
`object_type`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
...
...
@@ -479,7 +480,7 @@ CREATE TABLE `meta` (
PRIMARY
KEY
(
`meta_id`
),
UNIQUE
KEY
`species_key_value_idx`
(
`species_id`
,
`meta_key`
,
`meta_value`
),
KEY
`species_value_idx`
(
`species_id`
,
`meta_value`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
16
2
DEFAULT
CHARSET
=
latin1
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
16
3
DEFAULT
CHARSET
=
latin1
;
CREATE
TABLE
`meta_coord`
(
`table_name`
varchar
(
40
)
COLLATE
latin1_bin
NOT
NULL
DEFAULT
''
,
...
...
modules/t/test-genome-DBs/ontology/ontology/SQLite/table.sql
View file @
fc4990b5
--
-- Created by SQL::Translator::Producer::SQLite
-- Created on Tue Feb 12 1
1:45:29
2019
-- Created on Tue Feb 12 1
5:00:43
2019
--
BEGIN
TRANSACTION
;
...
...
modules/t/test-genome-DBs/polyploidy/core/SQLite/table.sql
View file @
fc4990b5
--
-- Created by SQL::Translator::Producer::SQLite
-- Created on Tue Feb 12 1
1:45:32
2019
-- Created on Tue Feb 12 1
5:00:46
2019
--
BEGIN
TRANSACTION
;
...
...
@@ -142,7 +142,8 @@ CREATE TABLE "biotype" (
"attrib_type_id"
integer
,
"description"
text
,
"biotype_group"
enum
,
"so_acc"
varchar
(
64
)
"so_acc"
varchar
(
64
),
"so_term"
varchar
(
1023
)
);
CREATE
UNIQUE
INDEX
"name_type_idx"
ON
"biotype"
(
"name"
,
"object_type"
);
...
...
modules/t/test-genome-DBs/polyploidy/core/meta.txt
View file @
fc4990b5
...
...
@@ -160,3 +160,4 @@
240 \N patch patch_94_95_c.sql|ox_key_update
241 \N patch patch_95_96_a.sql|schema_version
242 \N patch patch_96_97_a.sql|schema_version
243 \N patch patch_96_97_b.sql|biotype_so_term
modules/t/test-genome-DBs/polyploidy/core/table.sql
View file @
fc4990b5
...
...
@@ -114,6 +114,7 @@ CREATE TABLE `biotype` (
`description`
text
,
`biotype_group`
enum
(
'coding'
,
'pseudogene'
,
'snoncoding'
,
'lnoncoding'
,
'mnoncoding'
,
'LRG'
,
'undefined'
,
'no_group'
)
DEFAULT
NULL
,
`so_acc`
varchar
(
64
)
DEFAULT
NULL
,
`so_term`
varchar
(
1023
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`biotype_id`
),
UNIQUE
KEY
`name_type_idx`
(
`name`
,
`object_type`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
...
...
@@ -489,7 +490,7 @@ CREATE TABLE `meta` (
PRIMARY
KEY
(
`meta_id`
),
UNIQUE
KEY
`species_key_value_idx`
(
`species_id`
,
`meta_key`
,
`meta_value`
),
KEY
`species_value_idx`
(
`species_id`
,
`meta_value`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
24
3
DEFAULT
CHARSET
=
latin1
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
24
4
DEFAULT
CHARSET
=
latin1
;
CREATE
TABLE
`meta_coord`
(
`table_name`
varchar
(
40
)
COLLATE
latin1_bin
NOT
NULL
DEFAULT
''
,
...
...
modules/t/test-genome-DBs/test_collection/core/SQLite/table.sql
View file @
fc4990b5
--
-- Created by SQL::Translator::Producer::SQLite
-- Created on Tue Feb 12 1
1:45:35
2019
-- Created on Tue Feb 12 1
5:00:49
2019
--
BEGIN
TRANSACTION
;
...
...
@@ -142,7 +142,8 @@ CREATE TABLE "biotype" (
"attrib_type_id"
integer
,
"description"
text
,
"biotype_group"
enum
,
"so_acc"
varchar
(
64
)
"so_acc"
varchar
(
64
),
"so_term"
varchar
(
1023
)
);
CREATE
UNIQUE
INDEX
"name_type_idx"
ON
"biotype"
(
"name"
,
"object_type"
);
...
...
modules/t/test-genome-DBs/test_collection/core/meta.txt
View file @
fc4990b5
...
...
@@ -180,3 +180,4 @@
222 \N patch patch_94_95_c.sql|ox_key_update
223 \N patch patch_95_96_a.sql|schema_version
224 \N patch patch_96_97_a.sql|schema_version
225 \N patch patch_96_97_b.sql|biotype_so_term
modules/t/test-genome-DBs/test_collection/core/table.sql
View file @
fc4990b5
...
...
@@ -114,6 +114,7 @@ CREATE TABLE `biotype` (
`description`
text
,
`biotype_group`
enum
(
'coding'
,
'pseudogene'
,
'snoncoding'
,
'lnoncoding'
,
'mnoncoding'
,
'LRG'
,
'undefined'
,
'no_group'
)
DEFAULT
NULL
,
`so_acc`
varchar
(
64
)
DEFAULT
NULL
,
`so_term`
varchar
(
1023
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`biotype_id`
),
UNIQUE
KEY
`name_type_idx`
(
`name`
,
`object_type`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
...
...
@@ -479,7 +480,7 @@ CREATE TABLE `meta` (
PRIMARY
KEY
(
`meta_id`
),
UNIQUE
KEY
`species_key_value_idx`
(
`species_id`
,
`meta_key`
,
`meta_value`
),
KEY
`species_value_idx`
(
`species_id`
,
`meta_value`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
22
5
DEFAULT
CHARSET
=
latin1
;
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
22
6
DEFAULT
CHARSET
=
latin1
;
CREATE
TABLE
`meta_coord`
(
`table_name`
varchar
(
40
)
COLLATE
latin1_bin
NOT
NULL
DEFAULT
''
,
...
...
Prev
1
2
Next
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