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
4f457c43
Commit
4f457c43
authored
Feb 29, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compare a decimal value with a string not a double, as we want to test for an *exact* match
parent
a327ff8f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
tests/client_test.c
tests/client_test.c
+18
-18
No files found.
tests/client_test.c
View file @
4f457c43
...
@@ -6553,7 +6553,7 @@ static void test_decimal_bug()
...
@@ -6553,7 +6553,7 @@ static void test_decimal_bug()
{
{
MYSQL_STMT
*
stmt
;
MYSQL_STMT
*
stmt
;
MYSQL_BIND
bind
[
1
];
MYSQL_BIND
bind
[
1
];
double
data
;
char
data
[
30
]
;
int
rc
;
int
rc
;
my_bool
is_null
;
my_bool
is_null
;
...
@@ -6573,9 +6573,9 @@ static void test_decimal_bug()
...
@@ -6573,9 +6573,9 @@ static void test_decimal_bug()
stmt
=
mysql_simple_prepare
(
mysql
,
"select c1 from test_decimal_bug where c1= ?"
);
stmt
=
mysql_simple_prepare
(
mysql
,
"select c1 from test_decimal_bug where c1= ?"
);
mystmt_init
(
stmt
);
mystmt_init
(
stmt
);
bind
[
0
].
buffer_type
=
MYSQL_TYPE_
DOUBLE
;
bind
[
0
].
buffer_type
=
MYSQL_TYPE_
STRING
;
bind
[
0
].
buffer
=
(
char
*
)
&
data
;
bind
[
0
].
buffer
=
(
char
*
)
data
;
bind
[
0
].
buffer_length
=
0
;
bind
[
0
].
buffer_length
=
25
;
bind
[
0
].
is_null
=
&
is_null
;
bind
[
0
].
is_null
=
&
is_null
;
bind
[
0
].
length
=
0
;
bind
[
0
].
length
=
0
;
...
@@ -6583,36 +6583,36 @@ static void test_decimal_bug()
...
@@ -6583,36 +6583,36 @@ static void test_decimal_bug()
rc
=
mysql_bind_param
(
stmt
,
bind
);
rc
=
mysql_bind_param
(
stmt
,
bind
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
data
=
8
.
0
;
strcpy
(
data
,
"8.0"
)
;
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
data
=
0
;
data
[
0
]
=
0
;
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
rc
=
mysql_fetch
(
stmt
);
rc
=
mysql_fetch
(
stmt
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
fprintf
(
stdout
,
"
\n
data: %
g
"
,
data
);
fprintf
(
stdout
,
"
\n
data: %
s
"
,
data
);
assert
(
data
==
8
.
0
);
assert
(
strcmp
(
data
,
"8.00"
)
==
0
);
rc
=
mysql_fetch
(
stmt
);
rc
=
mysql_fetch
(
stmt
);
assert
(
rc
==
MYSQL_NO_DATA
);
assert
(
rc
==
MYSQL_NO_DATA
);
data
=
5
.
61
;
strcpy
(
data
,
"5.61"
)
;
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
data
=
0
;
data
[
0
]
=
0
;
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
rc
=
mysql_fetch
(
stmt
);
rc
=
mysql_fetch
(
stmt
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
fprintf
(
stdout
,
"
\n
data: %
g
"
,
data
);
fprintf
(
stdout
,
"
\n
data: %
s
"
,
data
);
assert
(
data
==
5
.
61
);
assert
(
strcmp
(
data
,
"5.61"
)
==
0
);
rc
=
mysql_fetch
(
stmt
);
rc
=
mysql_fetch
(
stmt
);
assert
(
rc
==
MYSQL_NO_DATA
);
assert
(
rc
==
MYSQL_NO_DATA
);
...
@@ -6624,19 +6624,19 @@ static void test_decimal_bug()
...
@@ -6624,19 +6624,19 @@ static void test_decimal_bug()
rc
=
mysql_fetch
(
stmt
);
rc
=
mysql_fetch
(
stmt
);
assert
(
rc
==
MYSQL_NO_DATA
);
assert
(
rc
==
MYSQL_NO_DATA
);
data
=
10
.
22
;
is_null
=
0
;
strcpy
(
data
,
"10.22"
)
;
is_null
=
0
;
rc
=
mysql_execute
(
stmt
);
rc
=
mysql_execute
(
stmt
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
data
=
0
;
data
[
0
]
=
0
;
rc
=
mysql_bind_result
(
stmt
,
bind
);
rc
=
mysql_bind_result
(
stmt
,
bind
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
rc
=
mysql_fetch
(
stmt
);
rc
=
mysql_fetch
(
stmt
);
mystmt
(
stmt
,
rc
);
mystmt
(
stmt
,
rc
);
fprintf
(
stdout
,
"
\n
data: %
g
"
,
data
);
fprintf
(
stdout
,
"
\n
data: %
s
"
,
data
);
assert
(
data
==
10
.
22
);
assert
(
strcmp
(
data
,
"10.22"
)
==
0
);
rc
=
mysql_fetch
(
stmt
);
rc
=
mysql_fetch
(
stmt
);
assert
(
rc
==
MYSQL_NO_DATA
);
assert
(
rc
==
MYSQL_NO_DATA
);
...
@@ -8256,7 +8256,7 @@ static void test_distinct()
...
@@ -8256,7 +8256,7 @@ static void test_distinct()
rc
=
mysql_query
(
mysql
,
rc
=
mysql_query
(
mysql
,
"insert into t1 values (1,1), (2, 2), (3,3), (4,4), (5,5),\
"insert into t1 values (1,1), (2, 2), (3,3), (4,4), (5,5),\
(1,10), (2, 20), (3,30), (4,40), (5,50)
\
;"
);
(1,10), (2, 20), (3,30), (4,40), (5,50);"
);
myquery
(
rc
);
myquery
(
rc
);
for
(
i
=
0
;
i
<
3
;
i
++
)
for
(
i
=
0
;
i
<
3
;
i
++
)
...
...
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