All checks were successful
CI / Test (1.24) (push) Successful in -25m5s
CI / Test (1.25) (push) Successful in -24m57s
CI / Build (push) Successful in -26m5s
CI / Lint (push) Successful in -25m51s
Integration Tests / Integration Tests (push) Successful in -25m42s
Release / Build and Release (push) Successful in -24m39s
* Introduce `--flatten-schema` flag to convert, merge, and split commands. * Modify database writing functions to support flattened schema names. * Update template functions to handle schema.table naming convention. * Enhance PostgreSQL writer to utilize flattened schema in generated SQL. * Update tests to ensure compatibility with new flattening feature. * Dependencies updated for improved functionality.
34 lines
812 B
Cheetah
34 lines
812 B
Cheetah
{{/* Base DDL template with common structure */}}
|
|
{{- define "ddl_header" -}}
|
|
-- DDL Operation: {{.Operation}}
|
|
-- Schema: {{.Schema}}
|
|
-- Object: {{.ObjectName}}
|
|
{{- end -}}
|
|
|
|
{{- define "ddl_footer" -}}
|
|
-- End of {{.Operation}}
|
|
{{- end -}}
|
|
|
|
{{/* Base ALTER TABLE structure */}}
|
|
{{- define "alter_table_base" -}}
|
|
ALTER TABLE {{qual_table_raw .SchemaName .TableName}}
|
|
{{block "alter_operation" .}}{{end}};
|
|
{{- end -}}
|
|
|
|
{{/* Common existence check pattern */}}
|
|
{{- define "exists_check" -}}
|
|
DO $$
|
|
BEGIN
|
|
IF NOT EXISTS (
|
|
{{block "exists_query" .}}{{end}}
|
|
) THEN
|
|
{{block "create_statement" .}}{{end}}
|
|
END IF;
|
|
END;
|
|
$$;
|
|
{{- end -}}
|
|
|
|
{{/* Common drop pattern */}}
|
|
{{- define "drop_if_exists" -}}
|
|
{{block "drop_type" .}}{{end}} IF EXISTS {{qual_table_raw .SchemaName .ObjectName}};
|
|
{{- end -}} |