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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
17a7fbd5
Commit
17a7fbd5
authored
Oct 10, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fixes
parent
a90ab1e2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
mysql-test/r/select.result
mysql-test/r/select.result
+7
-0
mysql-test/r/subselect2.result
mysql-test/r/subselect2.result
+2
-0
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
No files found.
mysql-test/r/select.result
View file @
17a7fbd5
...
@@ -2628,6 +2628,13 @@ select f1 from t1,t2 where f1=f2 and (f1,NULL) = ((1,1));
...
@@ -2628,6 +2628,13 @@ select f1 from t1,t2 where f1=f2 and (f1,NULL) = ((1,1));
f1
f1
select f1 from t1,t2 where f1=f2 and (f1,f2) = ((1,NULL));
select f1 from t1,t2 where f1=f2 and (f1,f2) = ((1,NULL));
f1
f1
insert into t1 values(1,1),(2,null);
insert into t2 values(2);
select * from t1,t2 where f1=f3 and (f1,f2) = (2,null);
f1 f2 f3
select * from t1,t2 where f1=f3 and (f1,f2) <=> (2,null);
f1 f2 f3
2 NULL 2
drop table t1,t2;
drop table t1,t2;
CREATE TABLE t1 ( city char(30) );
CREATE TABLE t1 ( city char(30) );
INSERT INTO t1 VALUES ('London');
INSERT INTO t1 VALUES ('London');
...
...
mysql-test/r/subselect2.result
View file @
17a7fbd5
...
@@ -15,6 +15,8 @@ DOCID VARCHAR(32)BINARY NOT NULL
...
@@ -15,6 +15,8 @@ DOCID VARCHAR(32)BINARY NOT NULL
) ENGINE=InnoDB
) ENGINE=InnoDB
;
;
INSERT INTO t1 (DOCID) VALUES ("1"), ("2");
INSERT INTO t1 (DOCID) VALUES ("1"), ("2");
Warnings:
Warning 1364 Field 'UUID' doesn't have a default value
CREATE TABLE t2
CREATE TABLE t2
(
(
DOCID VARCHAR(32)BINARY NOT NULL
DOCID VARCHAR(32)BINARY NOT NULL
...
...
sql/sql_parse.cc
View file @
17a7fbd5
...
@@ -3209,7 +3209,7 @@ end_with_restore_list:
...
@@ -3209,7 +3209,7 @@ end_with_restore_list:
break
;
break
;
/* Check slave filtering rules */
/* Check slave filtering rules */
if
(
thd
->
slave_thread
&&
all_tables_not_ok
(
thd
,
tables
))
if
(
thd
->
slave_thread
&&
all_tables_not_ok
(
thd
,
all_
tables
))
{
{
/* we warn the slave SQL thread */
/* we warn the slave SQL thread */
my_error
(
ER_SLAVE_IGNORED_TABLE
,
MYF
(
0
));
my_error
(
ER_SLAVE_IGNORED_TABLE
,
MYF
(
0
));
...
...
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