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
78d2430a
Commit
78d2430a
authored
Sep 12, 2017
by
Eugene Kosov
Committed by
GitHub
Sep 12, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests: VTMD + modify column
parent
a49239b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
mysql-test/suite/versioning/r/vtmd.result
mysql-test/suite/versioning/r/vtmd.result
+10
-0
mysql-test/suite/versioning/t/vtmd.test
mysql-test/suite/versioning/t/vtmd.test
+5
-0
No files found.
mysql-test/suite/versioning/r/vtmd.result
View file @
78d2430a
...
...
@@ -265,6 +265,16 @@ A_start B_end name C_archive_name
1 0 other_name t1_
1 0 t1 t1_
1 1 t2 NULL
create or replace table t3 (x int) with system versioning;
alter table t3 change x x bigint;
alter table t3 change x x bigint after sys_trx_start;
call check_vtmd('t3_vtmd');
@start > 0 and @start < @inf
1
A_start B_end name C_archive_name
1 0 t3 t3_
1 0 t3 t3_
1 1 t3 NULL
drop database db0;
drop database db1;
drop database test;
...
...
mysql-test/suite/versioning/t/vtmd.test
View file @
78d2430a
...
...
@@ -155,6 +155,11 @@ use test;
show
tables
;
call
check_vtmd
(
't2_vtmd'
);
create
or
replace
table
t3
(
x
int
)
with
system
versioning
;
alter
table
t3
change
x
x
bigint
;
alter
table
t3
change
x
x
bigint
after
sys_trx_start
;
call
check_vtmd
(
't3_vtmd'
);
drop
database
db0
;
drop
database
db1
;
drop
database
test
;
...
...
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