You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -456,6 +456,52 @@ Logging facilities:
456
456
* Transport Logging (`io.r2dbc.postgresql.client`)
457
457
*`DEBUG` enables `Message` exchange logging
458
458
*`TRACE` enables traffic logging
459
+
460
+
Logging that is associated with a connection reports the logical connection id (`cid`) which is a driver-local connection counter and the Postgres Process Id (`pid`) once the connection handshake finishes.
461
+
462
+
## Getting Help
463
+
464
+
Having trouble with R2DBC? We'd love to help!
465
+
466
+
* Check the [spec documentation](https://r2dbc.io/spec/0.8.0.RELEASE/spec/html/), and [Javadoc](https://r2dbc.io/spec/0.8.0.RELEASE/api/).
467
+
* If you are upgrading, check out the [changelog](https://r2dbc.io/spec/0.8.0.RELEASE/CHANGELOG.txt) for "new and noteworthy" features.
468
+
* Ask a question - we monitor [stackoverflow.com](https://stackoverflow.com) for questions
469
+
tagged with [`r2dbc`](https://stackoverflow.com/tags/r2dbc).
470
+
You can also chat with the community on [Gitter](https://gitter.im/r2dbc/r2dbc).
471
+
* Report bugs with R2DBC PostgreSQL at [github.com/pgjdbc/r2dbc-postgresql/issues](https://github.com/pgjdbc/r2dbc-postgresql/issues).
472
+
473
+
## Reporting Issues
474
+
475
+
R2DBC uses GitHub as issue tracking system to record bugs and feature requests.
476
+
If you want to raise an issue, please follow the recommendations below:
477
+
478
+
* Before you log a bug, please search the [issue tracker](https://github.com/pgjdbc/r2dbc-postgresql/issues) to see if someone has already reported the problem.
479
+
* If the issue doesn't already exist, [create a new issue](https://github.com/pgjdbc/r2dbc-postgresql/issues/new).
480
+
* Please provide as much information as possible with the issue report, we like to know the version of R2DBC PostgreSQL that you are using and JVM version.
481
+
* If you need to paste code, or include a stack trace use Markdown ``` escapes before and after your text.
482
+
* If possible try to create a test-case or project that replicates the issue.
483
+
Attach a link to your code or a compressed file containing your code.
484
+
485
+
## Building from Source
486
+
487
+
You don't need to build from source to use R2DBC PostgreSQL (binaries in Maven Central), but if you want to try out the latest and greatest, R2DBC PostgreSQL can be easily built with the
488
+
[maven wrapper](https://github.com/takari/maven-wrapper). You also need JDK 1.8 and Docker to run integration tests.
489
+
490
+
```bash
491
+
$ ./mvnw clean install
492
+
```
493
+
494
+
If you want to build with the regular `mvn` command, you will need [Maven v3.5.0 or above](https://maven.apache.org/run-maven/index.html).
495
+
496
+
_Also see [CONTRIBUTING.adoc](.github/CONTRIBUTING.adoc) if you wish to submit pull requests._
497
+
498
+
### Running JMH Benchmarks
499
+
500
+
Running the JMH benchmarks builds and runs the benchmarks without running tests.
501
+
502
+
```bash
503
+
$ ./mvnw clean install -Pjmh
504
+
```
459
505
460
506
## License
461
507
This project is released under version 2.0 of the [Apache License][l].
thrownewIllegalArgumentException(String.format("Statement '%s' cannot be created. This is often due to the presence of both multiple statements and parameters at the same time.", sql));
150
154
}
@@ -203,7 +207,7 @@ public Mono<Void> releaseSavepoint(String name) {
0 commit comments