-
Notifications
You must be signed in to change notification settings - Fork 0
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 #2 from gnosischain/ch_pg_implementation
Postgres implemented
- Loading branch information
Showing
34 changed files
with
396 additions
and
700 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
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
30 changes: 0 additions & 30 deletions
30
macros/consensus/_postgresql/create_bytea_to_bigint_function.sql
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
macros/consensus/_postgresql/create_deserialize_eth2_function.sql
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% macro generate_schema_name(custom_schema_name, node) -%} | ||
{%- set default_schema = target.schema -%} | ||
{%- if custom_schema_name is none -%} | ||
{{ default_schema }} | ||
{%- else -%} | ||
{{ custom_schema_name | trim }} | ||
{%- endif -%} | ||
{%- endmacro %} | ||
|
||
{% macro generate_database_name(custom_database_name, node) -%} | ||
{%- set default_database = target.schema -%} | ||
{%- if custom_database_name is none -%} | ||
{{ default_database }} | ||
{%- else -%} | ||
{{ custom_database_name | trim }} | ||
{%- endif -%} | ||
{%- endmacro %} |
Oops, something went wrong.