Query Logging output missing a comma
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Drizzle |
Fix Released
|
Medium
|
Jay Pipes |
Bug Description
Version 2009.07.1097 logging_query output appears to be missing a comma between third and second last variables. as shown in the following output
Further information:
124821456182459
124821458258834
Code seems to confirm a missing ',' in the snprintf however this syntax with 64bit ints is newer then my C skills.
snprintf(msgbuf, MAX_MSG_LEN,
// dont need to quote the db name, always CSV safe
dbl, dbs,
// do need to quote the query
// command_name is defined in drizzled/
// dont need to quote the command name, always CSV safe
// counters are at end, to make it easier to add more
Related branches
- Brian Aker: Pending requested
- Drizzle Developers: Pending requested
-
Diff: 129 lines (+23/-23)2 files modifieddrizzled/temporal_format.cc (+23/-22)
drizzled/temporal_format.h (+0/-1)
Changed in drizzle: | |
assignee: | nobody → Jay Pipes (jaypipes) |
milestone: | none → aloha |
Changed in drizzle: | |
status: | Fix Committed → Fix Released |
Yep, your diagnosis is correct. This should be trivial fix like you point out.