Fix manual cubrid links (#19436)

* Update Schema.php

fix broken link

* fix cubrid manual links

* update links

* fxi
This commit is contained in:
Alexey
2022-06-13 13:23:58 +03:00
committed by GitHub
parent cb5e575814
commit 07918b6c8f
2 changed files with 4 additions and 4 deletions

View File

@ -156,7 +156,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
{
$sql = '';
// 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."
if ($this->hasLimit($limit)) {
$sql = 'LIMIT ' . $limit;
@ -181,7 +181,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
/**
* {@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)
{

View File

@ -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)
* 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.
*/
public $typeMap = [
@ -345,7 +345,7 @@ class Schema extends \yii\db\Schema implements ConstraintFinderInterface
/**
* {@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)
{