pg_query 4.2.1 → 4.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/Rakefile +4 -4
- data/ext/pg_query/extconf.rb +3 -1
- data/ext/pg_query/pg_query_deparse.c +1 -10635
- data/ext/pg_query/pg_query_ruby_freebsd.sym +2 -0
- data/ext/pg_query/postgres_deparse.c +10665 -0
- data/ext/pg_query/postgres_deparse.h +9 -0
- data/lib/pg_query/version.rb +1 -1
- metadata +8 -5
data/lib/pg_query/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg_query
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.2.
|
4
|
+
version: 4.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukas Fittl
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -497,8 +497,11 @@ files:
|
|
497
497
|
- ext/pg_query/pg_query_readfuncs_protobuf.c
|
498
498
|
- ext/pg_query/pg_query_ruby.c
|
499
499
|
- ext/pg_query/pg_query_ruby.sym
|
500
|
+
- ext/pg_query/pg_query_ruby_freebsd.sym
|
500
501
|
- ext/pg_query/pg_query_scan.c
|
501
502
|
- ext/pg_query/pg_query_split.c
|
503
|
+
- ext/pg_query/postgres_deparse.c
|
504
|
+
- ext/pg_query/postgres_deparse.h
|
502
505
|
- ext/pg_query/protobuf-c.c
|
503
506
|
- ext/pg_query/src_backend_catalog_namespace.c
|
504
507
|
- ext/pg_query/src_backend_catalog_pg_proc.c
|
@@ -576,7 +579,7 @@ homepage: https://github.com/pganalyze/pg_query
|
|
576
579
|
licenses:
|
577
580
|
- BSD-3-Clause
|
578
581
|
metadata: {}
|
579
|
-
post_install_message:
|
582
|
+
post_install_message:
|
580
583
|
rdoc_options:
|
581
584
|
- "--main"
|
582
585
|
- README.md
|
@@ -596,7 +599,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
596
599
|
version: '0'
|
597
600
|
requirements: []
|
598
601
|
rubygems_version: 3.1.6
|
599
|
-
signing_key:
|
602
|
+
signing_key:
|
600
603
|
specification_version: 4
|
601
604
|
summary: PostgreSQL query parsing and normalization library
|
602
605
|
test_files: []
|