Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15454349
D19837.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D19837.diff
View Options
diff --git a/src/applications/feed/query/PhabricatorFeedQuery.php b/src/applications/feed/query/PhabricatorFeedQuery.php
--- a/src/applications/feed/query/PhabricatorFeedQuery.php
+++ b/src/applications/feed/query/PhabricatorFeedQuery.php
@@ -64,22 +64,20 @@
}
if ($this->chronologicalKeys !== null) {
- // NOTE: We want to use integers in the query so we can take advantage
- // of keys, but can't use %d on 32-bit systems. Make sure all the keys
- // are integers and then format them raw.
-
- $keys = $this->chronologicalKeys;
- foreach ($keys as $key) {
- if (!ctype_digit($key)) {
- throw new Exception(
- pht("Key '%s' is not a valid chronological key!", $key));
- }
- }
+ // NOTE: We can't use "%d" to format these large integers on 32-bit
+ // systems. Historically, we formatted these into integers in an
+ // awkward way because MySQL could sometimes (?) fail to use the proper
+ // keys if the values were formatted as strings instead of integers.
+
+ // After the "qsprintf()" update to use PhutilQueryString, we can no
+ // longer do this in a sneaky way. However, the MySQL key issue also
+ // no longer appears to reproduce across several systems. So: just use
+ // strings until problems turn up?
$where[] = qsprintf(
$conn,
- 'ref.chronologicalKey IN (%LQ)',
- $keys);
+ 'ref.chronologicalKey IN (%Ls)',
+ $this->chronologicalKeys);
}
// NOTE: We may not have 64-bit PHP, so do the shifts in MySQL instead.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 30, 6:06 PM (5 d, 23 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7688432
Default Alt Text
D19837.diff (1 KB)
Attached To
Mode
D19837: Make a Feed query construction less clever/sneaky for new qsprintf() semantics
Attached
Detach File
Event Timeline
Log In to Comment