Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
ab4fbff4
Commit
ab4fbff4
authored
Aug 29, 2018
by
Sven Klemm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
handle quoting properly for table suggestion
parent
e9ab4fee
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
public/app/plugins/datasource/postgres/meta_query.ts
+3
-3
No files found.
public/app/plugins/datasource/postgres/meta_query.ts
View file @
ab4fbff4
...
@@ -27,9 +27,9 @@ export class PostgresMetaQuery {
...
@@ -27,9 +27,9 @@ export class PostgresMetaQuery {
// query that returns first table found that has a timestamp(tz) column and a float column
// query that returns first table found that has a timestamp(tz) column and a float column
let
query
=
`
let
query
=
`
SELECT
SELECT
table_name,
quote_ident(table_name) as
table_name,
( SELECT
( SELECT
column_name
quote_ident(column_name) as
column_name
FROM information_schema.columns c
FROM information_schema.columns c
WHERE
WHERE
c.table_schema = t.table_schema AND
c.table_schema = t.table_schema AND
...
@@ -38,7 +38,7 @@ SELECT
...
@@ -38,7 +38,7 @@ SELECT
ORDER BY ordinal_position LIMIT 1
ORDER BY ordinal_position LIMIT 1
) AS time_column,
) AS time_column,
( SELECT
( SELECT
column_name
quote_ident(column_name) AS
column_name
FROM information_schema.columns c
FROM information_schema.columns c
WHERE
WHERE
c.table_schema = t.table_schema AND
c.table_schema = t.table_schema AND
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment