-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
[stable22] add a prefix index to filecache.path, attempt 2 #29324
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
Changes from all commits
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 |
|---|---|---|
|
|
@@ -22,6 +22,9 @@ | |
| */ | ||
| namespace OCP\DB; | ||
|
|
||
| use Doctrine\DBAL\Exception; | ||
| use Doctrine\DBAL\Platforms\AbstractPlatform; | ||
|
|
||
| /** | ||
| * Interface ISchemaWrapper | ||
| * | ||
|
|
@@ -81,12 +84,22 @@ public function getTables(); | |
| * @since 13.0.0 | ||
| */ | ||
| public function getTableNames(); | ||
|
|
||
| /** | ||
| * Gets all table names | ||
| * | ||
| * @return array | ||
| * @since 13.0.0 | ||
| */ | ||
| public function getTableNamesWithoutPrefix(); | ||
|
|
||
| /** | ||
| * Gets the DatabasePlatform for the database. | ||
| * | ||
| * @return AbstractPlatform | ||
| * | ||
| * @throws Exception | ||
| * @since 22.2.4 | ||
| */ | ||
| public function getDatabasePlatform(); | ||
|
Member
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. introducing a new API in a backport ?
Member
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. I've updated the
Member
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.
Member
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. Note that we have done backported public api's in the past like this. I don't see a way around adding this and no real downside
Member
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. @PVince81 |
||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.