Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 96adb14

Browse files
committed
Fix whitespace and remove obsolete gitattributes entry
1 parent 7a8d874 commit 96adb14

File tree

6 files changed

+1
-6
lines changed

6 files changed

+1
-6
lines changed

.gitattributes

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ contrib/tsearch2/sql/tsearch2.sql whitespace=space-before-tab,blank-at-eof,-bla
1717
contrib/pgcrypto/sql/pgp-armor.sql whitespace=-blank-at-eol
1818
doc/bug.template whitespace=space-before-tab,-blank-at-eof,blank-at-eol
1919
src/backend/catalog/sql_features.txt whitespace=space-before-tab,blank-at-eof,-blank-at-eol
20-
src/backend/tsearch/hunspell_sample.affix whitespace=-blank-at-eof
2120

2221
# Test output files that contain extra whitespace
2322
*.out -whitespace

src/backend/tsearch/dicts/hunspell_sample.affix

-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ SFX A Y IES [^AEIOU]Y
2121

2222
SFX \ N 1
2323
SFX \ 0 Y/L [^Y]
24-

src/backend/tsearch/dicts/hunspell_sample_long.affix

-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ SFX sA Y IES [^AEIOU]Y
3232

3333
SFX s\ N 1
3434
SFX s\ 0 Y/2 [^Y]
35-

src/backend/tsearch/dicts/hunspell_sample_num.affix

-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ SFX 304 Y IES [^AEIOU]Y
2323

2424
SFX 305 N 1
2525
SFX 305 0 Y/102 [^Y]
26-

src/backend/tsearch/spell.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ NIImportOOAffixes(IspellDict *Conf, const char *filename)
11771177
ereport(ERROR,
11781178
(errcode(ERRCODE_CONFIG_FILE_ERROR),
11791179
errmsg("Ispell dictionary supports only default, "
1180-
"long and num flag value")));
1180+
"long and num flag value")));
11811181
}
11821182
}
11831183

src/test/regress/sql/tstypes.sql

-1
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,3 @@ SELECT setweight('a asd w:5,6,12B,13A zxc'::tsvector, 'c', ARRAY['a', 'zxc', NUL
157157
SELECT filter('base:7A empir:17 evil:15 first:11 galact:16 hidden:6A rebel:1A spaceship:2A strike:3A victori:12 won:9'::tsvector, '{a}');
158158
SELECT filter('base hidden rebel spaceship strike'::tsvector, '{a}');
159159
SELECT filter('base hidden rebel spaceship strike'::tsvector, '{a,b,NULL}');
160-

0 commit comments

Comments
 (0)