-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add getViews and categorize table types #3327
base: 5.x
Are you sure you want to change the base?
Changes from all commits
c32dd99
196405b
3162280
ae5187a
12b6d1f
825a4fe
19f1cdd
7a774e9
44a57f5
ef91b44
4890eca
0e14a68
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,21 +134,34 @@ public function drop($table) | |
$blueprint->drop(); | ||
} | ||
|
||
/** @inheritdoc */ | ||
/** | ||
* @inheritdoc | ||
* | ||
* Drops the entire database instead of deleting each collection individually. | ||
* | ||
* In MongoDB, dropping the whole database is much faster than dropping collections | ||
* one by one. The database will be automatically recreated when a new connection | ||
* writes to it. | ||
*/ | ||
public function dropAllTables() | ||
{ | ||
foreach ($this->getAllCollections() as $collection) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @GromNaN: This is now outside the scope of this PR, but I noted that That said, I'm not even sure that method is still necessary unless you're overriding a base method. It was protected, but this seemed like the only reference to it (in this file at least). |
||
$this->drop($collection); | ||
} | ||
$this->connection->getDatabase()->drop(); | ||
} | ||
|
||
/** @param string|null $schema Database name */ | ||
/** @param string|null $schema Database name */ | ||
public function getTables($schema = null) | ||
{ | ||
$db = $this->connection->getDatabase($schema); | ||
$collections = []; | ||
|
||
foreach ($db->listCollectionNames() as $collectionName) { | ||
foreach ($db->listCollections() as $collectionInfo) { | ||
$collectionName = $collectionInfo->getName(); | ||
|
||
// Skip views, which don't support aggregate | ||
if ($collectionInfo->getType() === 'view') { | ||
continue; | ||
} | ||
|
||
$stats = $db->selectCollection($collectionName)->aggregate([ | ||
['$collStats' => ['storageStats' => ['scale' => 1]]], | ||
['$project' => ['storageStats.totalSize' => 1]], | ||
|
@@ -165,9 +178,37 @@ public function getTables($schema = null) | |
]; | ||
} | ||
|
||
usort($collections, function ($a, $b) { | ||
return $a['name'] <=> $b['name']; | ||
}); | ||
usort($collections, fn ($a, $b) => $a['name'] <=> $b['name']); | ||
|
||
return $collections; | ||
} | ||
|
||
/** @param string|null $schema Database name */ | ||
public function getViews($schema = null) | ||
{ | ||
$db = $this->connection->getDatabase($schema); | ||
$collections = []; | ||
|
||
foreach ($db->listCollections() as $collectionInfo) { | ||
$collectionName = $collectionInfo->getName(); | ||
|
||
// Skip normal type collection | ||
if ($collectionInfo->getType() !== 'view') { | ||
continue; | ||
} | ||
|
||
$collections[] = [ | ||
'name' => $collectionName, | ||
'schema' => $db->getDatabaseName(), | ||
'schema_qualified_name' => $db->getDatabaseName() . '.' . $collectionName, | ||
'size' => null, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this is relevant, the information can be provided via |
||
'comment' => null, | ||
'collation' => null, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this is actually relevant, the information should be available via the |
||
'engine' => null, | ||
]; | ||
} | ||
|
||
usort($collections, fn ($a, $b) => $a['name'] <=> $b['name']); | ||
|
||
return $collections; | ||
} | ||
|
@@ -195,7 +236,6 @@ public function getTableListing($schema = null, $schemaQualified = false) | |
} | ||
|
||
$collections = array_merge(...array_values($collections)); | ||
|
||
sort($collections); | ||
|
||
return $collections; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doc block and its method have inconsistent indentation.