Skip to content
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

[stable29] fix(CoreQueryBuilder): Use shorter prefixes to stay below 30 characters for Oracle <12.2 #1701

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions lib/Db/CoreQueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,29 +56,29 @@ class CoreQueryBuilder extends ExtendedQueryBuilder {
use TArrayTools;


public const SINGLE = 'cs';
public const CIRCLE = 'cc';
public const MEMBER = 'mm';
public const OWNER = 'wn';
public const FEDERATED_EVENT = 'ev';
public const REMOTE = 'rm';
public const BASED_ON = 'on';
public const INITIATOR = 'in';
public const DIRECT_INITIATOR = 'di';
public const MEMBERSHIPS = 'ms';
public const CONFIG = 'cf';
public const UPSTREAM_MEMBERSHIPS = 'up';
public const INHERITANCE_FROM = 'ih';
public const INHERITED_BY = 'by';
public const INVITED_BY = 'nv';
public const MOUNT = 'mo';
public const MOUNTPOINT = 'mp';
public const SHARE = 'sh';
public const FILE_CACHE = 'fc';
public const STORAGES = 'st';
public const TOKEN = 'tk';
public const OPTIONS = 'pt';
public const HELPER = 'hp';
public const SINGLE = 'a';
public const CIRCLE = 'b';
public const MEMBER = 'c';
public const OWNER = 'd';
public const FEDERATED_EVENT = 'e';
public const REMOTE = 'f';
public const BASED_ON = 'g';
public const INITIATOR = 'h';
public const DIRECT_INITIATOR = 'i';
public const MEMBERSHIPS = 'j';
public const CONFIG = 'k';
public const UPSTREAM_MEMBERSHIPS = 'l';
public const INHERITANCE_FROM = 'm';
public const INHERITED_BY = 'n';
public const INVITED_BY = 'o';
public const MOUNT = 'p';
public const MOUNTPOINT = 'q';
public const SHARE = 'r';
public const FILE_CACHE = 's';
public const STORAGES = 't';
public const TOKEN = 'u';
public const OPTIONS = 'v';
public const HELPER = 'w';


public static $SQL_PATH = [
Expand Down
Loading