Disable warning about direct text table access for now
authordaniel <daniel.kinzler@wikimedia.de>
Fri, 3 Aug 2018 11:21:41 +0000 (13:21 +0200)
committerdaniel <daniel.kinzler@wikimedia.de>
Fri, 3 Aug 2018 11:21:41 +0000 (13:21 +0200)
Bug: T201164
Change-Id: I2736ba9e2d35133749dd2d40024af4dd76ded334

includes/Storage/RevisionStore.php

index d090d8b..81b675e 100644 (file)
@@ -2149,7 +2149,9 @@ class RevisionStore
                                // NOTE: even when this class is set to not read from the old schema, callers
                                // should still be able to join against the text table, as long as we are still
                                // writing the old schema for compatibility.
-                               wfDeprecated( __METHOD__ . ' with `text` option', '1.32' );
+                               // TODO: This should trigger a deprecation warning eventually (T200918), but not
+                               // before all known usages are removed (see T198341 and T201164).
+                               // wfDeprecated( __METHOD__ . ' with `text` option', '1.32' );
                        }
 
                        $ret['tables'][] = 'text';