Commit 3ffc2e45 authored by x42p's avatar x42p Committed by Steve Müller

Update PostgreSqlPlatform.php

some format changes to trigger travis-cl once more again
parent 65901e63
...@@ -245,9 +245,9 @@ class PostgreSqlPlatform extends AbstractPlatform ...@@ -245,9 +245,9 @@ class PostgreSqlPlatform extends AbstractPlatform
{ {
return "SELECT sequence_name AS relname, return "SELECT sequence_name AS relname,
sequence_schema AS schemaname sequence_schema AS schemaname
FROM information_schema.sequences FROM information_schema.sequences
WHERE sequence_schema NOT LIKE 'pg_%' WHERE sequence_schema NOT LIKE 'pg_%'
AND sequence_schema != 'information_schema'"; AND sequence_schema != 'information_schema'";
} }
/** /**
...@@ -257,11 +257,11 @@ class PostgreSqlPlatform extends AbstractPlatform ...@@ -257,11 +257,11 @@ class PostgreSqlPlatform extends AbstractPlatform
{ {
return "SELECT quote_ident(table_name) AS table_name, return "SELECT quote_ident(table_name) AS table_name,
table_schema AS schema_name table_schema AS schema_name
FROM information_schema.tables FROM information_schema.tables
WHERE table_schema NOT LIKE 'pg_%' WHERE table_schema NOT LIKE 'pg_%'
AND table_schema != 'information_schema' AND table_schema != 'information_schema'
AND table_name != 'geometry_columns' AND table_name != 'geometry_columns'
AND table_name != 'spatial_ref_sys'"; AND table_name != 'spatial_ref_sys'";
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment