@@ -80,17 +80,27 @@ cargo pgx run pg13
80
80
Example output.
81
81
82
82
``` bash
83
- Stopping Postgres v12
84
- building extension with features ` pg12 `
85
- " cargo" " build" " --features" " pg12 " " --no-default-features"
86
- Finished dev [unoptimized + debuginfo] target(s) in 0.07s
83
+ Stopping Postgres v13
84
+ building extension with features ` pg13 `
85
+ " cargo" " build" " --features" " pg13 " " --no-default-features"
86
+ Finished dev [unoptimized + debuginfo] target(s) in 0.05s
87
87
88
88
installing extension
89
- Copying control file to ` /home/username/.pgx/12.3/pgx-install/share/postgresql/extension/pgdd.control`
90
- Copying shared library to ` /home/username/.pgx/12.3/pgx-install/lib/postgresql/pgdd.so`
91
- Writing extension schema to ` /home/username/.pgx/12.3/pgx-install/share/postgresql/extension/pgdd--0.3.sql`
89
+ Copying control file to ` /home/username/.pgx/13.4/pgx-install/share/postgresql/extension/pgdd.control`
90
+ Copying shared library to ` /home/username/.pgx/13.4/pgx-install/lib/postgresql/pgdd.so`
91
+ Building SQL generator with features ` pg13`
92
+ " cargo" " build" " --bin" " sql-generator" " --features" " pg13" " --no-default-features"
93
+ Finished dev [unoptimized + debuginfo] target(s) in 0.05s
94
+ Discovering SQL entities
95
+ Discovered 9 SQL entities: 0 schemas (0 unique), 6 functions, 0 types, 0 enums, 3 sqls, 0 ords, 0 hashes
96
+ running SQL generator with features ` pg13`
97
+ " cargo" " run" " --bin" " sql-generator" " --features" " pg13" " --no-default-features" " --" " --sql" " /home/username/.pgx/13.4/pgx-install/share/postgresql/extension/pgdd--0.4.0-dev.sql"
98
+ Finished dev [unoptimized + debuginfo] target(s) in 0.06s
99
+ Running ` target/debug/sql-generator --sql /home/username/.pgx/13.4/pgx-install/share/postgresql/extension/pgdd--0.4.0-dev.sql`
100
+ Copying extension schema file to ` /home/username/.pgx/13.4/pgx-install/share/postgresql/extension/pgdd--0.3.1--0.4.0-dev.sql`
101
+ Copying extension schema file to ` /home/username/.pgx/13.4/pgx-install/share/postgresql/extension/pgdd--0.3--0.3.1.sql`
92
102
Finished installing pgdd
93
- Starting Postgres v12 on port 28812
103
+ Starting Postgres v13 on port 28813
94
104
Re-using existing database pgdd
95
105
```
96
106
@@ -137,7 +147,7 @@ When working against Pgx installed from a non-tagged branch, install pgx using:
137
147
138
148
``` bash
139
149
cargo install --force --git " https://github.com/zombodb/pgx" \
140
- --branch " oh-no-type-resolution " \
150
+ --branch " develop " \
141
151
" cargo-pgx"
142
152
```
143
153
0 commit comments