Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
PSDI Army
yii2
Commits
3e5491e0
Commit
3e5491e0
authored
Sep 13, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed cubrid table and column name quoting
` is a MySQL thing supported by cubrid. " is more common.
parent
b05442d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Schema.php
framework/yii/db/cubrid/Schema.php
+3
-3
No files found.
framework/yii/db/cubrid/Schema.php
View file @
3e5491e0
...
...
@@ -57,7 +57,7 @@ class Schema extends \yii\db\Schema
// Bit string data types
'bit'
=>
self
::
TYPE_STRING
,
'bit varying'
=>
self
::
TYPE_STRING
,
// Collection data types (considered strings for now
, may add support for them later
)
// Collection data types (considered strings for now)
'set'
=>
self
::
TYPE_STRING
,
'multiset'
=>
self
::
TYPE_STRING
,
'list'
=>
self
::
TYPE_STRING
,
...
...
@@ -73,7 +73,7 @@ class Schema extends \yii\db\Schema
*/
public
function
quoteSimpleTableName
(
$name
)
{
return
strpos
(
$name
,
"`"
)
!==
false
?
$name
:
"`"
.
$name
.
"`"
;
return
strpos
(
$name
,
'"'
)
!==
false
?
$name
:
'"'
.
$name
.
'"'
;
}
/**
...
...
@@ -84,7 +84,7 @@ class Schema extends \yii\db\Schema
*/
public
function
quoteSimpleColumnName
(
$name
)
{
return
strpos
(
$name
,
'
`'
)
!==
false
||
$name
===
'*'
?
$name
:
'`'
.
$name
.
'`
'
;
return
strpos
(
$name
,
'
"'
)
!==
false
||
$name
===
'*'
?
$name
:
'"'
.
$name
.
'"
'
;
}
/**
...
...
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