We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7df505 commit ec69958Copy full SHA for ec69958
.circleci/config.yml
@@ -149,7 +149,7 @@ workflows:
149
triggers:
150
- schedule:
151
# Uses UTC timezone.
152
- cron: "35 15 * * *"
+ cron: "15 17 * * *"
153
filters:
154
branches:
155
only:
src/Sql/SqlPgsql.php
@@ -112,7 +112,7 @@ public function listTables()
112
{
113
$return = $this->alwaysQuery(PSQL_SHOW_TABLES);
114
$tables = explode(PHP_EOL, trim($this->getProcess()->getOutput()));
115
- return $tables;
+ return array_filter($tables);
116
}
117
118
public function dumpCmd($table_selection)
0 commit comments