Changes between Version 2 and Version 3 of Ticket #52506, comment 5
- Timestamp:
- 01/26/2022 08:30:39 PM (16 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #52506, comment 5
v2 v3 1 1 As requested by Tonya (@hellofromtonya)... 2 2 3 I've split [https://github.com/WordPress/wordpress-develop/pull/2192 my patch] so we can discuss Identifiers (table/field names) separately tothe `IN()` operator.3 I've split [https://github.com/WordPress/wordpress-develop/pull/2192 my patch] so we can discuss escaping Identifiers (table/field names). The other part is covered by [https://core.trac.wordpress.org/ticket/54042 Ticket 54042] to support the `IN()` operator. 4 4 5 5 There should be no conflicts with printf(), as [https://en.wikipedia.org/wiki/Printf_format_string#Type_field printf() Types] have historically used both `%d` and `%i` for signed integers (it's `scanf()` that treats them differently). [https://www.php.net/manual/en/function.printf.php PHP printf()] only uses `%d`, with `%i` resulting in the fatal error `Unknown format specifier "i"`, so we can use `%i` for Identifiers.