We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22ac8c9 commit 2dd7b75Copy full SHA for 2dd7b75
1 file changed
test/classes/ConfigStorage/RelationTest.php
@@ -1939,13 +1939,17 @@ public function testInitRelationParamsDisabledTrackingOthersExist(): void
1939
['NULL'],
1940
);
1941
1942
+ $dummyDbi->addResult(
1943
+ 'SELECT `tables` FROM `PMA-storage`.`pma__favorite_custom` WHERE `username` = \'\'',
1944
+ [],
1945
+ );
1946
$dummyDbi->addResult(
1947
'SELECT `tables` FROM `PMA-storage`.`pma__favorite_custom` WHERE `username` = \'\'',
1948
[],
1949
1950
1951
$_SESSION['relation'] = [];
- $_SESSION['tmpval'] = [];
1952
+ (new ReflectionClass(Relation::class))->getProperty('cache')->setValue([]);
1953
1954
$relation = new Relation($dbi);
1955
$relation->initRelationParamsCache();
0 commit comments