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
d30375be
Commit
d30375be
authored
May 23, 2009
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Workaround a compiler that does not support certain C99 features for C code.
parent
e2aad850
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tests/mysql_client_test.c
tests/mysql_client_test.c
+2
-2
No files found.
tests/mysql_client_test.c
View file @
d30375be
...
...
@@ -17744,8 +17744,8 @@ static void test_bug43560(void)
MYSQL_STMT
*
stmt
=
0
;
MYSQL_BIND
bind
;
my_bool
is_null
=
0
;
c
onst
uint
BUFSIZE
=
256
;
c
har
buffer
[
BUFSIZE
]
;
c
har
buffer
[
256
]
;
c
onst
uint
BUFSIZE
=
sizeof
(
buffer
)
;
const
char
*
values
[]
=
{
"eins"
,
"zwei"
,
"drei"
,
"viele"
,
NULL
};
const
char
insert_str
[]
=
"INSERT INTO t1 (c2) VALUES (?)"
;
unsigned
long
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