@@ -194,7 +194,7 @@ class PostgreSqlPlatform extends AbstractPlatform
publicfunctiongetListTablesSQL()
{
return"SELECT tablename AS table_name, schemaname AS schema_name
FROM pg_tables WHERE schemaname NOT LIKE 'pg_%' AND schemaname != 'information_schema'";
FROM pg_tables WHERE schemaname NOT LIKE 'pg_%' AND schemaname != 'information_schema' AND tablename != 'geometry_columns' AND tablename != 'spatial_ref_sys'";
@@ -357,7 +357,7 @@ class SqlitePlatform extends AbstractPlatform
publicfunctiongetListTablesSQL()
{
return"SELECT name FROM sqlite_master WHERE type = 'table' AND name != 'sqlite_sequence' "
return"SELECT name FROM sqlite_master WHERE type = 'table' AND name != 'sqlite_sequence' AND name != 'geometry_columns' AND name != 'spatial_ref_sys' "