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
8d3431d4
Commit
8d3431d4
authored
May 04, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-prep-4.1
parents
a237767e
a97452e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
0 deletions
+41
-0
sql/sql_union.cc
sql/sql_union.cc
+5
-0
tests/client_test.c
tests/client_test.c
+36
-0
No files found.
sql/sql_union.cc
View file @
8d3431d4
...
...
@@ -401,7 +401,10 @@ int st_select_lex_unit::exec()
*/
if
(
!
(
fake_select_lex
->
join
=
new
JOIN
(
thd
,
item_list
,
thd
->
options
,
result
)))
{
fake_select_lex
->
table_list
.
empty
();
DBUG_RETURN
(
-
1
);
}
/*
Fake st_select_lex should have item list for correctref_array
...
...
@@ -427,6 +430,8 @@ int st_select_lex_unit::exec()
(
ORDER
*
)
NULL
,
NULL
,
(
ORDER
*
)
NULL
,
options_tmp
|
SELECT_NO_UNLOCK
,
result
,
this
,
fake_select_lex
);
fake_select_lex
->
table_list
.
empty
();
if
(
!
res
)
thd
->
limit_found_rows
=
(
ulonglong
)
table
->
file
->
records
+
add_rows
;
/*
...
...
tests/client_test.c
View file @
8d3431d4
...
...
@@ -9397,6 +9397,41 @@ static void test_bug3035()
mysql_real_query
(
mysql
,
stmt_text
,
strlen
(
stmt_text
));
}
static
void
test_union2
()
{
MYSQL_STMT
*
stmt
;
int
rc
,
i
;
myheader
(
"test_union2"
);
rc
=
mysql_query
(
mysql
,
"DROP TABLE IF EXISTS t1"
);
myquery
(
rc
);
rc
=
mysql_query
(
mysql
,
"CREATE TABLE t1(col1 INT,\
col2 VARCHAR(40), \
col3 SMALLINT,\
col4 TIMESTAMP)"
);
myquery
(
rc
);
stmt
=
mysql_simple_prepare
(
mysql
,
"select col1 FROM t1 where col1=1 union distinct \
select col1 FROM t1 where col1=2"
);
check_stmt
(
stmt
);
for
(
i
=
0
;
i
<
3
;
i
++
)
{
rc
=
mysql_stmt_execute
(
stmt
);
check_execute
(
stmt
,
rc
);
assert
(
0
==
my_process_stmt_result
(
stmt
));
}
mysql_stmt_close
(
stmt
);
rc
=
mysql_query
(
mysql
,
"DROP TABLE t1"
);
myquery
(
rc
);
}
/*
Read and parse arguments and MySQL options from my.cnf
*/
...
...
@@ -9676,6 +9711,7 @@ int main(int argc, char **argv)
test_derived
();
/* derived table with parameter BUG#3020 */
test_xjoin
();
/* complex join test */
test_bug3035
();
/* inserts of INT32_MAX/UINT32_MAX */
test_union2
();
/* repeatable execution of union (Bug #3577) */
end_time
=
time
((
time_t
*
)
0
);
total_time
+=
difftime
(
end_time
,
start_time
);
...
...
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