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
11a9d8f7
Commit
11a9d8f7
authored
7 years ago
by
Aleksey Midenkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests: typo fix in cte.test
Related to
c2c8808a
parent
6c9b71d7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/suite/versioning/r/cte.result
mysql-test/suite/versioning/r/cte.result
+1
-1
mysql-test/suite/versioning/t/cte.test
mysql-test/suite/versioning/t/cte.test
+1
-1
No files found.
mysql-test/suite/versioning/r/cte.result
View file @
11a9d8f7
...
...
@@ -24,7 +24,7 @@ insert into emp (emp_id, name, salary, dept_id, mgr) values
(1, "bill", 1000, 10, null),
(20, "john", 500, 10, 1),
(30, "jane", 750, 10,1 );
select vtq_commit_ts(max(sys_trx_start
+ 0
)) into @ts_1 from emp;
select vtq_commit_ts(max(sys_trx_start)) into @ts_1 from emp;
update emp set mgr=30 where name ="john";
select vtq_commit_ts(sys_trx_start) into @ts_2 from emp where name="john";
/* All report to 'Bill' */
...
...
This diff is collapsed.
Click to expand it.
mysql-test/suite/versioning/t/cte.test
View file @
11a9d8f7
...
...
@@ -28,7 +28,7 @@ insert into emp (emp_id, name, salary, dept_id, mgr) values
(
20
,
"john"
,
500
,
10
,
1
),
(
30
,
"jane"
,
750
,
10
,
1
);
select
vtq_commit_ts
(
max
(
sys_trx_start
+
0
))
into
@
ts_1
from
emp
;
select
vtq_commit_ts
(
max
(
sys_trx_start
))
into
@
ts_1
from
emp
;
update
emp
set
mgr
=
30
where
name
=
"john"
;
select
vtq_commit_ts
(
sys_trx_start
)
into
@
ts_2
from
emp
where
name
=
"john"
;
...
...
This diff is collapsed.
Click to expand it.
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