- since $table can be now schema.table, this needs being taken care off
- maybe this foreach(explode()) is a bit an overkill as only 1 or 2 entries
  can be found in it
This commit is contained in:
Roland Häder 2022-06-21 12:43:24 +02:00
parent 0d81a08e3c
commit 945cd1a2c2
Signed by: roland
GPG Key ID: C82EDE5DDFA0BA77
2 changed files with 22 additions and 1 deletions

View File

@ -1673,6 +1673,7 @@ CREATE TABLE IF NOT EXISTS `worker-ipc` (
-- --
-- VIEW application-view -- VIEW application-view
-- --
DROP VIEW IF EXISTS `application-view`;
CREATE VIEW `application-view` AS SELECT CREATE VIEW `application-view` AS SELECT
`application`.`id` AS `id`, `application`.`id` AS `id`,
`application-token`.`uid` AS `uid`, `application-token`.`uid` AS `uid`,
@ -1695,6 +1696,7 @@ CREATE VIEW `application-view` AS SELECT
-- --
-- VIEW post-user-view -- VIEW post-user-view
-- --
DROP VIEW IF EXISTS `post-user-view`;
CREATE VIEW `post-user-view` AS SELECT CREATE VIEW `post-user-view` AS SELECT
`post-user`.`id` AS `id`, `post-user`.`id` AS `id`,
`post-user`.`id` AS `post-user-id`, `post-user`.`id` AS `post-user-id`,
@ -1868,6 +1870,7 @@ CREATE VIEW `post-user-view` AS SELECT
-- --
-- VIEW post-thread-user-view -- VIEW post-thread-user-view
-- --
DROP VIEW IF EXISTS `post-thread-user-view`;
CREATE VIEW `post-thread-user-view` AS SELECT CREATE VIEW `post-thread-user-view` AS SELECT
`post-user`.`id` AS `id`, `post-user`.`id` AS `id`,
`post-user`.`id` AS `post-user-id`, `post-user`.`id` AS `post-user-id`,
@ -2040,6 +2043,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT
-- --
-- VIEW post-view -- VIEW post-view
-- --
DROP VIEW IF EXISTS `post-view`;
CREATE VIEW `post-view` AS SELECT CREATE VIEW `post-view` AS SELECT
`item-uri`.`uri` AS `uri`, `item-uri`.`uri` AS `uri`,
`post`.`uri-id` AS `uri-id`, `post`.`uri-id` AS `uri-id`,
@ -2175,6 +2179,7 @@ CREATE VIEW `post-view` AS SELECT
-- --
-- VIEW post-thread-view -- VIEW post-thread-view
-- --
DROP VIEW IF EXISTS `post-thread-view`;
CREATE VIEW `post-thread-view` AS SELECT CREATE VIEW `post-thread-view` AS SELECT
`item-uri`.`uri` AS `uri`, `item-uri`.`uri` AS `uri`,
`post-thread`.`uri-id` AS `uri-id`, `post-thread`.`uri-id` AS `uri-id`,
@ -2310,6 +2315,7 @@ CREATE VIEW `post-thread-view` AS SELECT
-- --
-- VIEW category-view -- VIEW category-view
-- --
DROP VIEW IF EXISTS `category-view`;
CREATE VIEW `category-view` AS SELECT CREATE VIEW `category-view` AS SELECT
`post-category`.`uri-id` AS `uri-id`, `post-category`.`uri-id` AS `uri-id`,
`post-category`.`uid` AS `uid`, `post-category`.`uid` AS `uid`,
@ -2323,6 +2329,7 @@ CREATE VIEW `category-view` AS SELECT
-- --
-- VIEW collection-view -- VIEW collection-view
-- --
DROP VIEW IF EXISTS `collection-view`;
CREATE VIEW `collection-view` AS SELECT CREATE VIEW `collection-view` AS SELECT
`post-collection`.`uri-id` AS `uri-id`, `post-collection`.`uri-id` AS `uri-id`,
`post-collection`.`type` AS `type`, `post-collection`.`type` AS `type`,
@ -2343,6 +2350,7 @@ CREATE VIEW `collection-view` AS SELECT
-- --
-- VIEW tag-view -- VIEW tag-view
-- --
DROP VIEW IF EXISTS `tag-view`;
CREATE VIEW `tag-view` AS SELECT CREATE VIEW `tag-view` AS SELECT
`post-tag`.`uri-id` AS `uri-id`, `post-tag`.`uri-id` AS `uri-id`,
`post-tag`.`type` AS `type`, `post-tag`.`type` AS `type`,
@ -2358,6 +2366,7 @@ CREATE VIEW `tag-view` AS SELECT
-- --
-- VIEW network-item-view -- VIEW network-item-view
-- --
DROP VIEW IF EXISTS `network-item-view`;
CREATE VIEW `network-item-view` AS SELECT CREATE VIEW `network-item-view` AS SELECT
`post-user`.`uri-id` AS `uri-id`, `post-user`.`uri-id` AS `uri-id`,
`parent-post`.`id` AS `parent`, `parent-post`.`id` AS `parent`,
@ -2388,6 +2397,7 @@ CREATE VIEW `network-item-view` AS SELECT
-- --
-- VIEW network-thread-view -- VIEW network-thread-view
-- --
DROP VIEW IF EXISTS `network-thread-view`;
CREATE VIEW `network-thread-view` AS SELECT CREATE VIEW `network-thread-view` AS SELECT
`post-thread-user`.`uri-id` AS `uri-id`, `post-thread-user`.`uri-id` AS `uri-id`,
`parent-post`.`id` AS `parent`, `parent-post`.`id` AS `parent`,
@ -2416,6 +2426,7 @@ CREATE VIEW `network-thread-view` AS SELECT
-- --
-- VIEW owner-view -- VIEW owner-view
-- --
DROP VIEW IF EXISTS `owner-view`;
CREATE VIEW `owner-view` AS SELECT CREATE VIEW `owner-view` AS SELECT
`contact`.`id` AS `id`, `contact`.`id` AS `id`,
`contact`.`uid` AS `uid`, `contact`.`uid` AS `uid`,
@ -2543,6 +2554,7 @@ CREATE VIEW `owner-view` AS SELECT
-- --
-- VIEW account-view -- VIEW account-view
-- --
DROP VIEW IF EXISTS `account-view`;
CREATE VIEW `account-view` AS SELECT CREATE VIEW `account-view` AS SELECT
`contact`.`id` AS `id`, `contact`.`id` AS `id`,
`contact`.`url` AS `url`, `contact`.`url` AS `url`,
@ -2628,6 +2640,7 @@ CREATE VIEW `account-view` AS SELECT
-- --
-- VIEW account-user-view -- VIEW account-user-view
-- --
DROP VIEW IF EXISTS `account-user-view`;
CREATE VIEW `account-user-view` AS SELECT CREATE VIEW `account-user-view` AS SELECT
`ucontact`.`id` AS `id`, `ucontact`.`id` AS `id`,
`contact`.`id` AS `pid`, `contact`.`id` AS `pid`,
@ -2731,6 +2744,7 @@ CREATE VIEW `account-user-view` AS SELECT
-- --
-- VIEW pending-view -- VIEW pending-view
-- --
DROP VIEW IF EXISTS `pending-view`;
CREATE VIEW `pending-view` AS SELECT CREATE VIEW `pending-view` AS SELECT
`register`.`id` AS `id`, `register`.`id` AS `id`,
`register`.`hash` AS `hash`, `register`.`hash` AS `hash`,
@ -2752,6 +2766,7 @@ CREATE VIEW `pending-view` AS SELECT
-- --
-- VIEW tag-search-view -- VIEW tag-search-view
-- --
DROP VIEW IF EXISTS `tag-search-view`;
CREATE VIEW `tag-search-view` AS SELECT CREATE VIEW `tag-search-view` AS SELECT
`post-tag`.`uri-id` AS `uri-id`, `post-tag`.`uri-id` AS `uri-id`,
`post-user`.`uid` AS `uid`, `post-user`.`uid` AS `uid`,
@ -2773,6 +2788,7 @@ CREATE VIEW `tag-search-view` AS SELECT
-- --
-- VIEW workerqueue-view -- VIEW workerqueue-view
-- --
DROP VIEW IF EXISTS `workerqueue-view`;
CREATE VIEW `workerqueue-view` AS SELECT CREATE VIEW `workerqueue-view` AS SELECT
`process`.`pid` AS `pid`, `process`.`pid` AS `pid`,
`workerqueue`.`priority` AS `priority` `workerqueue`.`priority` AS `priority`
@ -2783,6 +2799,7 @@ CREATE VIEW `workerqueue-view` AS SELECT
-- --
-- VIEW profile_field-view -- VIEW profile_field-view
-- --
DROP VIEW IF EXISTS `profile_field-view`;
CREATE VIEW `profile_field-view` AS SELECT CREATE VIEW `profile_field-view` AS SELECT
`profile_field`.`id` AS `id`, `profile_field`.`id` AS `id`,
`profile_field`.`uid` AS `uid`, `profile_field`.`uid` AS `uid`,

View File

@ -530,7 +530,11 @@ class DBA
foreach ($tables as $schema => $table) { foreach ($tables as $schema => $table) {
if (is_numeric($schema)) { if (is_numeric($schema)) {
$quotedTables[] = self::quoteIdentifier($table); $str = '';
foreach (explode('.', $table) as $part) {
$str .= self::quoteIdentifier($part) . '.';
}
$quotedTables[] = rtrim($str, '.');
} else { } else {
$quotedTables[] = self::quoteIdentifier($schema) . '.' . self::quoteIdentifier($table); $quotedTables[] = self::quoteIdentifier($schema) . '.' . self::quoteIdentifier($table);
} }