github-actions[bot] commented on PR #4490:
URL: https://github.com/apache/hive/pull/4490#issuecomment-1638242280

   
   # @check-spelling-bot Report
   ### :red_circle: Please review
   See the [files](4490/files/) view or the [action 
log](https://github.com/apache/hive/actions/runs/5576762276) for details.
   
   <details><summary>Unrecognized words (139)</summary>
   
   ```
   abcde
   abcdef
   abcdefg
   abcdefgh
   abcdefghijklmnopqrstuvwxyz
   api
   args
   arraycopy
   attr
   Autogenerated
   basedir
   bigint
   bitset
   buf
   charset
   classname
   clazz
   Cloneable
   cmp
   CODEPOINT
   concat
   config
   cpp
   crlf
   csv
   ctor
   ctype
   datetime
   Deque
   deserialization
   deserialize
   deserialized
   deserializer
   deserializing
   dest
   Dio
   DOTALL
   elif
   endian
   endif
   enum
   ESCAPECHAR
   ETX
   facebook
   Fieldname
   foreach
   frac
   ftype
   hashcode
   Hashtable
   href
   ifndef
   impl
   inited
   inlining
   inputformat
   instanceof
   interop
   Ints
   isdigit
   isinstance
   isset
   Javadoc
   javax
   jdbc
   json
   jsr
   junit
   lasti
   LBRACE
   LBRACKET
   len
   ltype
   Mega
   memoizes
   memoizing
   metadata
   millis
   mkdirs
   mysql
   MYSTRING
   namespace
   nano
   noexcept
   nullptr
   objs
   params
   php
   plugin
   png
   println
   ptype
   qos
   QUOTECHAR
   RBRACE
   RBRACKET
   recv
   regex
   RESULTSET
   rhs
   rpc
   serializer
   servlet
   SInt
   smallint
   sql
   src
   stringify
   structs
   STX
   sys
   Throwable
   timezone
   tmp
   todo
   tokenized
   tokenizer
   tokenizing
   ttype
   typeinfo
   udf
   uint
   ULong
   unescape
   unicode
   uri
   url
   utf
   Utils
   uuid
   vals
   varchar
   varname
   versioned
   workaround
   xfer
   xml
   xmlns
   YYYYMMDD
   ```
   </details>
   
   <details><summary>Previously acknowledged words that are now absent
   </summary>deserializers ttypes UDFs </details>
   
   <details><summary>Warnings (1)</summary>
   
   See [Warning 
descriptions](https://github.com/check-spelling/check-spelling/wiki/Warning-descriptions)
 for more information.
   
   Warning | Count
   -|-
   
[forbidden-pattern](https://github.com/check-spelling/check-spelling/wiki/Warning-descriptions#forbidden-pattern)
 | 5
   </details>
   
   <details><summary>To accept these unrecognized words as correct (and remove 
the previously acknowledged and now absent words),
   run the following commands</summary>
   
   ... in a clone of the 
[[email protected]:jsoref/hive.git](https://github.com/jsoref/hive.git) repository
   on the `check-spelling-0.0.21` branch:
   
   ```
   update_files() {
   perl -e '
   my @expect_files=qw('".github/actions/spelling/expect.txt"');
   @ARGV=@expect_files;
   my @stale=qw('"$patch_remove"');
   my $re=join "|", @stale;
   my $suffix=".".time();
   my $previous="";
   sub maybe_unlink { unlink($_[0]) if $_[0]; }
   while (<>) {
   if ($ARGV ne $old_argv) { maybe_unlink($previous); $previous="$ARGV$suffix"; 
rename($ARGV, $previous); open(ARGV_OUT, ">$ARGV"); select(ARGV_OUT); $old_argv 
= $ARGV; }
   next if /^(?:$re)(?:(?:\r|\n)*$| .*)/; print;
   }; maybe_unlink($previous);'
   perl -e '
   my $new_expect_file=".github/actions/spelling/expect.txt";
   use File::Path qw(make_path);
   use File::Basename qw(dirname);
   make_path (dirname($new_expect_file));
   open FILE, q{<}, $new_expect_file; chomp(my @words = <FILE>); close FILE;
   my @add=qw('"$patch_add"');
   my %items; @items{@words} = @words x (1); @items{@add} = @add x (1);
   @words = sort {lc($a)."-".$a cmp lc($b)."-".$b} keys %items;
   open FILE, q{>}, $new_expect_file; for my $word (@words) { print FILE 
"$word\n" if $word =~ /\w/; };
   close FILE;
   system("git", "add", $new_expect_file);
   '
   }
   
   comment_json=$(mktemp)
   curl -L -s -S \
   -H "Content-Type: application/json" \
   "COMMENT_URL" > "$comment_json"
   comment_body=$(mktemp)
   jq -r ".body // empty" "$comment_json" > $comment_body
   rm $comment_json
   
   patch_remove=$(perl -ne 'next unless s{^</summary>(.*)</details>$}{$1}; 
print' < "$comment_body")
   
   patch_add=$(perl -e '$/=undef; $_=<>; if (m{Unrecognized 
words[^<]*</summary>\n*```\n*([^<]*)```\n*</details>$}m) { print "$1" } elsif 
(m{Unrecognized words[^<]*\n\n((?:\w.*\n)+)\n}m) { print "$1" };' < 
"$comment_body")
   
   update_files
   rm $comment_body
   git add -u
   ```
   </details>
   
   <!-- See 
https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples%3A-advice
 --> <!-- markdownlint-disable MD033 MD041 -->
   <details><summary>If the flagged items do not appear to be text</summary>
   
   If items relate to a ...
   * well-formed pattern.
   
     If you can write a 
[pattern](https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples:-patterns)
 that would match it,
     try adding it to the `patterns.txt` file.
   
     Patterns are Perl 5 Regular Expressions - you can [test](
   https://www.regexplanet.com/advanced/perl/) yours before committing to 
verify it will match your lines.
   
     Note that patterns can't match multiline strings.
   
   * binary file.
   
     Please add a file path to the `excludes.txt` file matching the containing 
file.
   
     File paths are Perl 5 Regular Expressions - you can [test](
   https://www.regexplanet.com/advanced/perl/) yours before committing to 
verify it will match your files.
   
     `^` refers to the file's path from the root of the repository, so 
`^README\.md$` would exclude [README.md](
   ../tree/HEAD/README.md) (on whichever branch you're using).
   
   </details>
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to