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
64ceea7a
Commit
64ceea7a
authored
Mar 01, 2011
by
Michael Widenius
Browse files
Options
Browse Files
Download
Plain Diff
Merge with 5.1 to get fixes for tests and compiler warnings
parents
7a79fe52
8fa14ba6
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
11 deletions
+7
-11
mysql-test/suite/parts/t/partition_alter1_1_2_innodb.test
mysql-test/suite/parts/t/partition_alter1_1_2_innodb.test
+0
-3
mysql-test/suite/parts/t/partition_alter1_2_innodb.test
mysql-test/suite/parts/t/partition_alter1_2_innodb.test
+0
-2
mysql-test/suite/parts/t/partition_alter4_innodb.test
mysql-test/suite/parts/t/partition_alter4_innodb.test
+0
-2
mysql-test/suite/parts/t/partition_decimal_innodb.test
mysql-test/suite/parts/t/partition_decimal_innodb.test
+1
-0
mysql-test/suite/parts/t/partition_decimal_myisam.test
mysql-test/suite/parts/t/partition_decimal_myisam.test
+1
-2
sql-common/my_time.c
sql-common/my_time.c
+3
-0
storage/pbxt/src/table_xt.cc
storage/pbxt/src/table_xt.cc
+2
-2
No files found.
mysql-test/suite/parts/t/partition_alter1_1_2_innodb.test
View file @
64ceea7a
...
...
@@ -51,9 +51,6 @@ let $more_pk_ui_tests= 0;
# The server must support partitioning.
--
source
include
/
have_partition
.
inc
# This test takes long time, so only run it with the --big mtr-flag.
--
source
include
/
big_test
.
inc
#------------------------------------------------------------------------------#
# Engine specific settings and requirements
...
...
mysql-test/suite/parts/t/partition_alter1_2_innodb.test
View file @
64ceea7a
...
...
@@ -28,8 +28,6 @@
#------------------------------------------------------------------------------#
# General not engine specific settings and requirements
--
source
include
/
big_test
.
inc
##### Options, for debugging support #####
let
$debug
=
0
;
let
$with_partitioning
=
1
;
...
...
mysql-test/suite/parts/t/partition_alter4_innodb.test
View file @
64ceea7a
...
...
@@ -22,8 +22,6 @@
# any of the variables.
#
--
source
include
/
big_test
.
inc
#------------------------------------------------------------------------------#
# General not engine specific settings and requirements
...
...
mysql-test/suite/parts/t/partition_decimal_innodb.test
View file @
64ceea7a
...
...
@@ -28,6 +28,7 @@
##### Options, for debugging support #####
let
$debug
=
0
;
--
source
include
/
big_test
.
inc
# The server must support partitioning.
--
source
include
/
have_partition
.
inc
...
...
mysql-test/suite/parts/t/partition_decimal_myisam.test
View file @
64ceea7a
...
...
@@ -22,14 +22,13 @@
# any of the variables.
#
--
source
include
/
long_test
.
inc
#------------------------------------------------------------------------------#
# General not engine specific settings and requirements
##### Options, for debugging support #####
let
$debug
=
0
;
--
source
include
/
big_test
.
inc
# The server must support partitioning.
--
source
include
/
have_partition
.
inc
...
...
sql-common/my_time.c
View file @
64ceea7a
...
...
@@ -727,6 +727,9 @@ void my_init_time(void)
my_time
.
hour
=
(
uint
)
l_time
->
tm_hour
;
my_time
.
minute
=
(
uint
)
l_time
->
tm_min
;
my_time
.
second
=
(
uint
)
l_time
->
tm_sec
;
my_time
.
neg
=
0
;
my_time
.
second_part
=
0
;
my_time
.
time_type
=
MYSQL_TIMESTAMP_DATETIME
;
my_system_gmt_sec
(
&
my_time
,
&
my_time_zone
,
&
not_used
);
/* Init my_time_zone */
}
...
...
storage/pbxt/src/table_xt.cc
View file @
64ceea7a
...
...
@@ -726,7 +726,7 @@ xtPublic void xt_check_tables(XTThreadPtr self)
{
u_int
edx
;
XTTableEntryPtr
te_ptr
;
volatile
XTTableHPtr
tab
;
volatile
XTTableHPtr
tab
=
0
;
char
path
[
PATH_MAX
];
enter_
();
...
...
@@ -1132,7 +1132,7 @@ static int tab_new_handle(XTThreadPtr self, XTTableHPtr *r_tab, XTDatabaseHPtr d
XTOpenFilePtr
of_rec
,
of_ind
;
XTTableEntryPtr
te_ptr
;
size_t
tab_format_offset
;
size_t
tab_head_size
;
size_t
tab_head_size
=
0
;
enter_
();
...
...
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