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
4b5c387f
Commit
4b5c387f
authored
Apr 28, 2007
by
evgen@sunlight.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Additional fix for the bug#27590.
parent
e0b8b6e5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
mysql-test/r/ps_6bdb.result
mysql-test/r/ps_6bdb.result
+2
-2
mysql-test/r/ps_7ndb.result
mysql-test/r/ps_7ndb.result
+2
-2
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+2
-2
tests/mysql_client_test.c
tests/mysql_client_test.c
+4
-4
No files found.
mysql-test/r/ps_6bdb.result
View file @
4b5c387f
...
...
@@ -3053,7 +3053,7 @@ found
true
set @arg00= CAST('1991-01-01 01:01:01' as datetime) ;
select 'true' as found from t9
where c1= 20 and c13= CAST('1991-01-01 0
1:01:01
' as datetime) and
where c1= 20 and c13= CAST('1991-01-01 0
0:00:00
' as datetime) and
c14= CAST('1991-01-01 01:01:01' as datetime) and
c15= CAST('1991-01-01 01:01:01' as datetime) and
c16= CAST('1991-01-01 01:01:01' as datetime) and
...
...
@@ -3066,7 +3066,7 @@ and c17= @arg00 ;
found
true
prepare stmt1 from "select 'true' as found from t9
where c1= 20 and c13= CAST('1991-01-01 0
1:01:01
' as datetime) and
where c1= 20 and c13= CAST('1991-01-01 0
0:00:00
' as datetime) and
c14= CAST('1991-01-01 01:01:01' as datetime) and
c15= CAST('1991-01-01 01:01:01' as datetime) and
c16= CAST('1991-01-01 01:01:01' as datetime) and
...
...
mysql-test/r/ps_7ndb.result
View file @
4b5c387f
...
...
@@ -3053,7 +3053,7 @@ found
true
set @arg00= CAST('1991-01-01 01:01:01' as datetime) ;
select 'true' as found from t9
where c1= 20 and c13= CAST('1991-01-01 0
1:01:01
' as datetime) and
where c1= 20 and c13= CAST('1991-01-01 0
0:00:00
' as datetime) and
c14= CAST('1991-01-01 01:01:01' as datetime) and
c15= CAST('1991-01-01 01:01:01' as datetime) and
c16= CAST('1991-01-01 01:01:01' as datetime) and
...
...
@@ -3066,7 +3066,7 @@ and c17= @arg00 ;
found
true
prepare stmt1 from "select 'true' as found from t9
where c1= 20 and c13= CAST('1991-01-01 0
1:01:01
' as datetime) and
where c1= 20 and c13= CAST('1991-01-01 0
0:00:00
' as datetime) and
c14= CAST('1991-01-01 01:01:01' as datetime) and
c15= CAST('1991-01-01 01:01:01' as datetime) and
c16= CAST('1991-01-01 01:01:01' as datetime) and
...
...
sql/item_cmpfunc.cc
View file @
4b5c387f
...
...
@@ -544,7 +544,7 @@ static ulonglong
get_date_from_str
(
THD
*
thd
,
String
*
str
,
timestamp_type
warn_type
,
char
*
warn_name
,
bool
*
error_arg
)
{
ulonglong
value
;
ulonglong
value
=
0
;
int
error
;
MYSQL_TIME
l_time
;
enum_mysql_timestamp_type
ret
;
...
...
@@ -748,7 +748,7 @@ static ulonglong
get_datetime_value
(
THD
*
thd
,
Item
***
item_arg
,
Item
**
cache_arg
,
Item
*
warn_item
,
bool
*
is_null
)
{
ulonglong
value
;
ulonglong
value
=
0
;
String
buf
,
*
str
=
0
;
Item
*
item
=
**
item_arg
;
...
...
tests/mysql_client_test.c
View file @
4b5c387f
...
...
@@ -8785,7 +8785,9 @@ static void test_ts()
int
rc
,
field_count
;
char
name
;
char
query
[
MAX_TEST_QUERY_LENGTH
];
const
char
*
queries
[
3
]
=
{
"SELECT a, b, c FROM test_ts WHERE %c=?"
,
"SELECT a, b, c FROM test_ts WHERE %c=?"
,
"SELECT a, b, c FROM test_ts WHERE %c=CAST(? AS DATE)"
};
myheader
(
"test_ts"
);
rc
=
mysql_query
(
mysql
,
"DROP TABLE IF EXISTS test_ts"
);
...
...
@@ -8852,9 +8854,7 @@ static void test_ts()
mysql_free_result
(
prep_res
);
mysql_stmt_close
(
stmt
);
char
queries
[
3
][
60
]
=
{
"SELECT a, b, c FROM test_ts WHERE %c=?"
,
"SELECT a, b, c FROM test_ts WHERE %c=?"
,
"SELECT a, b, c FROM test_ts WHERE %c=CAST(? AS DATE)"
};
for
(
name
=
'a'
;
field_count
--
;
name
++
)
{
int
row_count
=
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