Skip to content

Commit cd8e538

Browse files
committed
Fix formatting in zson_learn. By Dmitriy Olshevskiy
1 parent 988ef68 commit cd8e538

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

zson--1.0.sql

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ BEGIN
4545
ELSIF position('"' in colname) <> 0 THEN
4646
RAISE NOTICE 'Invalid column name %', tabname;
4747
RETURN '';
48-
ELSIF position('.' in tabname) <> 0 THEN
49-
tabname := quote_ident(split_part(tabname, '.', 1)) ||'.' || quote_ident(split_part(tabname, '.', 2));
48+
ELSIF position('.' in tabname) <> 0 THEN
49+
tabname := quote_ident(split_part(tabname, '.', 1)) ||
50+
'.' || quote_ident(split_part(tabname, '.', 2));
5051
END IF;
5152

5253
IF query <> '' THEN

0 commit comments

Comments
 (0)