generated from JetBrains/intellij-platform-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from ng-galien/222-dev
Release 222.1.0
- Loading branch information
Showing
5 changed files
with
32 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
# Docker Image | ||
|
||
## Build | ||
## Build the image | ||
|
||
> export PG_VERSION=14 | ||
> docker build --build-arg "TAG=$PG_VERSION" -t "galien0xffffff/postgres-debugger:$PG_VERSION" . | ||
```bash | ||
export PG_VERSION=14 \ | ||
&& export PG_IMAGE=postgres-with-debugger \ | ||
&& docker build --build-arg "TAG=$PG_VERSION" -t "$PG_IMAGE:$PG_VERSION" . | ||
``` | ||
|
||
## Run | ||
## Run the image | ||
|
||
> docker run -p 5514:5432 --name PG14-debug -e POSTGRES_PASSWORD=postgres -d galien0xffffff/postgres-debugger:14 | ||
## Functions to duplicate from pl_exec.c | ||
|
||
* exec_eval_datum | ||
* convert_value_to_string | ||
* plpgsql_fulfill_promise | ||
* get_stmt_mcontext | ||
* instantiate_empty_record_variable | ||
* revalidate_rectypeid | ||
* make_tuple_from_row | ||
* assign_text_var | ||
* assign_simple_var | ||
```bash | ||
export PG_VERSION=14 \ | ||
&& export PG_IMAGE=postgres-with-debugger \ | ||
&& docker run -p 55$PG_VERSION:5432 --name "PostgresSQL-$PG_VERSION-debug" -e POSTGRES_PASSWORD=postgres -d "$PG_IMAGE:$PG_VERSION" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters