Skip to content

Commit 1823024

Browse files
committed
Use consistent indentation [skip ci]
1 parent 563f888 commit 1823024

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
root = true
22

3-
[*.{c,h,pl,pm}]
3+
[*.{c,h,pl,pm,sql}]
44
indent_style = tab
55
indent_size = tab
66
tab_width = 4

sql/vector--0.2.0--0.2.1.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ DROP CAST (double precision[] AS vector);
77
DROP CAST (numeric[] AS vector);
88

99
CREATE CAST (integer[] AS vector)
10-
WITH FUNCTION array_to_vector(integer[], integer, boolean) AS ASSIGNMENT;
10+
WITH FUNCTION array_to_vector(integer[], integer, boolean) AS ASSIGNMENT;
1111

1212
CREATE CAST (real[] AS vector)
13-
WITH FUNCTION array_to_vector(real[], integer, boolean) AS ASSIGNMENT;
13+
WITH FUNCTION array_to_vector(real[], integer, boolean) AS ASSIGNMENT;
1414

1515
CREATE CAST (double precision[] AS vector)
16-
WITH FUNCTION array_to_vector(double precision[], integer, boolean) AS ASSIGNMENT;
16+
WITH FUNCTION array_to_vector(double precision[], integer, boolean) AS ASSIGNMENT;
1717

1818
CREATE CAST (numeric[] AS vector)
19-
WITH FUNCTION array_to_vector(numeric[], integer, boolean) AS ASSIGNMENT;
19+
WITH FUNCTION array_to_vector(numeric[], integer, boolean) AS ASSIGNMENT;

0 commit comments

Comments
 (0)