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
b023e183
Commit
b023e183
authored
Aug 05, 2004
by
mronstrom@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/Users/mikron/mysql-4.1
parents
75b85ebc
48c8a11a
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
260 additions
and
196 deletions
+260
-196
BUILD/compile-hpux11-parisc2-aCC
BUILD/compile-hpux11-parisc2-aCC
+1
-1
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
configure.in
configure.in
+2
-2
libmysql/libmysql.c
libmysql/libmysql.c
+248
-191
netware/mysql_test_run.c
netware/mysql_test_run.c
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-1
tests/client_test.c
tests/client_test.c
+6
-0
No files found.
BUILD/compile-hpux11-parisc2-aCC
View file @
b023e183
...
...
@@ -13,7 +13,7 @@ fi
# Also sends +Oprocelim and +Ofastaccess to the linker
# (see ld(1)).
release_flags
=
"-fast +O
4
"
release_flags
=
"-fast +O
3
"
# -z Do not bind anything to address zero. This option
# allows runtime detection of null pointers. See the
...
...
BitKeeper/etc/logging_ok
View file @
b023e183
...
...
@@ -84,6 +84,7 @@ joreland@mysql.com
jorge@linux.jorge.mysql.com
jplindst@t41.(none)
kaj@work.mysql.com
kent@mysql.com
konstantin@mysql.com
kostja@oak.local
lenz@kallisto.mysql.com
...
...
configure.in
View file @
b023e183
...
...
@@ -2961,10 +2961,10 @@ then
if
test
"
$with_debug
"
=
"yes"
then
# Medium debug.
NDB_DEFS
=
"-DVM_TRACE -DERROR_INSERT -DARRAY_GUARD"
NDB_DEFS
=
"-D
NDB_DEBUG -D
VM_TRACE -DERROR_INSERT -DARRAY_GUARD"
elif
test
"
$with_debug
"
=
"full"
then
NDB_DEFS
=
"-DVM_TRACE -DERROR_INSERT -DARRAY_GUARD"
NDB_DEFS
=
"-D
NDB_DEBUG_FULL -D
VM_TRACE -DERROR_INSERT -DARRAY_GUARD"
else
NDB_DEFS
=
"-DNDEBUG"
fi
...
...
libmysql/libmysql.c
View file @
b023e183
This diff is collapsed.
Click to expand it.
netware/mysql_test_run.c
View file @
b023e183
...
...
@@ -170,7 +170,7 @@ void report_stats()
log_msg
(
"
\n
The .out and .err files in %s may give you some
\n
"
,
result_dir
);
log_msg
(
"hint of what when wrong.
\n
"
);
log_msg
(
"
\n
If you want to report this error, please first read the documentation
\n
"
);
log_msg
(
"at: http://www.mysql.com/doc/
M/y
/MySQL_test_suite.html
\n
"
);
log_msg
(
"at: http://www.mysql.com/doc/
en
/MySQL_test_suite.html
\n
"
);
}
log_msg
(
"
\n
%.02f total minutes elapsed in the test cases
\n\n
"
,
total_time
/
60
);
...
...
sql/mysqld.cc
View file @
b023e183
...
...
@@ -1788,7 +1788,7 @@ bytes of memory\n", ((ulong) sql_key_cache->key_cache_mem_size +
You seem to be running 32-bit Linux and have %d concurrent connections.
\n
\
If you have not changed STACK_SIZE in LinuxThreads and built the binary
\n
\
yourself, LinuxThreads is quite likely to steal a part of the global heap for
\n
\
the thread stack. Please read http://www.mysql.com/doc/
L/i
/Linux.html
\n\n
"
,
the thread stack. Please read http://www.mysql.com/doc/
en
/Linux.html
\n\n
"
,
thread_count
);
}
#endif
/* HAVE_LINUXTHREADS */
...
...
tests/client_test.c
View file @
b023e183
...
...
@@ -9862,11 +9862,17 @@ static void test_bug4026()
time_in
.
minute
=
59
;
time_in
.
second
=
59
;
time_in
.
second_part
=
123456
;
/*
This is not necessary, just to make assert below work: this field
is filled in when time is received from server
*/
time_in
.
time_type
=
MYSQL_TIMESTAMP_TIME
;
datetime_in
=
time_in
;
datetime_in
.
year
=
2003
;
datetime_in
.
month
=
12
;
datetime_in
.
day
=
31
;
datetime_in
.
time_type
=
MYSQL_TIMESTAMP_DATETIME
;
mysql_stmt_bind_param
(
stmt
,
bind
);
...
...
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