PERSISTENT is STORED in MySQL
This commit is contained in:
parent
8677ce5857
commit
ddce5a8275
1 changed files with 2 additions and 1 deletions
|
@ -54,7 +54,8 @@ class MySQLDriver extends AbstractDriver
|
||||||
foreach ($args['virtualColumns'] as $path => $col) {
|
foreach ($args['virtualColumns'] as $path => $col) {
|
||||||
$line = "`{$col['name']}` {$col['type']} GENERATED ALWAYS AS (".$this->expandPath($path).")";
|
$line = "`{$col['name']}` {$col['type']} GENERATED ALWAYS AS (".$this->expandPath($path).")";
|
||||||
if (@$col['primary']) {
|
if (@$col['primary']) {
|
||||||
$line .= ' PERSISTENT';
|
//this needs to be "PERSISTENT" for MariaDB -- I guess there are going to be two drivers now
|
||||||
|
$line .= ' STORED';
|
||||||
} else {
|
} else {
|
||||||
$line .= ' VIRTUAL';
|
$line .= ' VIRTUAL';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue