Skip to content

Commit

Permalink
Remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
MattFisher committed Dec 20, 2021
1 parent 5dfc3ed commit 2126c44
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions tests/test_redshift_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,28 +187,28 @@ class IntrospectionTest(unittest.TestCase):

expected_attributes_query = norm_sql(
u'''SELECT
attrelid, -- table oid
attnum,
attname
attrelid, -- table oid
attnum,
attname
FROM pg_attribute
WHERE pg_attribute.attrelid = %s
ORDER BY attrelid, attnum;
''')

expected_indexes_query = norm_sql(
u'''SELECT
c2.relname,
idx.indrelid,
c2.relname,
idx.indrelid,
idx.indkey, -- indkey is of type "int2vector" and returns a space-separated string
idx.indisunique,
idx.indisprimary
FROM
pg_catalog.pg_class c,
pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE
c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
idx.indisunique,
idx.indisprimary
FROM
pg_catalog.pg_class c,
pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE
c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = %s
''')

Expand Down

0 comments on commit 2126c44

Please sign in to comment.