Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for materialized views in the preview table dropdown when creating or editing a query. #282

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
52 changes: 50 additions & 2 deletions lib/blazer/adapters/sql_adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,29 @@ def run_statement(statement, comment)
end

def tables
sql = add_schemas("SELECT table_schema, table_name FROM information_schema.tables")
sql =
if postgresql?
<<-SQL
SELECT table_schema, table_name
FROM (
SELECT table_schema, table_name FROM information_schema.tables
UNION ALL
SELECT n.nspname AS table_schema, c.relname AS table_name
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind = 'm' AND
(
pg_has_role(c.relowner, 'USAGE')
OR has_table_privilege(c.oid, 'SELECT, INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER')
OR has_any_column_privilege(c.oid, 'SELECT, INSERT, UPDATE, REFERENCES')
)
) AS tables
SQL
else
"SELECT table_schema, table_name FROM information_schema.tables"
end
sql = add_schemas(sql)

result = data_source.run_statement(sql, refresh_cache: true)
if postgresql? || redshift? || snowflake?
result.rows.sort_by { |r| [r[0] == default_schema ? "" : r[0], r[1]] }.map do |row|
Expand All @@ -64,7 +86,33 @@ def tables
end

def schema
sql = add_schemas("SELECT table_schema, table_name, column_name, data_type, ordinal_position FROM information_schema.columns")
sql =
if postgresql?
<<~SQL
SELECT table_schema, table_name, column_name, data_type, ordinal_position
FROM (
SELECT table_schema, table_name, column_name, data_type, ordinal_position
FROM information_schema.columns
UNION ALL
SELECT
n.nspname AS table_schema, c.relname AS table_name, a.attname AS column_name, TRIM(leading '_' FROM t.typname) AS data_type, a.attnum AS ordinal_position
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON c.relnamespace = n.oid
INNER JOIN pg_catalog.pg_attribute a ON c.oid = a.attrelid
JOIN pg_catalog.pg_type t ON t.typelem = a.atttypid
WHERE c.relkind = 'm' AND a.attnum >= 1 AND
(
pg_has_role(c.relowner, 'USAGE')
OR has_table_privilege(c.oid, 'SELECT, INSERT, UPDATE, DELETE, TRUNCATE, REFERENCES, TRIGGER')
OR has_any_column_privilege(c.oid, 'SELECT, INSERT, UPDATE, REFERENCES')
)
) AS schemas
SQL
else
"SELECT table_schema, table_name, column_name, data_type, ordinal_position FROM information_schema.columns"
end

sql = add_schemas(sql)
result = data_source.run_statement(sql)
result.rows.group_by { |r| [r[0], r[1]] }.map { |k, vs| {schema: k[0], table: k[1], columns: vs.sort_by { |v| v[2] }.map { |v| {name: v[2], data_type: v[3]} }} }.sort_by { |t| [t[:schema] == default_schema ? "" : t[:schema], t[:table]] }
end
Expand Down