Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
cef90558
Unverified
Commit
cef90558
authored
Jun 05, 2019
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some unused code bits
parent
75bf53d7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
22 deletions
+0
-22
OCI8Statement.php
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
+0
-7
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+0
-12
SQLAzureShardManager.php
lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php
+0
-3
No files found.
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
View file @
cef90558
...
...
@@ -60,13 +60,6 @@ class OCI8Statement implements IteratorAggregate, Statement
/** @var OCI8Connection */
protected
$_conn
;
/**
* @deprecated
*
* @var string
*/
protected
static
$_PARAM
=
':param'
;
/** @var int[] */
protected
static
$fetchModeMap
=
[
FetchMode
::
MIXED
=>
OCI_BOTH
,
...
...
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
cef90558
...
...
@@ -1857,18 +1857,6 @@ abstract class AbstractPlatform
];
}
/**
* Common code for alter table statement generation that updates the changed Index and Foreign Key definitions.
*
* @deprecated
*
* @return string[]
*/
protected
function
_getAlterTableIndexForeignKeySQL
(
TableDiff
$diff
)
:
array
{
return
array_merge
(
$this
->
getPreAlterTableIndexForeignKeySQL
(
$diff
),
$this
->
getPostAlterTableIndexForeignKeySQL
(
$diff
));
}
/**
* Gets declaration of a number of fields in bulk.
*
...
...
lib/Doctrine/DBAL/Sharding/SQLAzure/SQLAzureShardManager.php
View file @
cef90558
...
...
@@ -11,7 +11,6 @@ use Doctrine\DBAL\Sharding\Exception\MissingDefaultFederationName;
use
Doctrine\DBAL\Sharding\Exception\MissingDistributionType
;
use
Doctrine\DBAL\Sharding\ShardingException
;
use
Doctrine\DBAL\Sharding\ShardManager
;
use
Doctrine\DBAL\Types\Type
;
use
RuntimeException
;
use
function
sprintf
;
...
...
@@ -192,8 +191,6 @@ class SQLAzureShardManager implements ShardManager
*/
public
function
splitFederation
(
$splitDistributionValue
)
:
void
{
$type
=
Type
::
getType
(
$this
->
distributionType
);
$sql
=
'ALTER FEDERATION '
.
$this
->
getFederationName
()
.
' '
.
'SPLIT AT ('
.
$this
->
getDistributionKey
()
.
' = '
.
$this
->
conn
->
quote
(
$splitDistributionValue
)
.
')'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment