Skip to content

Commit

Permalink
* sql comments style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benedeki committed Sep 27, 2024
1 parent e301350 commit f1a1cdd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion database/src/main/postgres/public/V0.1.0.11__global_id.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CREATE SEQUENCE IF NOT EXISTS public.global_id_seq

CREATE OR REPLACE FUNCTION public.global_id() RETURNS BIGINT AS
$$
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Function: public.global_id(0)
-- Generates a unique ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CREATE OR REPLACE FUNCTION runs.write_checkpoint(
OUT status_text TEXT
) RETURNS record AS
$$
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Function: runs.write_checkpoint(8)
-- Creates a checkpoint and adds all the measurements that it consists of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ CREATE OR REPLACE FUNCTION runs.get_partitioning_checkpoint_v2(
)
RETURNS SETOF record AS
$$
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Function: runs.get_partitioning_checkpoint_v2(BIGINT, UUID)
-- Retrieves a single checkpoint (measures and their measurement details) related to a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CREATE OR REPLACE FUNCTION runs.get_partitioning_additional_data(
OUT ad_author TEXT
) RETURNS SETOF record AS
$$
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Function: runs.get_partitioning_additional_data(1)
-- Returns additional data for the given partitioning
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ CREATE OR REPLACE FUNCTION runs.get_partitioning_main_flow(
OUT from_pattern BOOLEAN
) RETURNS record AS
$$
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Function: runs.get_partitioning_main_flow(1)
-- Returns the main flow for the given partitioning
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ CREATE OR REPLACE FUNCTION validation.validate_partitioning(
OUT error_message TEXT
) RETURNS SETOF TEXT AS
$$
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Function: validation.validate_partitioning(2)
-- Validates the input partitioning and returns a set of individual error messages, one per an issue.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ CREATE OR REPLACE FUNCTION validation.is_partitioning_valid(
OUT is_valid BOOLEAN
) RETURNS BOOLEAN AS
$$
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
--
-- Function: validation.is_partitioning_valid(2)
-- Validates the input partitioning and raises exception if it's not valid.
Expand Down

0 comments on commit f1a1cdd

Please sign in to comment.