Details
-
Task
-
Status: Stalled (View Workflow)
-
Minor
-
Resolution: Unresolved
-
None
-
None
Description
llstr() is a workaround for printing longlongs from the times when %llu was not supported
serg, https://github.com/MariaDB/server/pull/3360#discussion_r1833301827
should be replaced, for example,
char buff[32]; |
my_snprintf("The value is: %s", llstr(val, buff)); |
with
my_snprintf("The value is: %lld", val); |
Attachments
Issue Links
- relates to
-
MDEV-35460 Phase out integer typedefs and macros in favor of C/C++ Standard ones
-
- Open
-
- split to
-
MDEV-35758 Refactor the ADMIN_KILL section of mysqladmin.cc
-
- Open
-