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
bbb5e1db
Commit
bbb5e1db
authored
Nov 18, 2013
by
Paul Klimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Redundant support of schema name removed from Sphinx
parent
e1065ef1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
38 deletions
+10
-38
IndexSchema.php
extensions/sphinx/IndexSchema.php
+0
-4
QueryBuilder.php
extensions/sphinx/QueryBuilder.php
+0
-1
Schema.php
extensions/sphinx/Schema.php
+10
-33
No files found.
extensions/sphinx/IndexSchema.php
View file @
bbb5e1db
...
@@ -21,10 +21,6 @@ use yii\base\InvalidParamException;
...
@@ -21,10 +21,6 @@ use yii\base\InvalidParamException;
class
IndexSchema
extends
Object
class
IndexSchema
extends
Object
{
{
/**
/**
* @var string name of the schema that this index belongs to.
*/
public
$schemaName
;
/**
* @var string name of this index.
* @var string name of this index.
*/
*/
public
$name
;
public
$name
;
...
...
extensions/sphinx/QueryBuilder.php
View file @
bbb5e1db
...
@@ -581,7 +581,6 @@ class QueryBuilder extends Object
...
@@ -581,7 +581,6 @@ class QueryBuilder extends Object
return
is_array
(
$columns
)
?
implode
(
', '
,
$columns
)
:
$columns
;
return
is_array
(
$columns
)
?
implode
(
', '
,
$columns
)
:
$columns
;
}
}
/**
/**
* Parses the condition specification and generates the corresponding SQL expression.
* Parses the condition specification and generates the corresponding SQL expression.
* @param string|array $condition the condition specification. Please refer to [[Query::where()]]
* @param string|array $condition the condition specification. Please refer to [[Query::where()]]
...
...
extensions/sphinx/Schema.php
View file @
bbb5e1db
...
@@ -38,7 +38,7 @@ class Schema extends Object
...
@@ -38,7 +38,7 @@ class Schema extends Object
/**
/**
* @var array list of ALL index names in the Sphinx
* @var array list of ALL index names in the Sphinx
*/
*/
private
$_indexNames
=
[]
;
private
$_indexNames
;
/**
/**
* @var array list of loaded index metadata (index name => IndexSchema)
* @var array list of loaded index metadata (index name => IndexSchema)
*/
*/
...
@@ -83,19 +83,13 @@ class Schema extends Object
...
@@ -83,19 +83,13 @@ class Schema extends Object
}
}
/**
/**
* Resolves the index name
and schema name (if any)
.
* Resolves the index name.
* @param IndexSchema $index the index metadata object
* @param IndexSchema $index the index metadata object
* @param string $name the index name
* @param string $name the index name
*/
*/
protected
function
resolveIndexNames
(
$index
,
$name
)
protected
function
resolveIndexNames
(
$index
,
$name
)
{
{
$parts
=
explode
(
'.'
,
str_replace
(
'`'
,
''
,
$name
));
$index
->
name
=
str_replace
(
'`'
,
''
,
$name
);
if
(
isset
(
$parts
[
1
]))
{
$index
->
schemaName
=
$parts
[
0
];
$index
->
name
=
$parts
[
1
];
}
else
{
$index
->
name
=
$parts
[
0
];
}
}
}
/**
/**
...
@@ -163,19 +157,15 @@ class Schema extends Object
...
@@ -163,19 +157,15 @@ class Schema extends Object
/**
/**
* Returns the metadata for all indexes in the database.
* Returns the metadata for all indexes in the database.
* @param string $schema the schema of the indexes. Defaults to empty string, meaning the current or default schema name.
* @param boolean $refresh whether to fetch the latest available index schemas. If this is false,
* @param boolean $refresh whether to fetch the latest available index schemas. If this is false,
* cached data may be returned if available.
* cached data may be returned if available.
* @return IndexSchema[] the metadata for all indexes in the Sphinx.
* @return IndexSchema[] the metadata for all indexes in the Sphinx.
* Each array element is an instance of [[IndexSchema]] or its child class.
* Each array element is an instance of [[IndexSchema]] or its child class.
*/
*/
public
function
getTableSchemas
(
$
schema
=
''
,
$
refresh
=
false
)
public
function
getTableSchemas
(
$refresh
=
false
)
{
{
$indexes
=
[];
$indexes
=
[];
foreach
(
$this
->
getIndexNames
(
$schema
,
$refresh
)
as
$name
)
{
foreach
(
$this
->
getIndexNames
(
$refresh
)
as
$name
)
{
if
(
$schema
!==
''
)
{
$name
=
$schema
.
'.'
.
$name
;
}
if
((
$index
=
$this
->
getIndexSchema
(
$name
,
$refresh
))
!==
null
)
{
if
((
$index
=
$this
->
getIndexSchema
(
$name
,
$refresh
))
!==
null
)
{
$indexes
[]
=
$index
;
$indexes
[]
=
$index
;
}
}
...
@@ -185,31 +175,25 @@ class Schema extends Object
...
@@ -185,31 +175,25 @@ class Schema extends Object
/**
/**
* Returns all index names in the database.
* Returns all index names in the database.
* @param string $schema the schema of the indexes. Defaults to empty string, meaning the current or default schema name.
* If not empty, the returned index names will be prefixed with the schema name.
* @param boolean $refresh whether to fetch the latest available index names. If this is false,
* @param boolean $refresh whether to fetch the latest available index names. If this is false,
* index names fetched previously (if available) will be returned.
* index names fetched previously (if available) will be returned.
* @return string[] all index names in the database.
* @return string[] all index names in the database.
*/
*/
public
function
getIndexNames
(
$
schema
=
''
,
$
refresh
=
false
)
public
function
getIndexNames
(
$refresh
=
false
)
{
{
if
(
!
isset
(
$this
->
_indexNames
[
$schema
]
)
||
$refresh
)
{
if
(
!
isset
(
$this
->
_indexNames
)
||
$refresh
)
{
$this
->
_indexNames
[
$schema
]
=
$this
->
findIndexNames
(
$schema
);
$this
->
_indexNames
=
$this
->
findIndexNames
(
);
}
}
return
$this
->
_indexNames
[
$schema
]
;
return
$this
->
_indexNames
;
}
}
/**
/**
* Returns all index names in the database.
* Returns all index names in the database.
* @param string $schema the schema of the indexes. Defaults to empty string, meaning the current or default schema.
* @return array all index names in the database. The names have NO schema name prefix.
* @return array all index names in the database. The names have NO schema name prefix.
*/
*/
protected
function
findIndexNames
(
$schema
=
''
)
protected
function
findIndexNames
()
{
{
$sql
=
'SHOW TABLES'
;
$sql
=
'SHOW TABLES'
;
if
(
$schema
!==
''
)
{
$sql
.=
' FROM '
.
$this
->
quoteSimpleIndexName
(
$schema
);
}
return
$this
->
db
->
createCommand
(
$sql
)
->
queryColumn
();
return
$this
->
db
->
createCommand
(
$sql
)
->
queryColumn
();
}
}
...
@@ -304,15 +288,8 @@ class Schema extends Object
...
@@ -304,15 +288,8 @@ class Schema extends Object
if
(
strpos
(
$name
,
'('
)
!==
false
||
strpos
(
$name
,
'{{'
)
!==
false
)
{
if
(
strpos
(
$name
,
'('
)
!==
false
||
strpos
(
$name
,
'{{'
)
!==
false
)
{
return
$name
;
return
$name
;
}
}
if
(
strpos
(
$name
,
'.'
)
===
false
)
{
return
$this
->
quoteSimpleIndexName
(
$name
);
return
$this
->
quoteSimpleIndexName
(
$name
);
}
}
$parts
=
explode
(
'.'
,
$name
);
foreach
(
$parts
as
$i
=>
$part
)
{
$parts
[
$i
]
=
$this
->
quoteSimpleIndexName
(
$part
);
}
return
implode
(
'.'
,
$parts
);
}
/**
/**
* Quotes a column name for use in a query.
* Quotes a column name for use in a query.
...
...
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