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
b7bef32d
Commit
b7bef32d
authored
Feb 26, 2008
by
jani@hynda.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reverted wrong patch, fix for Windows 32bit build.
parent
6f03ad07
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
mysys/my_getsystime.c
mysys/my_getsystime.c
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+5
-1
No files found.
mysys/my_getsystime.c
View file @
b7bef32d
...
...
@@ -157,7 +157,7 @@ ulonglong my_micro_time_and_time(time_t *time_arg)
#if defined(__WIN__)
ulonglong
newtime
;
GetSystemTimeAsFileTime
((
FILETIME
*
)
&
newtime
);
*
time_arg
=
(
time_t
)
(
newtime
-
OFFSET_TO_EPOCH
)
/
10000000
;
*
time_arg
=
(
time_t
)
(
(
newtime
-
OFFSET_TO_EPOCH
)
/
10000000
)
;
return
(
newtime
/
10
);
#elif defined(HAVE_GETHRTIME)
/*
...
...
sql/mysqld.cc
View file @
b7bef32d
...
...
@@ -308,7 +308,11 @@ TYPELIB thread_handling_typelib=
const
char
*
first_keyword
=
"first"
,
*
binary_keyword
=
"BINARY"
;
const
char
*
my_localhost
=
"localhost"
,
*
delayed_user
=
"DELAYED"
;
#define GET_HA_ROWS (~ (ha_rows) 0)
#if SIZEOF_OFF_T > 4 && defined(BIG_TABLES)
#define GET_HA_ROWS GET_ULL
#else
#define GET_HA_ROWS GET_ULONG
#endif
bool
opt_large_files
=
sizeof
(
my_off_t
)
>
4
;
...
...
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