This Ruby extension uses the actual PostgreSQL server source to parse SQL queries and return the internal PostgreSQL parsetree.
In addition the extension allows you to normalize queries (replacing constant values with ?) and parse these normalized queries into a parsetree again.
When you build this extension, it fetches a copy of the PostgreSQL server source and builds parts of it, and then statically links it into this extension.
This is slightly crazy, but is the only reliable way of parsing all valid PostgreSQL queries.
You can find further examples and a longer rationale here: https://pganalyze.com/blog/parse-postgresql-queries-in-ruby.html
gem install pg_query
Due to compiling parts of PostgreSQL, installation will take a while. Expect between 2 and 10 minutes.
Note: On some Linux systems you'll have to install the flex
package beforehand.
PgQuery.parse("SELECT 1")
=> #<PgQuery:0x007fe92b27ea18
@parsetree=
[{"SELECT"=>
{"distinctClause"=>nil,
"intoClause"=>nil,
"targetList"=>
[{"RESTARGET"=>
{"name"=>nil,
"indirection"=>nil,
"val"=>{"A_CONST"=>{"val"=>1, "location"=>7}},
"location"=>7}}],
...}}],
@query="SELECT 1",
@warnings=[]>
# Normalizing a query (like pg_stat_statements)
PgQuery.normalize("SELECT 1 FROM x WHERE y = 'foo'")
=> "SELECT ? FROM x WHERE y = ?"
# Parsing a normalized query
PgQuery.parse("SELECT ? FROM x WHERE y = ?")
=> #<PgQuery:0x007fb99455a438
@parsetree=
[{"SELECT"=>
{"distinctClause"=>nil,
"intoClause"=>nil,
"targetList"=>
[{"RESTARGET"=>
{"name"=>nil,
"indirection"=>nil,
"val"=>{"PARAMREF"=>{"number"=>0, "location"=>7}},
"location"=>7}}],
"fromClause"=>
[{"RANGEVAR"=>
{"schemaname"=>nil,
"relname"=>"x",
"inhOpt"=>2,
"relpersistence"=>"p",
"alias"=>nil,
"location"=>14}}],
"whereClause"=>
{"AEXPR"=>
{"name"=>["="],
"lexpr"=>{"COLUMNREF"=>{"fields"=>["y"], "location"=>22}},
"rexpr"=>{"PARAMREF"=>{"number"=>0, "location"=>26}},
"location"=>24}},
...}}],
@query="SELECT ? FROM x WHERE y = ?",
@warnings=[]>
PgQuery.parse("SELECT ? FROM x JOIN y USING (id) WHERE z = ?").tables
=> ["x", "y"]
PgQuery.parse("SELECT ? FROM x WHERE x.y = ? AND z = ?").filter_columns
=> [["x", "y"], [nil, "z"]]
PgQuery.parse("SELECT 1").fingerprint
=> "db76551255b7861b99bd384cf8096a3dd5162ab3"
PgQuery.parse("SELECT 2; --- comment").fingerprint
=> "db76551255b7861b99bd384cf8096a3dd5162ab3"
This gem uses a patched version of the latest PostgreSQL stable.
Changes:
- scan.l/gram.y: Modified to support parsing normalized queries
- Known regression: Removed support for custom operators containing "?" (doesn't affect hstore/JSON/geometric operators)
- outfuncs_json.c: Auto-generated outfuncs that outputs a parsetree as JSON (called through nodeToJSONString)
Unit tests for these patches are inside this library - the tests will break if run against upstream.
Copyright (c) 2015, pganalyze Team [email protected]
pg_query is licensed under the 3-clause BSD license, see LICENSE file for details.
Query normalization code:
Copyright (c) 2008-2015, PostgreSQL Global Development Group