#510 fix example quoting for nrql

This commit is contained in:
Sean Corfield 2023-10-21 16:19:23 -07:00
parent e36ad64aa6
commit b3fe7c1436

View file

@ -773,7 +773,7 @@ Valid `:dialect` options are `:ansi` (the default, use this for PostgreSQL),
(from :foo)
(where [:= :foo.a "baz"])
(sql/format {:dialect :nrql}))
=> ["SELECT `foo.a` FROM `foo` WHERE `foo.a` = 'baz'"]
=> ["SELECT `foo.a` FROM foo WHERE `foo.a` = 'baz'"]
```
See [New Relic NRQL Support](nrsql.md) for more details of the NRQL dialect.