Skip to content

Commit 165218f

Browse files
committed
comment for #769
1 parent 4e73a49 commit 165218f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api.include.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6364,7 +6364,7 @@ public function getTableColumns(string $tableName, string $type): array
63646364
}
63656365
if ($this->driver == 'sqlite') {
63666366
foreach ($results as &$result) {
6367-
// sqlite does not properly reflect display width of types
6367+
// sqlite does not reflect types on view columns
63686368
preg_match('|([a-z]+)(\(([0-9]+)(,([0-9]+))?\))?|', $result['DATA_TYPE'], $matches);
63696369
if (isset($matches[1])) {
63706370
$result['DATA_TYPE'] = $matches[1];

api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6364,7 +6364,7 @@ public function getTableColumns(string $tableName, string $type): array
63646364
}
63656365
if ($this->driver == 'sqlite') {
63666366
foreach ($results as &$result) {
6367-
// sqlite does not properly reflect display width of types
6367+
// sqlite does not reflect types on view columns
63686368
preg_match('|([a-z]+)(\(([0-9]+)(,([0-9]+))?\))?|', $result['DATA_TYPE'], $matches);
63696369
if (isset($matches[1])) {
63706370
$result['DATA_TYPE'] = $matches[1];

0 commit comments

Comments
 (0)