mirror of https://github.com/apache/cassandra
merge from 2.1
This commit is contained in:
commit
1992598ecc
|
|
@ -12,6 +12,7 @@
|
|||
* UDF / UDA execution time in trace (CASSANDRA-9723)
|
||||
* Fix broken internode SSL (CASSANDRA-9884)
|
||||
Merged from 2.1:
|
||||
* (cqlsh) default load-from-file encoding to utf-8 (CASSANDRA-9898)
|
||||
* Avoid returning Permission.None when system_auth.permissions table does not
|
||||
exist (CASSANDRA-10168)
|
||||
* (cqlsh) Allow encoding to be set through command line (CASSANDRA-10004)
|
||||
|
|
|
|||
|
|
@ -118,6 +118,6 @@ def get_file_encoding_bomsize(filename):
|
|||
file_encoding, size = encoding, len(bom)
|
||||
break
|
||||
else:
|
||||
file_encoding, size = "ascii", 0
|
||||
file_encoding, size = "utf-8", 0
|
||||
|
||||
return (file_encoding, size)
|
||||
|
|
|
|||
Loading…
Reference in New Issue