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
3f663d27
Commit
3f663d27
authored
Oct 18, 2023
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed fixed temporay file paths in mtr
parent
19eac149
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
mysql-test/main/subselect3.inc
mysql-test/main/subselect3.inc
+3
-3
mysql-test/main/subselect3.result
mysql-test/main/subselect3.result
+2
-2
mysql-test/main/subselect3_jcl6.result
mysql-test/main/subselect3_jcl6.result
+2
-2
No files found.
mysql-test/main/subselect3.inc
View file @
3f663d27
...
...
@@ -642,14 +642,14 @@ DROP TABLE t1, t2;
create
table
t1
(
a
int
,
b
decimal
(
13
,
3
));
insert
into
t1
values
(
1
,
0.123
);
--
disable_ps2_protocol
select
a
,
(
select
max
(
b
)
from
t1
)
into
outfile
"subselect.out.file.1"
from
t1
;
select
a
,
(
select
max
(
b
)
from
t1
)
into
outfile
"
../../tmp/
subselect.out.file.1"
from
t1
;
--
enable_ps2_protocol
delete
from
t1
;
load
data
infile
"subselect.out.file.1"
into
table
t1
;
load
data
infile
"
../../tmp/
subselect.out.file.1"
into
table
t1
;
select
*
from
t1
;
drop
table
t1
;
let
$datadir
=
`select @@datadir`
;
--
remove_file
$
datadir
/
test
/
subselect
.
out
.
file
.
1
--
remove_file
$
MYSQLTEST_VARDIR
/
tmp
/
subselect
.
out
.
file
.
1
#
# Bug #37894: Assertion in init_read_record_seq in handler.h line 1444
...
...
mysql-test/main/subselect3.result
View file @
3f663d27
...
...
@@ -795,9 +795,9 @@ SELECT 1 FROM t1 WHERE t1.a NOT IN (SELECT 1 FROM t1, t2 WHERE 0);
DROP TABLE t1, t2;
create table t1 (a int, b decimal(13, 3));
insert into t1 values (1, 0.123);
select a, (select max(b) from t1) into outfile "subselect.out.file.1" from t1;
select a, (select max(b) from t1) into outfile "
../../tmp/
subselect.out.file.1" from t1;
delete from t1;
load data infile "subselect.out.file.1" into table t1;
load data infile "
../../tmp/
subselect.out.file.1" into table t1;
select * from t1;
a b
1 0.123
...
...
mysql-test/main/subselect3_jcl6.result
View file @
3f663d27
...
...
@@ -798,9 +798,9 @@ SELECT 1 FROM t1 WHERE t1.a NOT IN (SELECT 1 FROM t1, t2 WHERE 0);
DROP TABLE t1, t2;
create table t1 (a int, b decimal(13, 3));
insert into t1 values (1, 0.123);
select a, (select max(b) from t1) into outfile "subselect.out.file.1" from t1;
select a, (select max(b) from t1) into outfile "
../../tmp/
subselect.out.file.1" from t1;
delete from t1;
load data infile "subselect.out.file.1" into table t1;
load data infile "
../../tmp/
subselect.out.file.1" into table t1;
select * from t1;
a b
1 0.123
...
...
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