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
1151fc8b
Commit
1151fc8b
authored
Dec 17, 2013
by
Steve Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unnecessary method overrides in DB2
parent
531d8a69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
48 deletions
+0
-48
DB2Platform.php
lib/Doctrine/DBAL/Platforms/DB2Platform.php
+0
-48
No files found.
lib/Doctrine/DBAL/Platforms/DB2Platform.php
View file @
1151fc8b
...
...
@@ -235,30 +235,6 @@ class DB2Platform extends AbstractPlatform
return
'TRUNCATE '
.
$tableName
.
' IMMEDIATE'
;
}
/**
* {@inheritDoc}
*/
public
function
getListDatabasesSQL
()
{
throw
DBALException
::
notSupported
(
__METHOD__
);
}
/**
* {@inheritDoc}
*/
public
function
getListSequencesSQL
(
$database
)
{
throw
DBALException
::
notSupported
(
__METHOD__
);
}
/**
* {@inheritDoc}
*/
public
function
getListTableConstraintsSQL
(
$table
)
{
throw
DBALException
::
notSupported
(
__METHOD__
);
}
/**
* This code fragment is originally from the Zend_Db_Adapter_Db2 class.
*
...
...
@@ -297,14 +273,6 @@ class DB2Platform extends AbstractPlatform
return
"SELECT NAME FROM SYSIBM.SYSTABLES WHERE TYPE = 'T'"
;
}
/**
* {@inheritDoc}
*/
public
function
getListUsersSQL
()
{
throw
DBALException
::
notSupported
(
__METHOD__
);
}
/**
* {@inheritDoc}
*/
...
...
@@ -383,22 +351,6 @@ class DB2Platform extends AbstractPlatform
return
"DROP VIEW "
.
$name
;
}
/**
* {@inheritDoc}
*/
public
function
getDropSequenceSQL
(
$sequence
)
{
throw
DBALException
::
notSupported
(
__METHOD__
);
}
/**
* {@inheritDoc}
*/
public
function
getSequenceNextValSQL
(
$sequenceName
)
{
throw
DBALException
::
notSupported
(
__METHOD__
);
}
/**
* {@inheritDoc}
*/
...
...
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