Skip to content

Commit

Permalink
Merge pull request doctrine#13 from franbenz/firebird-tables
Browse files Browse the repository at this point in the history
Changed getListTablesSQL condition.
  • Loading branch information
ancpru committed Oct 17, 2015
2 parents 9100082 + e0c4fd2 commit 692bbd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Platforms/AbstractFbIbPlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ public function getListTablesSQL()
FROM RDB$RELATIONS
WHERE
(RDB$SYSTEM_FLAG=0 OR RDB$SYSTEM_FLAG IS NULL) and
(RDB$RELATION_TYPE = 0)';
(RDB$VIEW_BLR IS NULL)';
}

/**
Expand Down

0 comments on commit 692bbd4

Please sign in to comment.