mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	Fix manual cubrid links (#19436)
* Update Schema.php fix broken link * fix cubrid manual links * update links * fxi
This commit is contained in:
		@ -156,7 +156,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
 | 
				
			|||||||
    {
 | 
					    {
 | 
				
			||||||
        $sql = '';
 | 
					        $sql = '';
 | 
				
			||||||
        // limit is not optional in CUBRID
 | 
					        // limit is not optional in CUBRID
 | 
				
			||||||
        // http://www.cubrid.org/manual/90/en/LIMIT%20Clause
 | 
					        // https://www.cubrid.org/manual/en/9.3.0/sql/query/select.html#limit-clause
 | 
				
			||||||
        // "You can specify a very big integer for row_count to display to the last row, starting from a specific row."
 | 
					        // "You can specify a very big integer for row_count to display to the last row, starting from a specific row."
 | 
				
			||||||
        if ($this->hasLimit($limit)) {
 | 
					        if ($this->hasLimit($limit)) {
 | 
				
			||||||
            $sql = 'LIMIT ' . $limit;
 | 
					            $sql = 'LIMIT ' . $limit;
 | 
				
			||||||
@ -181,7 +181,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * {@inheritdoc}
 | 
					     * {@inheritdoc}
 | 
				
			||||||
     * @see http://www.cubrid.org/manual/93/en/sql/schema/table.html#drop-index-clause
 | 
					     * @see https://www.cubrid.org/manual/en/9.3.0/sql/schema/table.html#drop-index-clause
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public function dropIndex($name, $table)
 | 
					    public function dropIndex($name, $table)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
@ -30,7 +30,7 @@ class Schema extends \yii\db\Schema implements ConstraintFinderInterface
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * @var array mapping from physical column types (keys) to abstract column types (values)
 | 
					     * @var array mapping from physical column types (keys) to abstract column types (values)
 | 
				
			||||||
     * Please refer to [CUBRID manual](http://www.cubrid.org/manual/91/en/sql/datatype.html) for
 | 
					     * Please refer to [CUBRID manual](https://www.cubrid.org/manual/en/9.3.0/sql/datatype.html) for
 | 
				
			||||||
     * details on data types.
 | 
					     * details on data types.
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public $typeMap = [
 | 
					    public $typeMap = [
 | 
				
			||||||
@ -345,7 +345,7 @@ class Schema extends \yii\db\Schema implements ConstraintFinderInterface
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * {@inheritdoc}
 | 
					     * {@inheritdoc}
 | 
				
			||||||
     * @see http://www.cubrid.org/manual/91/en/sql/transaction.html#database-concurrency
 | 
					     * @see https://www.cubrid.org/manual/en/9.3.0/sql/transaction.html#database-concurrency
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public function setTransactionIsolationLevel($level)
 | 
					    public function setTransactionIsolationLevel($level)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user