Skip to content

Commit ec69958

Browse files
committed
Fix SqlPgsql::listTables().
1 parent e7df505 commit ec69958

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ workflows:
149149
triggers:
150150
- schedule:
151151
# Uses UTC timezone.
152-
cron: "35 15 * * *"
152+
cron: "15 17 * * *"
153153
filters:
154154
branches:
155155
only:

src/Sql/SqlPgsql.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function listTables()
112112
{
113113
$return = $this->alwaysQuery(PSQL_SHOW_TABLES);
114114
$tables = explode(PHP_EOL, trim($this->getProcess()->getOutput()));
115-
return $tables;
115+
return array_filter($tables);
116116
}
117117

118118
public function dumpCmd($table_selection)

0 commit comments

Comments
 (0)