From 1823024d9c2f9ac5932f060b3140b03296769330 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 23 Dec 2022 12:04:52 -0800 Subject: [PATCH] Use consistent indentation [skip ci] --- .editorconfig | 2 +- sql/vector--0.2.0--0.2.1.sql | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.editorconfig b/.editorconfig index e388a3f..54324ab 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,6 @@ root = true -[*.{c,h,pl,pm}] +[*.{c,h,pl,pm,sql}] indent_style = tab indent_size = tab tab_width = 4 diff --git a/sql/vector--0.2.0--0.2.1.sql b/sql/vector--0.2.0--0.2.1.sql index 55e76de..47606de 100644 --- a/sql/vector--0.2.0--0.2.1.sql +++ b/sql/vector--0.2.0--0.2.1.sql @@ -7,13 +7,13 @@ DROP CAST (double precision[] AS vector); DROP CAST (numeric[] AS vector); CREATE CAST (integer[] AS vector) - WITH FUNCTION array_to_vector(integer[], integer, boolean) AS ASSIGNMENT; + WITH FUNCTION array_to_vector(integer[], integer, boolean) AS ASSIGNMENT; CREATE CAST (real[] AS vector) - WITH FUNCTION array_to_vector(real[], integer, boolean) AS ASSIGNMENT; + WITH FUNCTION array_to_vector(real[], integer, boolean) AS ASSIGNMENT; CREATE CAST (double precision[] AS vector) - WITH FUNCTION array_to_vector(double precision[], integer, boolean) AS ASSIGNMENT; + WITH FUNCTION array_to_vector(double precision[], integer, boolean) AS ASSIGNMENT; CREATE CAST (numeric[] AS vector) - WITH FUNCTION array_to_vector(numeric[], integer, boolean) AS ASSIGNMENT; + WITH FUNCTION array_to_vector(numeric[], integer, boolean) AS ASSIGNMENT;