blob: 32a5e67bd2444b1a1ca6b51d9f25d4279d5b912b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Schema;
use function count;
use function sprintf;
/**
* Sequence structure.
*/
class Sequence extends AbstractAsset
{
protected int $allocationSize = 1;
protected int $initialValue = 1;
public function __construct(
string $name,
int $allocationSize = 1,
int $initialValue = 1,
protected ?int $cache = null,
) {
$this->_setName($name);
$this->setAllocationSize($allocationSize);
$this->setInitialValue($initialValue);
}
public function getAllocationSize(): int
{
return $this->allocationSize;
}
public function getInitialValue(): int
{
return $this->initialValue;
}
public function getCache(): ?int
{
return $this->cache;
}
public function setAllocationSize(int $allocationSize): self
{
$this->allocationSize = $allocationSize;
return $this;
}
public function setInitialValue(int $initialValue): self
{
$this->initialValue = $initialValue;
return $this;
}
public function setCache(int $cache): self
{
$this->cache = $cache;
return $this;
}
/**
* Checks if this sequence is an autoincrement sequence for a given table.
*
* This is used inside the comparator to not report sequences as missing,
* when the "from" schema implicitly creates the sequences.
*/
public function isAutoIncrementsFor(Table $table): bool
{
$primaryKey = $table->getPrimaryKey();
if ($primaryKey === null) {
return false;
}
$pkColumns = $primaryKey->getColumns();
if (count($pkColumns) !== 1) {
return false;
}
$column = $table->getColumn($pkColumns[0]);
if (! $column->getAutoincrement()) {
return false;
}
$sequenceName = $this->getShortestName($table->getNamespaceName());
$tableName = $table->getShortestName($table->getNamespaceName());
$tableSequenceName = sprintf('%s_%s_seq', $tableName, $column->getShortestName($table->getNamespaceName()));
return $tableSequenceName === $sequenceName;
}
}
|