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
7e50f032
Commit
7e50f032
authored
Jan 12, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
parents
9d8bf698
e2ab8558
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
3 deletions
+17
-3
client/mysqldump.c
client/mysqldump.c
+2
-2
mysql-test/r/type_blob.result
mysql-test/r/type_blob.result
+6
-0
mysql-test/t/type_blob.test
mysql-test/t/type_blob.test
+6
-0
sql/opt_sum.cc
sql/opt_sum.cc
+3
-1
No files found.
client/mysqldump.c
View file @
7e50f032
...
@@ -1389,7 +1389,7 @@ static int dump_all_tables_in_db(char *database)
...
@@ -1389,7 +1389,7 @@ static int dump_all_tables_in_db(char *database)
if
(
opt_xml
)
if
(
opt_xml
)
fprintf
(
md_result_file
,
"</database>
\n
"
);
fprintf
(
md_result_file
,
"</database>
\n
"
);
if
(
lock_tables
)
if
(
lock_tables
)
mysql_query
(
sock
,
"UNLOCK
_
TABLES"
);
mysql_query
(
sock
,
"UNLOCK
TABLES"
);
return
0
;
return
0
;
}
/* dump_all_tables_in_db */
}
/* dump_all_tables_in_db */
...
@@ -1435,7 +1435,7 @@ static int dump_selected_tables(char *db, char **table_names, int tables)
...
@@ -1435,7 +1435,7 @@ static int dump_selected_tables(char *db, char **table_names, int tables)
if
(
opt_xml
)
if
(
opt_xml
)
fprintf
(
md_result_file
,
"</database>
\n
"
);
fprintf
(
md_result_file
,
"</database>
\n
"
);
if
(
lock_tables
)
if
(
lock_tables
)
mysql_query
(
sock
,
"UNLOCK
_
TABLES"
);
mysql_query
(
sock
,
"UNLOCK
TABLES"
);
return
0
;
return
0
;
}
/* dump_selected_tables */
}
/* dump_selected_tables */
...
...
mysql-test/r/type_blob.result
View file @
7e50f032
...
@@ -601,3 +601,9 @@ id txt
...
@@ -601,3 +601,9 @@ id txt
2 Chevy
2 Chevy
4 Ford
4 Ford
drop table t1;
drop table t1;
CREATE TABLE t1 ( i int(11) NOT NULL default '0', c text NOT NULL, PRIMARY KEY (i), KEY (c(1),c(1)));
INSERT t1 VALUES (1,''),(2,''),(3,'asdfh'),(4,'');
select max(i) from t1 where c = '';
max(i)
4
drop table t1;
mysql-test/t/type_blob.test
View file @
7e50f032
...
@@ -312,3 +312,9 @@ select * from t1 where txt <= 'Chevy';
...
@@ -312,3 +312,9 @@ select * from t1 where txt <= 'Chevy';
select
*
from
t1
where
txt
>
'Chevy'
;
select
*
from
t1
where
txt
>
'Chevy'
;
select
*
from
t1
where
txt
>=
'Chevy'
;
select
*
from
t1
where
txt
>=
'Chevy'
;
drop
table
t1
;
drop
table
t1
;
CREATE
TABLE
t1
(
i
int
(
11
)
NOT
NULL
default
'0'
,
c
text
NOT
NULL
,
PRIMARY
KEY
(
i
),
KEY
(
c
(
1
),
c
(
1
)));
INSERT
t1
VALUES
(
1
,
''
),(
2
,
''
),(
3
,
'asdfh'
),(
4
,
''
);
select
max
(
i
)
from
t1
where
c
=
''
;
drop
table
t1
;
sql/opt_sum.cc
View file @
7e50f032
...
@@ -443,7 +443,9 @@ static bool find_range_key(TABLE_REF *ref, Field* field, COND *cond)
...
@@ -443,7 +443,9 @@ static bool find_range_key(TABLE_REF *ref, Field* field, COND *cond)
// Save found constant
// Save found constant
if
(
part
->
null_bit
)
if
(
part
->
null_bit
)
*
key_ptr
++=
(
byte
)
test
(
part
->
field
->
is_null
());
*
key_ptr
++=
(
byte
)
test
(
part
->
field
->
is_null
());
part
->
field
->
get_key_image
((
char
*
)
key_ptr
,
part
->
length
);
part
->
field
->
get_key_image
((
char
*
)
key_ptr
,
(
part
->
field
->
type
()
==
FIELD_TYPE_BLOB
)
?
part
->
length
+
HA_KEY_BLOB_LENGTH
:
part
->
length
);
key_ptr
+=
part
->
store_length
-
test
(
part
->
null_bit
);
key_ptr
+=
part
->
store_length
-
test
(
part
->
null_bit
);
left_length
-=
part
->
store_length
;
left_length
-=
part
->
store_length
;
}
}
...
...
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