久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

hive最新UDF函数(2016-10-25)

發布時間:2023/12/20 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 hive最新UDF函数(2016-10-25) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

為什么80%的碼農都做不了架構師?>>> ??

hive UDF函數 :(后期翻譯,暫時先貼著,有興趣來 ?http://apache.wiki?可以一起來翻譯呀)

https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF

不過這個基本是不需要什么翻譯,直接測試就行

LanguageManual UDF

?

Hive Operators and User-Defined Functions (UDFs)

?

  • Hive Operators and User-Defined Functions (UDFs)
    • Built-in Operators
      • Operators precedences
      • Relational Operators
      • Arithmetic Operators
      • Logical Operators
      • String Operators
      • Complex Type Constructors
      • Operators on Complex Types
    • Built-in Functions
      • Mathematical Functions
        • Mathematical Functions and Operators for Decimal Datatypes
      • Collection Functions
      • Type Conversion Functions
      • Date Functions
      • Conditional Functions
      • String Functions
      • Data Masking Functions
      • Misc. Functions
        • xpath
        • get_json_object
    • Built-in Aggregate Functions (UDAF)
    • Built-in Table-Generating Functions (UDTF)
      • explode
      • posexplode
      • json_tuple
      • parse_url_tuple
    • GROUPing and SORTing on f(column)
    • UDF internals
    • Creating Custom UDFs

?

Case-insensitive

?

All Hive keywords are case-insensitive, including the names of Hive operators and functions.

In?Beeline?or the?CLI, use the commands below to show the latest documentation:

SHOW FUNCTIONS; DESCRIBE FUNCTION <function_name>; DESCRIBE FUNCTION EXTENDED <function_name>;

Bug for expression caching when UDF nested in UDF or function

?

When?hive.cache.expr.evaluation?is set to true (which is the default) a UDF can give incorrect results if it is nested in another UDF or a Hive function. This bug affects releases 0.12.0, 0.13.0, and 0.13.1. Release 0.14.0 fixed the bug (HIVE-7314).

The problem relates to the UDF's implementation of the getDisplayString method, as?discussed?in the Hive user mailing list.

Built-in Operators

Operators precedences

Example

Operators

Description

A[B] , A.identifierbracket_op([]), dot(.)element selector, dot

-A

unary(+), unary(-), unary(~)

unary prefix operators

A IS (NOT) NULLIS NULL,IS NOT NULLunary suffix

A ^ B

bitwise xor(^)

bitwise xor

A * Bstar(*), divide(/), mod(%), div(DIV)multiplicative operators
A + Bplus(+), minus(-)

additive operators

A || Bstring concatenate(||)string concatenate
A & Bbitwise and(&)bitwise and
A | Bbitwise or(|)bitwise or

Relational Operators

The following operators compare the passed operands and generate a TRUE or FALSE value depending on whether the comparison between the operands holds.

Operator

Operand types

Description

A = B

All primitive types

TRUE if expression A is equal to expression B otherwise FALSE.

A == BAll primitive typesSynonym for the = operator.

A <=> B

All primitive types

Returns same result with EQUAL(=) operator for non-null operands, but returns TRUE if both are NULL, FALSE if one of the them is NULL. (As of version?0.9.0.)

A <> B

All primitive types

NULL if A or B is NULL, TRUE if expression A is NOT equal to expression B, otherwise FALSE.

A != B

All primitive types

Synonym for the <> operator.

A < B

All primitive types

NULL if A or B is NULL, TRUE if expression A is less than expression B, otherwise FALSE.

A <= B

All primitive types

NULL if A or B is NULL, TRUE if expression A is less than or equal to expression B, otherwise FALSE.

A > B

All primitive types

NULL if A or B is NULL, TRUE if expression A is greater than expression B, otherwise FALSE.

A >= B

All primitive types

NULL if A or B is NULL, TRUE if expression A is greater than or equal to expression B, otherwise FALSE.

A [NOT] BETWEEN B AND C

All primitive types

NULL if A, B or C is NULL, TRUE if A is greater than or equal to B AND A less than or equal to C, otherwise FALSE. This can be inverted by using the NOT keyword. (As of version?0.9.0.)

A IS NULL

All types

TRUE if expression A evaluates to NULL, otherwise FALSE.

A IS NOT NULL

All types

FALSE if expression A evaluates to NULL, otherwise TRUE.

A [NOT] LIKE B

strings

NULL if A or B is NULL, TRUE if string A matches the SQL simple regular expression B, otherwise FALSE. The comparison is done character by character. The _ character in B matches any character in A (similar to . in posix regular expressions) while the % character in B matches an arbitrary number of characters in A (similar to .* in posix regular expressions). For example, 'foobar' like 'foo' evaluates to FALSE whereas 'foobar' like 'foo_ _ _' evaluates to TRUE and so does 'foobar' like 'foo%'.

A RLIKE B

strings

NULL if A or B is NULL, TRUE if any (possibly empty) substring of A matches the Java regular expression B, otherwise FALSE. For example, 'foobar' RLIKE 'foo' evaluates to TRUE and so does 'foobar' RLIKE '^f.*r$'.

A REGEXP B

strings

Same as RLIKE.

Arithmetic Operators

The following operators support various common arithmetic operations on the operands. All return number types; if any of the operands are NULL, then the result is also NULL.

Operator

Operand types

Description

A + B

All number types

Gives the result of adding A and B. The type of the result is the same as the common parent(in the type hierarchy) of the types of the operands. For example since every integer is a float, therefore float is a containing type of integer so the + operator on a float and an int will result in a float.

A - B

All number types

Gives the result of subtracting B from A. The type of the result is the same as the common parent(in the type hierarchy) of the types of the operands.

A * B

All number types

Gives the result of multiplying A and B. The type of the result is the same as the common parent(in the type hierarchy) of the types of the operands. Note that if the multiplication causing overflow, you will have to cast one of the operators to a type higher in the type hierarchy.

A / B

All number types

Gives the result of dividing A by B. The result is a double type in most cases. When A and B are both integers, the result is a double type except when the?hive.compat?configuration parameter is set to "0.13" or "latest" in which case the result is a decimal type.

A % B

All number types

Gives the reminder resulting from dividing A by B. The type of the result is the same as the common parent(in the type hierarchy) of the types of the operands.

A & B

All number types

Gives the result of bitwise AND of A and B. The type of the result is the same as the common parent(in the type hierarchy) of the types of the operands.

A | B

All number types

Gives the result of bitwise OR of A and B. The type of the result is the same as the common parent(in the type hierarchy) of the types of the operands.

A ^ B

All number types

Gives the result of bitwise XOR of A and B. The type of the result is the same as the common parent(in the type hierarchy) of the types of the operands.

~A

All number types

Gives the result of bitwise NOT of A. The type of the result is the same as the type of A.

Logical Operators

The following operators provide support for creating logical expressions. All of them return boolean TRUE, FALSE, or NULL depending upon the boolean values of the operands. NULL behaves as an "unknown" flag, so if the result depends on the state of an unknown, the result itself is unknown.

Operator

Operand types

Description

A AND B

boolean

TRUE if both A and B are TRUE, otherwise FALSE. NULL if A or B is NULL.

A OR B

boolean

TRUE if either A or B or both are TRUE, FALSE OR NULL is NULL, otherwise FALSE.

NOT A

boolean

TRUE if A is FALSE or NULL if A is NULL. Otherwise FALSE.

! A

boolean

Same as NOT A.

A IN (val1, val2, ...)

boolean

TRUE if A is equal to any of the values. As of Hive 0.13?subqueries?are supported in IN statements.

A NOT IN (val1, val2, ...)

boolean

TRUE if A is not equal to any of the values. As of Hive 0.13?subqueries?are supported in NOT IN statements.

[NOT] EXISTS (subquery)

?

TRUE if the the subquery returns at least one row. Supported as of?Hive 0.13.

String Operators

?

Operator

Operand types

Description

A || B

strings?

Concatenates the operands - shorthand for?concat(A,B)?. Supported as of?Hive 2.2.0.

Complex Type Constructors

The following functions construct instances of complex types.

Constructor Function

Operands

Description

map

(key1, value1, key2, value2, ...)

Creates a map with the given key/value pairs.

struct

(val1, val2, val3, ...)

Creates a struct with the given field values. Struct field names will be col1, col2, ....

named_struct

(name1, val1, name2, val2, ...)

Creates a struct with the given field names and values. (As of Hive?0.8.0.)

array

(val1, val2, ...)

Creates an array with the given elements.

create_union

(tag, val1, val2, ...)

Creates a union type with the value that is being pointed to by the tag parameter.

Operators on Complex Types

The following operators provide mechanisms to access elements in Complex Types.

Operator

Operand types

Description

A[n]

A is an Array and n is an int

Returns the nth element in the array A. The first element has index 0. For example, if A is an array comprising of ['foo', 'bar'] then A[0] returns 'foo' and A[1] returns 'bar'.

M[key]

M is a Map<K, V> and key has type K

Returns the value corresponding to the key in the map. For example, if M is a map comprising of {'f' -> 'foo', 'b' -> 'bar', 'all' -> 'foobar'} then M['all'] returns 'foobar'.

S.x

S is a struct

Returns the x field of S. For example for the struct foobar {int foo, int bar}, foobar.foo returns the integer stored in the foo field of the struct.

Built-in Functions

Mathematical Functions

The following built-in mathematical functions are supported in Hive; most return NULL when the argument(s) are NULL:

Return Type

Name (Signature)

Description

DOUBLE

round(DOUBLE a)

Returns the rounded?BIGINT?value of?a.

DOUBLE

round(DOUBLE a, INT d)

Returns?a?rounded to?d?decimal places.

DOUBLEbround(DOUBLE a)Returns the rounded BIGINT value of?a?using HALF_EVEN rounding mode (as of?Hive 1.3.0, 2.0.0). Also known as Gaussian rounding or bankers' rounding. Example: bround(2.5) = 2, bround(3.5) = 4.
DOUBLEbround(DOUBLE a, INT d)Returns?a?rounded to?d?decimal places using HALF_EVEN rounding mode (as of?Hive 1.3.0, 2.0.0). Example: bround(8.25, 1) = 8.2, bround(8.35, 1) = 8.4.

BIGINT

floor(DOUBLE a)

Returns the maximum?BIGINT?value that is equal to or less than?a.

BIGINT

ceil(DOUBLE a), ceiling(DOUBLE a)

Returns the minimum BIGINT value that is equal to or greater than?a.

DOUBLE

rand(), rand(INT seed)

Returns a random number (that changes from row to row) that is distributed uniformly from 0 to 1. Specifying the seed will make sure the generated random number sequence is deterministic.

DOUBLE

exp(DOUBLE a), exp(DECIMAL a)

Returns?ea?where?e?is the base of the natural logarithm. Decimal version added in?Hive 0.13.0.

DOUBLE

ln(DOUBLE a), ln(DECIMAL a)

Returns the natural logarithm of the argument?a. Decimal version added in?Hive 0.13.0.

DOUBLE

log10(DOUBLE a), log10(DECIMAL a)

Returns the base-10 logarithm of the argument?a. Decimal version added in?Hive 0.13.0.

DOUBLE

log2(DOUBLE a), log2(DECIMAL a)

Returns the base-2 logarithm of the argument?a. Decimal version added in?Hive 0.13.0.

DOUBLE

log(DOUBLE base, DOUBLE a)

log(DECIMAL base, DECIMAL a)

Returns the base-base?logarithm of the argument?a.?Decimal versions added in?Hive 0.13.0.

DOUBLE

pow(DOUBLE a, DOUBLE p), power(DOUBLE a, DOUBLE p)

Returns?ap.

DOUBLE

sqrt(DOUBLE a), sqrt(DECIMAL a)

Returns the square root of?a. Decimal version added in?Hive 0.13.0.

STRING

bin(BIGINT a)

Returns the number in binary format (see?http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_bin).

STRING

hex(BIGINT a) hex(STRING a) hex(BINARY a)

If the argument is an?INT?or?binary,?hex?returns the number as a?STRING?in hexadecimal format. Otherwise if the number is a?STRING, it converts each character into its hexadecimal representation and returns the resulting?STRING. (See?http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_hex,?BINARY?version as of Hive?0.12.0.)

BINARY

unhex(STRING a)

Inverse of hex. Interprets each pair of characters as a hexadecimal number and converts to the byte representation of the number. (BINARY?version as of Hive?0.12.0, used to return a string.)

STRING

conv(BIGINT num, INT from_base, INT to_base), conv(STRING num, INT from_base, INT to_base)

Converts a number from a given base to another (see?http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html#function_conv).

DOUBLE

abs(DOUBLE a)

Returns the absolute value.

INT or DOUBLE

pmod(INT a, INT b), pmod(DOUBLE a, DOUBLE b)

Returns the positive value of?a mod b.

DOUBLE

sin(DOUBLE a), sin(DECIMAL a)

Returns the sine of?a?(a?is in radians). Decimal version added in?Hive 0.13.0.

DOUBLE

asin(DOUBLE a), asin(DECIMAL a)

Returns the arc sin of?a?if -1<=a<=1 or NULL otherwise. Decimal version added in?Hive 0.13.0.

DOUBLE

cos(DOUBLE a), cos(DECIMAL a)

Returns the cosine of?a?(a?is in radians). Decimal version added in?Hive 0.13.0.

DOUBLE

acos(DOUBLE a), acos(DECIMAL a)

Returns the arccosine of?a?if -1<=a<=1 or NULL otherwise. Decimal version added in?Hive 0.13.0.

DOUBLE

tan(DOUBLE a), tan(DECIMAL a)

Returns the tangent of?a?(a?is in radians). Decimal version added in?Hive 0.13.0.

DOUBLE

atan(DOUBLE a), atan(DECIMAL a)

Returns the arctangent of?a. Decimal version added in?Hive 0.13.0.

DOUBLE

degrees(DOUBLE a), degrees(DECIMAL a)

Converts value of?a?from radians to degrees. Decimal version added in?Hive 0.13.0.

DOUBLE

radians(DOUBLE a), radians(DOUBLE a)

Converts value of?a?from degrees to radians. Decimal version added in?Hive 0.13.0.

INT or DOUBLE

positive(INT a), positive(DOUBLE a)

Returns?a.

INT or DOUBLE

negative(INT a), negative(DOUBLE a)

Returns?-a.

DOUBLE or INT

sign(DOUBLE a), sign(DECIMAL a)

Returns the sign of?a?as '1.0' (if?a?is positive) or '-1.0' (if?a?is negative), '0.0' otherwise. The decimal version returns INT instead of DOUBLE. Decimal version added in?Hive 0.13.0.

DOUBLE

e()

Returns the value of?e.

DOUBLE

pi()

Returns the value of?pi.

BIGINTfactorial(INT a)Returns the factorial of?a?(as of Hive?1.2.0). Valid?a?is [0..20].
DOUBLEcbrt(DOUBLE a)Returns the cube root of?a?double value?(as of Hive?1.2.0).

INT

BIGINT

shiftleft(TINYINT|SMALLINT|INT a, INT b)

shiftleft(BIGINT a, INT?b)

Bitwise left shift (as of Hive?1.2.0). Shifts?a?b?positions to the left.

Returns int for tinyint, smallint and int?a. Returns bigint for bigint?a.

INT

BIGINT

shiftright(TINYINT|SMALLINT|INT a, INT?b)

shiftright(BIGINT a, INT?b)

Bitwise right shift (as of Hive?1.2.0). Shifts?a?b?positions to the right.

Returns int for tinyint, smallint and int?a. Returns bigint for bigint?a.

INT

BIGINT

shiftrightunsigned(TINYINT|SMALLINT|INTa, INT b),

shiftrightunsigned(BIGINT a, INT b)

Bitwise unsigned right shift (as of Hive?1.2.0).?Shifts?a?b?positions to the right.

Returns int for tinyint, smallint and int?a. Returns bigint for bigint?a.

Tgreatest(T v1, T v2, ...)Returns the greatest value of the list of values (as of Hive?1.1.0). Fixed to return NULL when one or more arguments are NULL, and strict type restriction relaxed, consistent with ">" operator (as of Hive?2.0.0).
Tleast(T v1, T v2, ...)Returns the least value of the list of values (as of Hive?1.1.0).?Fixed to return NULL when one or more arguments are NULL, and strict type restriction relaxed, consistent with "<" operator (as of Hive?2.0.0).

Mathematical Functions and Operators for Decimal Datatypes

Version

?

The decimal datatype was introduced in Hive 0.11.0 (HIVE-2693).

All regular arithmetic operators (such as +, -, *, /) and relevant mathematical UDFs (Floor, Ceil, Round, and many more) have been updated to handle decimal types. For a list of supported UDFs, see?Mathematical UDFs?in?Hive Data Types.

Collection Functions

The following built-in collection functions are supported in Hive:

Return Type

Name(Signature)

Description

int

size(Map<K.V>)

Returns the number of elements in the map type.

int

size(Array<T>)

Returns the number of elements in the array type.

array<K>

map_keys(Map<K.V>)

Returns an unordered array containing the keys of the input map.

array<V>

map_values(Map<K.V>)

Returns an unordered array containing the values of the input map.

boolean

array_contains(Array<T>, value)

Returns TRUE if the array contains value.

array<t>

sort_array(Array<T>)

Sorts the input array in ascending order according to the natural ordering of the array elements and returns it (as of version?0.9.0).

Type Conversion Functions

The following type conversion functions are supported in Hive:

Return Type

Name(Signature)

Description

binary

binary(string|binary)

Casts the parameter into a binary.

Expected "=" to follow "type"

cast(expr as <type>)

Converts the results of the expression expr to <type>. For example, cast('1' as BIGINT) will convert the string '1' to its integral representation. A null is returned if the conversion does not succeed. If cast(expr as boolean) Hive returns true for a non-empty string.

Date Functions

The following built-in date functions are supported in Hive:

Return Type

Name(Signature)

Description

string

from_unixtime(bigint unixtime[, string format])

Converts the number of seconds from unix epoch (1970-01-01 00:00:00 UTC) to a string representing the timestamp of that moment in the current system time zone in the format of "1970-01-01 00:00:00".

bigint

unix_timestamp()

Gets current Unix timestamp in seconds. This function is non-deterministic and prevents proper optimization of queries - this has been deprecated since 2.0 in favour of CURRENT_TIMESTAMP constant.

bigint

unix_timestamp(string date)

Converts time string in format?yyyy-MM-dd HH:mm:ss?to Unix timestamp (in seconds), using the default timezone and the default locale, return 0 if fail: unix_timestamp('2009-03-20 11:30:01') = 1237573801

bigint

unix_timestamp(string date, string pattern)

Convert time string with given pattern (see [http://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html]) to Unix time stamp (in seconds), return 0 if fail: unix_timestamp('2009-03-20', 'yyyy-MM-dd') = 1237532400.

pre?2.1.0:?string

2.1.0?on:?date

to_date(string timestamp)

Returns the date part of a timestamp string (pre-Hive 2.1.0): to_date("1970-01-01 00:00:00") = "1970-01-01". As of Hive 2.1.0, returns a date object.

Prior to Hive 2.1.0 (HIVE-13248) the return type was a String because no Date type existed when the method was created.

int

year(string date)

Returns the year part of a date or a timestamp string: year("1970-01-01 00:00:00") = 1970, year("1970-01-01") = 1970.

int

quarter(date/timestamp/string)Returns the quarter of the year for a date, timestamp, or string in the range 1 to 4 (as of Hive?1.3.0). Example: quarter('2015-04-08') = 2.

int

month(string date)

Returns the month part of a date or a timestamp string: month("1970-11-01 00:00:00") = 11, month("1970-11-01") = 11.

int

day(string date) dayofmonth(date)

Returns the day part of a date or a timestamp string: day("1970-11-01 00:00:00") = 1, day("1970-11-01") = 1.

int

hour(string date)

Returns the hour of the timestamp: hour('2009-07-30 12:58:59') = 12, hour('12:58:59') = 12.

int

minute(string date)

Returns the minute of the timestamp.

int

second(string date)

Returns the second of the timestamp.

int

weekofyear(string date)

Returns the week number of a timestamp string: weekofyear("1970-11-01 00:00:00") = 44, weekofyear("1970-11-01") = 44.

int

datediff(string enddate, string startdate)

Returns the number of days from startdate to enddate: datediff('2009-03-01', '2009-02-27') = 2.

pre?2.1.0:?string

2.1.0?on:?date

date_add(string startdate, int days)

Adds a number of days to startdate: date_add('2008-12-31', 1) = '2009-01-01'.

Prior to Hive 2.1.0 (HIVE-13248) the return type was a String because no Date type existed when the method was created.

pre?2.1.0:?string

2.1.0?on:?date

date_sub(string startdate, int days)

Subtracts a number of days to startdate: date_sub('2008-12-31', 1) = '2008-12-30'.

Prior to Hive 2.1.0 (HIVE-13248) the return type was a String because no Date type existed when the method was created.

timestamp

from_utc_timestamp(timestamp, string timezone)

Assumes given timestamp is UTC and converts to given timezone (as of Hive?0.8.0). For example, from_utc_timestamp('1970-01-01 08:00:00','PST') returns 1970-01-01 00:00:00.

timestamp

to_utc_timestamp(timestamp, string timezone)

Assumes given timestamp is in given timezone and converts to UTC (as of Hive?0.8.0). For example, to_utc_timestamp('1970-01-01 00:00:00','PST') returns 1970-01-01 08:00:00.

datecurrent_date

Returns the current date at the start of query evaluation (as of Hive?1.2.0). All calls of current_date within the same query return the same value.

timestampcurrent_timestamp

Returns the current timestamp at the start of query evaluation?(as of Hive?1.2.0). All calls of current_timestamp within the same query return the same value.

stringadd_months(string start_date, int num_months)

Returns the date that is num_months after start_date?(as of Hive?1.1.0). start_date is a string, date or timestamp. num_months is an integer. The time part of start_date is ignored.?If start_date is the last day of the month or if the resulting month has fewer days than the day component of start_date, then the result is the last day of the resulting month. Otherwise, the result has the same day component as start_date.

stringlast_day(string date)Returns the last day of the month which the date belongs to?(as of Hive?1.1.0). date is a string in the format 'yyyy-MM-dd HH:mm:ss' or 'yyyy-MM-dd'.?The time part of date is ignored.
stringnext_day(string start_date, string day_of_week)Returns the first date which is later than start_date and named as day_of_week?(as of Hive?1.2.0).?start_date is a string/date/timestamp. day_of_week is 2 letters, 3 letters or full name of the day of the week (e.g. Mo, tue, FRIDAY). The time part of start_date is ignored. Example: next_day('2015-01-14', 'TU') = 2015-01-20.
stringtrunc(string date, string format)Returns date truncated to the unit specified by the format?(as of Hive?1.2.0). Supported formats: MONTH/MON/MM, YEAR/YYYY/YY. Example: trunc('2015-03-17', 'MM') = 2015-03-01.
doublemonths_between(date1, date2)Returns number of months between dates date1 and date2 (as of Hive?1.2.0). If date1 is later than date2, then the result is positive. If date1 is earlier than date2, then the result is negative. If date1 and date2 are either the same days of the month or both last days of months, then the result is always an integer. Otherwise the UDF calculates the fractional portion of the result based on a 31-day month and considers the difference in time components date1 and date2. date1 and date2 type can be date, timestamp or string in the format 'yyyy-MM-dd' or 'yyyy-MM-dd HH:mm:ss'. The result is rounded to 8 decimal places. Example: months_between('1997-02-28 10:30:00', '1996-10-30') = 3.94959677
stringdate_format(date/timestamp/string ts, string fmt)

Converts a date/timestamp/string to a value of string in the format specified by the date format fmt (as of Hive?1.2.0). Supported formats are Java SimpleDateFormat formats?–?https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html. The second argument fmt should be constant. Example: date_format('2015-04-08', 'y') = '2015'.

date_format can be used to implement other UDFs, e.g.:

  • dayname(date) is date_format(date, 'EEEE')
  • dayofyear(date) is date_format(date, 'D')

Conditional Functions

Return Type

Name(Signature)

Description

T

if(boolean testCondition, T valueTrue, T valueFalseOrNull)

Returns valueTrue when testCondition is true, returns valueFalseOrNull otherwise.

booleanisnull( a )Returns true if a is NULL and false otherwise.
booleanisnotnull ( a )Returns true if a is not NULL and false otherwise.
Tnvl(T value, T default_value)Returns default value if value is null else returns value (as of HIve?0.11).

T

COALESCE(T v1, T v2, ...)

Returns the first v that is not NULL, or NULL if all v's are NULL.

T

CASE a WHEN b THEN c [WHEN d THEN e]* [ELSE f] END

When a = b, returns c; when a = d, returns e; else returns f.

T

CASE WHEN a THEN b [WHEN c THEN d]* [ELSE e] END

When a = true, returns b; when c = true, returns d; else returns e.

Tnullif( a, b )

Returns NULL if a=b; otherwise returns a?(as of Hive?2.2.0).

Shorthand for: CASE?WHEN a = b then NULL else a

String Functions

The following built-in String functions are supported in Hive:

Return Type

Name(Signature)

Description

int

ascii(string str)

Returns the numeric value of the first character of str.

string

base64(binary bin)

Converts the argument from binary to a base 64 string (as of Hive?0.12.0).

stringchr(bigint|double A)Returns the ASCII character having the binary equivalent to A (as of Hive?1.3.0 and 2.1.0). If A is larger than 256 the result is equivalent to chr(A % 256). Example: select chr(88); returns "X".

string

concat(string|binary A, string|binary B...)

Returns the string or bytes resulting from concatenating the strings or bytes passed in as parameters in order. For example, concat('foo', 'bar') results in 'foobar'. Note that this function can take any number of input strings.

array<struct<string,double>>

context_ngrams(array<array<string>>, array<string>, int K, int pf)

Returns the top-k contextual N-grams from a set of tokenized sentences, given a string of "context". See?StatisticsAndDataMining?for more information.

string

concat_ws(string SEP, string A, string B...)

Like concat() above, but with custom separator SEP.

string

concat_ws(string SEP, array<string>)

Like concat_ws() above, but taking an array of strings. (as of Hive?0.9.0)

string

decode(binary bin, string charset)

Decodes the first argument into a String using the provided character set (one of 'US-ASCII', 'ISO-8859-1', 'UTF-8', 'UTF-16BE', 'UTF-16LE', 'UTF-16'). If either argument is null, the result will also be null. (As of Hive?0.12.0.)

binary

encode(string src, string charset)

Encodes the first argument into a BINARY using the provided character set (one of 'US-ASCII', 'ISO-8859-1', 'UTF-8', 'UTF-16BE', 'UTF-16LE', 'UTF-16'). If either argument is null, the result will also be null. (As of Hive?0.12.0.)

int

find_in_set(string str, string strList)

Returns the first occurance of str in strList where strList is a comma-delimited string. Returns null if either argument is null. Returns 0 if the first argument contains any commas. For example, find_in_set('ab', 'abc,b,ab,c,def') returns 3.

string

format_number(number x, int d)

Formats the number X to a format like '#,###,###.##', rounded to D decimal places, and returns the result as a string. If D is 0, the result has no decimal point or fractional part. (As of Hive?0.10.0; bug with float types fixed in?Hive 0.14.0, decimal type support added in?Hive 0.14.0)

string

get_json_object(string json_string, string path)

Extracts json object from a json string based on json path specified, and returns json string of the extracted json object. It will return null if the input json string is invalid.?NOTE: The json path can only have the characters [0-9a-z_], i.e., no upper-case or special characters. Also, the keys *cannot start with numbers.* This is due to restrictions on Hive column names.

boolean

in_file(string str, string filename)

Returns true if the string str appears as an entire line in filename.

int

instr(string str, string substr)

Returns the position of the first occurrence of?substr?in?str. Returns?null?if either of the arguments are?null?and returns?0?if?substrcould not be found in?str. Be aware that this is not zero based. The first character in?str?has index 1.

int

length(string A)

Returns the length of the string.

int

locate(string substr, string str[, int pos])

Returns the position of the first occurrence of substr in str after position pos.

string

lower(string A) lcase(string A)

Returns the string resulting from converting all characters of B to lower case. For example, lower('fOoBaR') results in 'foobar'.

string

lpad(string str, int len, string pad)

Returns str, left-padded with pad to a length of len.

string

ltrim(string A)

Returns the string resulting from trimming spaces from the beginning(left hand side) of A. For example, ltrim(' foobar ') results in 'foobar '.

array<struct<string,double>>

ngrams(array<array<string>>, int N, int K, int pf)

Returns the top-k N-grams from a set of tokenized sentences, such as those returned by the sentences() UDAF. See?StatisticsAndDataMining?for more information.

string

parse_url(string urlString, string partToExtract [, string keyToExtract])

Returns the specified part from the URL. Valid values for partToExtract include HOST, PATH, QUERY, REF, PROTOCOL, AUTHORITY, FILE, and USERINFO. For example, parse_url('http://facebook.com/path1/p.php?k1=v1&k2=v2#Ref1', 'HOST') returns 'facebook.com'. Also a value of a particular key in QUERY can be extracted by providing the key as the third argument, for example, parse_url('http://facebook.com/path1/p.php?k1=v1&k2=v2#Ref1', 'QUERY', 'k1') returns 'v1'.

string

printf(String format, Obj... args)

Returns the input formatted according do printf-style format strings (as of Hive?0.9.0).

string

regexp_extract(string subject, string pattern, int index)

Returns the string extracted using the pattern. For example, regexp_extract('foothebar', 'foo(.*?)(bar)', 2) returns 'bar.' Note that some care is necessary in using predefined character classes: using '\s' as the second argument will match the letter s; '\\s' is necessary to match whitespace, etc. The 'index' parameter is the Java regex Matcher group() method index. See docs/api/java/util/regex/Matcher.html for more information on the 'index' or Java regex group() method.

string

regexp_replace(string INITIAL_STRING, string PATTERN, string REPLACEMENT)

Returns the string resulting from replacing all substrings in INITIAL_STRING that match the java regular expression syntax defined in PATTERN with instances of REPLACEMENT. For example, regexp_replace("foobar", "oo|ar", "") returns 'fb.' Note that some care is necessary in using predefined character classes: using '\s' as the second argument will match the letter s; '\\s' is necessary to match whitespace, etc.

string

repeat(string str, int n)

Repeats str n times.

stringreplace(string A, string OLD, string NEW)Returns the string A with all non-overlapping?occurrences of OLD replaced with NEW (as of?Hive 1.3.0 and 2.1.0). Example: select replace("ababab", "abab", "Z"); returns "Zab".

string

reverse(string A)

Returns the reversed string.

string

rpad(string str, int len, string pad)

Returns str, right-padded with pad to a length of len.

string

rtrim(string A)

Returns the string resulting from trimming spaces from the end(right hand side) of A. For example, rtrim(' foobar ') results in ' foobar'.

array<array<string>>

sentences(string str, string lang, string locale)

Tokenizes a string of natural language text into words and sentences, where each sentence is broken at the appropriate sentence boundary and returned as an array of words. The 'lang' and 'locale' are optional arguments. For example, sentences('Hello there! How are you?') returns ( ("Hello", "there"), ("How", "are", "you") ).

string

space(int n)

Returns a string of n spaces.

array

split(string str, string pat)

Splits str around pat (pat is a regular expression).

map<string,string>

str_to_map(text[, delimiter1, delimiter2])

Splits text into key-value pairs using two delimiters. Delimiter1 separates text into K-V pairs, and Delimiter2 splits each K-V pair. Default delimiters are ',' for delimiter1 and '=' for delimiter2.

string

substr(string|binary A, int start) substring(string|binary A, int start)

Returns the substring or slice of the byte array of A starting from start position till the end of string A. For example, substr('foobar', 4) results in 'bar' (see [http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_substr]).

string

substr(string|binary A, int start, int len) substring(string|binary A, int start, int len)

Returns the substring or slice of the byte array of A starting from start position with length len. For example, substr('foobar', 4, 1) results in 'b' (see [http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_substr]).

stringsubstring_index(string A, string delim, int count)Returns the substring from string A before count occurrences of the delimiter delim (as of?Hive?1.3.0). If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final delimiter (counting from the right) is returned. Substring_index performs a case-sensitive match when searching for delim. Example: substring_index('www.apache.org', '.', 2) = 'www.apache'.

string

translate(string|char|varchar input, string|char|varchar from, string|char|varchar to)

Translates the input string by replacing the characters present in the?from?string with the corresponding characters in the?to?string. This is similar to the?translate?function in?PostgreSQL. If any of the parameters to this UDF are NULL, the result is NULL as well. (Available as of Hive?0.10.0, for string types)

Char/varchar support added as of?Hive 0.14.0.

string

trim(string A)

Returns the string resulting from trimming spaces from both ends of A. For example, trim(' foobar ') results in 'foobar'

binary

unbase64(string str)

Converts the argument from a base 64 string to BINARY. (As of Hive?0.12.0.)

string

upper(string A) ucase(string A)

Returns the string resulting from converting all characters of A to upper case. For example, upper('fOoBaR') results in 'FOOBAR'.

stringinitcap(string A)Returns string, with the first letter of each word in uppercase, all other letters in lowercase. Words are delimited by whitespace.?(As of Hive1.1.0.)
intlevenshtein(string A, string B)Returns the Levenshtein distance between two strings?(as of Hive?1.2.0). For example, levenshtein('kitten', 'sitting') results in 3.
stringsoundex(string A)Returns soundex code of the string?(as of Hive?1.2.0). For example, soundex('Miller') results in M460.

Data Masking Functions

The following built-in data masking functions are supported in Hive:

Return Type

Name(Signature)

Description

string

mask(string str[, string upper[, string lower[, string number]]])

Returns a masked version of str (as of Hive?2.1.0). By default, upper case letters are converted to "X", lower case letters are converted to "x" and numbers are converted to "n". For example mask("abcd-EFGH-8765-4321") results in xxxx-XXXX-nnnn-nnnn. You can override the characters used in the mask by supplying additional arguments: the second argument controls the mask character for upper case letters, the third argument for lower case letters and the fourth argument for numbers. For example, mask("abcd-EFGH-8765-4321", "U", "l", "#") results in llll-UUUU-####-####.

stringmask_first_n(string str[, int n])Returns a masked version of str with the first n values masked (as of Hive?2.1.0). Upper case letters are converted to "X", lower case letters are converted to "x" and numbers are converted to "n". For example, mask_first_n("1234-5678-8765-4321", 4) results in nnnn-5678-8765-4321.
stringmask_last_n(string str[, int n])Returns a masked version of str with the last n values masked (as of Hive?2.1.0). Upper case letters are converted to "X", lower case letters are converted to "x" and numbers are converted to "n". For example, mask_last_n("1234-5678-8765-4321", 4) results in 1234-5678-8765-nnnn.
stringmask_show_first_n(string str[, int n])Returns a masked version of str, showing the first n characters unmasked (as of Hive?2.1.0). Upper case letters are converted to "X", lower case letters are converted to "x" and numbers are converted to "n". For example, mask_show_first_n("1234-5678-8765-4321", 4) results in 1234-nnnn-nnnn-nnnn.
stringmask_show_last_n(string str[, int n])Returns a masked version of str, showing the last n characters unmasked?(as of Hive?2.1.0). Upper case letters are converted to "X", lower case letters are converted to "x" and numbers are converted to "n". For example, mask_show_last_n("1234-5678-8765-4321", 4) results in nnnn-nnnn-nnnn-4321.
stringmask_hash(string|char|varchar str)Returns a hashed value based on str (as of Hive?2.1.0). The hash is consistent and can be used to join masked values together across tables. This function returns null for non-string types.

Misc. Functions

Return Type

Name(Signature)

Description

varies

java_method(class, method[, arg1[, arg2..]])

Synonym for?reflect. (As of Hive?0.9.0.)

varies

reflect(class, method[, arg1[, arg2..]])

Calls a Java method by matching the argument signature, using reflection. (As of Hive?0.7.0.) See?Reflect (Generic) UDF?for examples.

int

hash(a1[, a2...])

Returns a hash value of the arguments. (As of Hive 0.4.)

stringcurrent_user()Returns current user name from the configured authenticator manager?(as of Hive?1.2.0). Could be the same as the user provided when connecting, but with some authentication managers (for example HadoopDefaultAuthenticator) it could be different.
stringlogged_in_user()Returns current user name from the session state?(as of Hive?2.2.0). This is the username provided when connecting to Hive.
stringcurrent_database()Returns current database name (as of Hive?0.13.0).
stringmd5(string/binary)Calculates an MD5 128-bit checksum for the string or binary (as of Hive?1.3.0). The value is returned as a string of 32 hex digits, or NULL if the argument was NULL. Example: md5('ABC') = '902fbdd2b1df0c4f70b4a5d23525e932'.
string

sha1(string/binary)

sha(string/binary)

Calculates the SHA-1 digest for string or binary and returns the value as a hex string (as of Hive?1.3.0). Example: sha1('ABC') = '3c01bdbb26f358bab27f267924aa2c9a03fcfdb8'.
bigintcrc32(string/binary)Computes a cyclic redundancy check value for string or binary argument and returns bigint value (as of Hive?1.3.0). Example: crc32('ABC') = 2743272264.
stringsha2(string/binary, int)Calculates the SHA-2 family of hash functions (SHA-224, SHA-256, SHA-384, and SHA-512) (as of Hive?1.3.0). The first argument is the string or binary to be hashed. The second argument indicates the desired bit length of the result, which must have a value of 224, 256, 384, 512, or 0 (which is equivalent to 256). SHA-224 is supported starting from Java 8. If either argument is NULL or the hash length is not one of the permitted values, the return value is NULL. Example: sha2('ABC', 256) = 'b5d4045c3f466fa91fe2cc6abe79232a1a57cdf104f7a26e716e0a1e2789df78'.
binaryaes_encrypt(input string/binary, key string/binary)Encrypt input using AES (as of Hive?1.3.0). Key lengths of 128, 192 or 256 bits can be used. 192 and 256 bits keys can be used if Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files are installed. If either argument is NULL or the key length is not one of the permitted values, the return value is NULL. Example: base64(aes_encrypt('ABC', '1234567890123456')) = 'y6Ss+zCYObpCbgfWfyNWTw=='.
binaryaes_decrypt(input binary, key string/binary)Decrypt input using AES (as of Hive?1.3.0). Key lengths of 128, 192 or 256 bits can be used. 192 and 256 bits keys can be used if Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files are installed. If either argument is NULL or the key length is not one of the permitted values, the return value is NULL. Example: aes_decrypt(unbase64('y6Ss+zCYObpCbgfWfyNWTw=='), '1234567890123456') = 'ABC'.
stringversion()Returns the Hive version (as of Hive?2.1.0). The string contains 2 fields, the first being a build number and the second being a build hash. Example: "select version();" might return "2.1.0.2.5.0.0-1245 r027527b9c5ce1a3d7d0b6d2e6de2378fb0c39232". Actual results will depend on your build.

xpath

The following functions are described in?LanguageManual XPathUDF:

  • xpath, xpath_short, xpath_int, xpath_long, xpath_float, xpath_double, xpath_number, xpath_string

get_json_object

A limited version of JSONPath is supported:

  • $ : Root object
  • . : Child operator
  • [] : Subscript operator for array
  • * : Wildcard for []

Syntax not supported that's worth noticing:

  • : Zero length string as key
  • .. : Recursive descent
  • @ : Current object/element
  • () : Script expression
  • ?() : Filter (script) expression.
  • [,] : Union operator
  • [start:end.step] : array slice operator

Example: src_json table is a single column (json), single row table:

?

+----+

???????????????????????????????json

+----+

{"store":

??{"fruit":\[{"weight":8,"type":"apple"},{"weight":9,"type":"pear"}],

???"bicycle":{"price":19.95,"color":"red"}

??},

?"email":"amy@only_for_json_udf_test.net",

?"owner":"amy"

}

+----+

?

The fields of the json object can be extracted using these queries:

?

hive> SELECT get_json_object(src_json.json,?'$.owner') FROM src_json;

amy

?

hive> SELECT get_json_object(src_json.json,?'$.store.fruit\[0]') FROM src_json;

{"weight":8,"type":"apple"}

?

hive> SELECT get_json_object(src_json.json,?'$.non_exist_key') FROM src_json;

NULL

?

Built-in Aggregate Functions (UDAF)

The following built-in aggregate functions are supported in Hive:

Return Type

Name(Signature)

Description

BIGINT

count(*), count(expr), count(DISTINCT expr[, expr...])

count(*) - Returns the total number of retrieved rows, including rows containing NULL values.

count(expr) - Returns the number of rows for which the supplied expression is non-NULL.

count(DISTINCT expr[, expr]) - Returns the number of rows for which the supplied expression(s) are unique and non-NULL. Execution of this can be optimized with?hive.optimize.distinct.rewrite.

DOUBLE

sum(col), sum(DISTINCT col)

Returns the sum of the elements in the group or the sum of the distinct values of the column in the group.

DOUBLE

avg(col), avg(DISTINCT col)

Returns the average of the elements in the group or the average of the distinct values of the column in the group.

DOUBLE

min(col)

Returns the minimum of the column in the group.

DOUBLE

max(col)

Returns the maximum value of the column in the group.

DOUBLE

variance(col), var_pop(col)

Returns the variance of a numeric column in the group.

DOUBLE

var_samp(col)

Returns the unbiased sample variance of a numeric column in the group.

DOUBLE

stddev_pop(col)

Returns the standard deviation of a numeric column in the group.

DOUBLE

stddev_samp(col)

Returns the unbiased sample standard deviation of a numeric column in the group.

DOUBLE

covar_pop(col1, col2)

Returns the population covariance of a pair of numeric columns in the group.

DOUBLE

covar_samp(col1, col2)

Returns the sample covariance of a pair of a numeric columns in the group.

DOUBLE

corr(col1, col2)

Returns the Pearson coefficient of correlation of a pair of a numeric columns in the group.

DOUBLE

percentile(BIGINT col, p)

Returns the exact pth?percentile of a column in the group (does not work with floating point types). p must be between 0 and 1. NOTE: A true percentile can only be computed for integer values. Use PERCENTILE_APPROX if your input is non-integral.

array<double>

percentile(BIGINT col, array(p1?[, p2]...))

Returns the exact percentiles p1, p2, ... of a column in the group (does not work with floating point types). pi?must be between 0 and 1. NOTE: A true percentile can only be computed for integer values. Use PERCENTILE_APPROX if your input is non-integral.

DOUBLE

percentile_approx(DOUBLE col, p [, B])

Returns an approximate pth?percentile of a numeric column (including floating point types) in the group. The B parameter controls approximation accuracy at the cost of memory. Higher values yield better approximations, and the default is 10,000. When the number of distinct values in col is smaller than B, this gives an exact percentile value.

array<double>

percentile_approx(DOUBLE col, array(p1?[, p2]...) [, B])

Same as above, but accepts and returns an array of percentile values instead of a single one.

array<struct {'x','y'}>

histogram_numeric(col, b)

Computes a histogram of a numeric column in the group using b non-uniformly spaced bins. The output is an array of size b of double-valued (x,y) coordinates that represent the bin centers and heights

array

collect_set(col)

Returns a set of objects with duplicate elements eliminated.

array

collect_list(col)

Returns a list of objects with duplicates. (As of Hive?0.13.0.)

INTEGERntile(INTEGER x)

Divides an ordered partition into?x?groups called buckets and assigns a bucket number to each row in the partition. This?allows easy calculation of tertiles, quartiles, deciles, percentiles and other?common summary statistics. (As of Hive?0.11.0.)

Built-in Table-Generating Functions (UDTF)

Normal user-defined functions, such as concat(), take in a single input row and output a single output row. In contrast, table-generating functions transform a single input row to multiple output rows.

Return Type

Name(Signature)

Description

N rows

explode(ARRAY)

Returns one row for each element from the array.

N rows

explode(MAP)

Returns one row for each key-value pair from the input map with two columns in each row: one for the key and another for the value. (As of Hive?0.8.0.)

?

inline(ARRAY<STRUCT[,STRUCT]>)

Explodes an array of structs into a table. (As of Hive?0.10.)

Array Type

explode(array<TYPE> a)

For each element in a, generates a row containing that element.

tuple

json_tuple(jsonStr, k1, k2, ...)

Takes a set of names (keys) and a JSON string, and returns a tuple of values. This is a more efficient version of the?get_json_object?UDF because it can get multiple keys with just one call.

tuple

parse_url_tuple(url, p1, p2, ...)

This is similar to the?parse_url()?UDF but can extract multiple parts at once out of a URL. Valid part names are: HOST, PATH, QUERY, REF, PROTOCOL, AUTHORITY, FILE, USERINFO, QUERY:<KEY>.

N rows

posexplode(ARRAY)

Behaves like?explode?for arrays, but includes the position of items in the original array by returning a tuple of?(pos, value). (As of?Hive 0.13.0.)

N rows

stack(INT n, v_1, v_2, ..., v_k)

Breaks up v_1, ..., v_k into n rows. Each row will have k/n columns. n must be constant.

Using the syntax "SELECT udtf(col) AS colAlias..." has a few limitations:

  • No other expressions are allowed in SELECT
    • SELECT pageid, explode(adid_list) AS myCol... is not supported
  • UDTF's can't be nested
    • SELECT explode(explode(adid_list)) AS myCol... is not supported
  • GROUP BY / CLUSTER BY / DISTRIBUTE BY / SORT BY is not supported
    • SELECT explode(adid_list) AS myCol ... GROUP BY myCol is not supported

Please see?LanguageManual LateralView?for an alternative syntax that does not have these limitations.

Also see?Writing UDTFs?if you want to create a custom UDTF.

explode

explode()?takes in an array (or a map) as an input and outputs the elements of the array (map) as separate rows. UDTFs can be used in the SELECT expression list and as a part of LATERAL VIEW.

As an example of using?explode()?in the SELECT expression list, consider a table named myTable that has a single column (myCol) and two rows:

Array<int> myCol

[100,200,300]

[400,500,600]

Then running the query:

?

SELECT?explode(myCol)?AS?myNewCol?FROM?myTable;

?

will produce:

(int) myNewCol

100

200

300

400

500

600

The usage with Maps is similar:

?

SELECT?explode(myMap)?AS?(myMapKey, myMapValue)?FROM?myMapTable;

?

posexplode

Version

?

Available as of Hive 0.13.0. See?HIVE-4943.

posexplode()?is similar to?explode?but instead of just returning the elements of the array it returns the element as well as its position in the original array.

As an example of using?posexplode()?in the SELECT expression list, consider a table named myTable that has a single column (myCol) and two rows:

Array<int> myCol

[100,200,300]

[400,500,600]

Then running the query:

?

SELECT?posexplode(myCol)?AS?pos, myNewCol?FROM?myTable;

?

will produce:

(int) pos

(int) myNewCol

1

100

2

200

3

300

1

400

2

500

3

600

json_tuple

A new json_tuple() UDTF is introduced in Hive 0.7. It takes a set of names (keys) and a JSON string, and returns a tuple of values using one function. This is much more efficient than calling GET_JSON_OBJECT to retrieve more than one key from a single JSON string. In any case where a single JSON string would be parsed more than once, your query will be more efficient if you parse it once, which is what JSON_TUPLE is for. As JSON_TUPLE is a UDTF, you will need to use the?LATERAL VIEW?syntax in order to achieve the same goal.

For example,

?

select a.timestamp, get_json_object(a.appevents,?'$.eventid'), get_json_object(a.appenvets,?'$.eventname') from log a;

?

should be changed to:

?

select a.timestamp, b.*

from log a lateral view json_tuple(a.appevent,?'eventid',?'eventname') b as f1, f2;

?

parse_url_tuple

The parse_url_tuple() UDTF is similar to parse_url(), but can extract multiple parts of a given URL, returning the data in a tuple. Values for a particular key in QUERY can be extracted by appending a colon and the key to the partToExtract argument, for example,?parse_url_tuple('http://facebook.com/path1/p.php?k1=v1&k2=v2#Ref1', 'QUERY:k1', 'QUERY:k2') returns a tuple with values of 'v1','v2'. This is more efficient than calling parse_url() multiple times. All the input parameters and output column types are string.

?

SELECT b.*

FROM src LATERAL VIEW parse_url_tuple(fullurl,?'HOST',?'PATH',?'QUERY',?'QUERY:id') b as host, path, query, query_id LIMIT?1;

?

GROUPing and SORTing on f(column)

A typical OLAP pattern is that you have a timestamp column and you want to group by daily or other less granular date windows than by second. So you might want to select concat(year(dt),month(dt)) and then group on that concat(). But if you attempt to GROUP BY or SORT BY a column on which you've applied a function and alias, like this:

?

select f(col) as fc, count(*) from table_name group by fc;

?

you will get an error:

?

FAILED: Error in semantic analysis: line?1:69?Invalid Table Alias or Column Reference fc

?

because you are not able to GROUP BY or SORT BY a column alias on which a function has been applied. There are two workarounds. First, you can reformulate this query with subqueries, which is somewhat complicated:

?

select sq.fc,col1,col2,...,colN,count(*) from

??(select f(col) as fc,col1,col2,...,colN from table_name) sq

?group by sq.fc,col1,col2,...,colN;

?

Or you can make sure not to use a column alias, which is simpler:

?

select f(col) as fc, count(*) from table_name group by f(col);

?

Contact Tim Ellis (tellis) at RiotGames dot com if you would like to discuss this in further detail.

UDF internals

The context of a UDF's evaluate method is one row at a time. A simple invocation of a UDF like

?

SELECT length(string_col) FROM table_name;

?

would evaluate the length of each of the string_col's values in the map portion of the job. The side effect of the UDF being evaluated on the map-side is that you can't control the order of rows which get sent to the mapper. It is the same order in which the file split sent to the mapper gets deserialized. Any reduce side operation (such as?SORT BY, ORDER BY, regular JOIN, etc.) would apply to the UDFs output as if it is just another column of the table. This is fine since the context of the UDF's evaluate method is meant to be one row at a time.

If you would like to control which rows get sent to the same UDF (and possibly in what order), you will have the urge to make the UDF evaluate during the reduce phase. This is achievable by making use of?DISTRIBUTE BY, DISTRIBUTE BY + SORT BY, CLUSTER BY. An example query would be:

?

SELECT reducer_udf(my_col, distribute_col, sort_col) FROM

(SELECT my_col, distribute_col, sort_col FROM table_name DISTRIBUTE BY distribute_col SORT BY distribute_col, sort_col) t

?

However, one could argue that the very premise of your requirement to control the set of rows sent to the same UDF is to do aggregation in that UDF. In such a case, using a User Defined Aggregate Function (UDAF) is a better choice. You can read more about writing a UDAF?here. Alternatively, you can user a custom reduce script to accomplish the same using?Hive's Transform functionality. Both of these options would do aggregations on the reduce side.

Creating Custom UDFs

For information about how to create a custom UDF, see?Hive Plugins?and?Create Function.

轉載于:https://my.oschina.net/repine/blog/775394

總結

以上是生活随笔為你收集整理的hive最新UDF函数(2016-10-25)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

亚洲成av人片天堂网无码】 | 啦啦啦www在线观看免费视频 | 亚洲欧洲中文日韩av乱码 | 综合网日日天干夜夜久久 | 人妻天天爽夜夜爽一区二区 | 亚洲男女内射在线播放 | 国产亚洲tv在线观看 | 欧美色就是色 | 丰满少妇熟乱xxxxx视频 | 免费网站看v片在线18禁无码 | 久久 国产 尿 小便 嘘嘘 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 欧美熟妇另类久久久久久多毛 | 美女极度色诱视频国产 | 国产福利视频一区二区 | 国产一区二区三区日韩精品 | 日本免费一区二区三区最新 | 又粗又大又硬又长又爽 | 亚洲综合无码久久精品综合 | 中文亚洲成a人片在线观看 | 激情人妻另类人妻伦 | 亚洲精品午夜国产va久久成人 | 88国产精品欧美一区二区三区 | 午夜福利一区二区三区在线观看 | 日产精品99久久久久久 | 国产精品久久久久9999小说 | 中文精品久久久久人妻不卡 | 中文精品久久久久人妻不卡 | 精品无码一区二区三区的天堂 | 亚洲成av人影院在线观看 | 老头边吃奶边弄进去呻吟 | 久久婷婷五月综合色国产香蕉 | 欧洲精品码一区二区三区免费看 | 牛和人交xxxx欧美 | 亚洲中文字幕无码一久久区 | 国产69精品久久久久app下载 | 日本大香伊一区二区三区 | 在教室伦流澡到高潮hnp视频 | 性开放的女人aaa片 | 国产精品无码一区二区桃花视频 | 中文字幕人妻无码一夲道 | 99久久精品无码一区二区毛片 | 久久aⅴ免费观看 | 亚洲乱码中文字幕在线 | 在线观看国产午夜福利片 | 国产精品久久久 | 欧美性猛交xxxx富婆 | 强奷人妻日本中文字幕 | 99riav国产精品视频 | 国产精品.xx视频.xxtv | 日本一卡二卡不卡视频查询 | 国色天香社区在线视频 | 色诱久久久久综合网ywww | 欧美 日韩 亚洲 在线 | 乱人伦中文视频在线观看 | 偷窥村妇洗澡毛毛多 | 精品人人妻人人澡人人爽人人 | 图片小说视频一区二区 | 国产亚洲人成在线播放 | 丰满岳乱妇在线观看中字无码 | 激情爆乳一区二区三区 | 久激情内射婷内射蜜桃人妖 | 国产精华av午夜在线观看 | 又粗又大又硬又长又爽 | 午夜性刺激在线视频免费 | 国内精品人妻无码久久久影院蜜桃 | 亚洲精品国产品国语在线观看 | 亚洲熟妇色xxxxx欧美老妇y | 国产精品无码成人午夜电影 | 18黄暴禁片在线观看 | 99er热精品视频 | 亚洲区小说区激情区图片区 | 全黄性性激高免费视频 | 波多野结衣aⅴ在线 | 又大又硬又黄的免费视频 | 亚洲欧洲无卡二区视頻 | 女人被男人躁得好爽免费视频 | 天堂在线观看www | 国产一精品一av一免费 | √天堂资源地址中文在线 | 亚洲天堂2017无码 | 偷窥村妇洗澡毛毛多 | 亚洲区欧美区综合区自拍区 | 大屁股大乳丰满人妻 | 四虎国产精品一区二区 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产亚av手机在线观看 | www一区二区www免费 | 欧美真人作爱免费视频 | 狠狠综合久久久久综合网 | 无码一区二区三区在线 | 亚洲熟熟妇xxxx | 少妇久久久久久人妻无码 | 激情爆乳一区二区三区 | 97精品国产97久久久久久免费 | 秋霞特色aa大片 | 九九久久精品国产免费看小说 | 亚洲成av人在线观看网址 | 亚洲精品国偷拍自产在线麻豆 | 亚洲一区二区三区含羞草 | 麻豆果冻传媒2021精品传媒一区下载 | 国产精品无码一区二区桃花视频 | 国精品人妻无码一区二区三区蜜柚 | 人妻少妇精品无码专区动漫 | а√资源新版在线天堂 | 日产国产精品亚洲系列 | 最近的中文字幕在线看视频 | 中文字幕色婷婷在线视频 | 色综合久久网 | 午夜丰满少妇性开放视频 | 狠狠噜狠狠狠狠丁香五月 | 国产精品鲁鲁鲁 | 精品少妇爆乳无码av无码专区 | 东京一本一道一二三区 | 蜜桃av抽搐高潮一区二区 | 亚洲中文字幕在线无码一区二区 | a在线观看免费网站大全 | 夜精品a片一区二区三区无码白浆 | 亚洲欧美精品伊人久久 | 性欧美大战久久久久久久 | 色情久久久av熟女人妻网站 | 国产两女互慰高潮视频在线观看 | 小鲜肉自慰网站xnxx | 中文字幕无线码免费人妻 | 4hu四虎永久在线观看 | 国产艳妇av在线观看果冻传媒 | 亚洲一区二区三区 | 国产亚洲人成在线播放 | 无码人妻精品一区二区三区不卡 | 色综合久久中文娱乐网 | 伊人久久大香线蕉亚洲 | 精品久久久中文字幕人妻 | 国产精品怡红院永久免费 | 亚洲国产精品久久久久久 | 亚洲娇小与黑人巨大交 | 亚洲熟悉妇女xxx妇女av | 午夜熟女插插xx免费视频 | 性开放的女人aaa片 | 中文字幕人妻无码一区二区三区 | 亚洲欧美中文字幕5发布 | 欧美性生交xxxxx久久久 | 日本熟妇大屁股人妻 | 无人区乱码一区二区三区 | 精品无人国产偷自产在线 | 中文字幕精品av一区二区五区 | 免费看少妇作爱视频 | 天天摸天天透天天添 | 亚洲日韩av一区二区三区中文 | 久久精品中文字幕大胸 | 欧美第一黄网免费网站 | 清纯唯美经典一区二区 | 免费视频欧美无人区码 | 日日碰狠狠躁久久躁蜜桃 | 中文字幕亚洲情99在线 | 一本久道高清无码视频 | 色狠狠av一区二区三区 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 精品无码成人片一区二区98 | 极品尤物被啪到呻吟喷水 | 久久精品国产一区二区三区肥胖 | 成熟妇人a片免费看网站 | 日本丰满熟妇videos | 国产麻豆精品精东影业av网站 | 欧美放荡的少妇 | 欧美日本免费一区二区三区 | 亚洲国产精品久久久久久 | 一个人看的www免费视频在线观看 | 日韩成人一区二区三区在线观看 | 无码纯肉视频在线观看 | 爆乳一区二区三区无码 | 国产无遮挡又黄又爽又色 | 99久久久无码国产精品免费 | 大肉大捧一进一出视频出来呀 | 秋霞成人午夜鲁丝一区二区三区 | 宝宝好涨水快流出来免费视频 | 国产黄在线观看免费观看不卡 | 女人被男人爽到呻吟的视频 | 亚洲乱亚洲乱妇50p | 精品国偷自产在线视频 | 成人精品视频一区二区三区尤物 | 成 人 免费观看网站 | 99视频精品全部免费免费观看 | 99久久久国产精品无码免费 | 中文字幕人妻无码一夲道 | 色偷偷人人澡人人爽人人模 | 亚洲日韩av片在线观看 | 任你躁国产自任一区二区三区 | 国产一精品一av一免费 | 国产亚洲精品久久久闺蜜 | 久久久久久久人妻无码中文字幕爆 | 国产美女极度色诱视频www | 亚洲天堂2017无码中文 | 欧美阿v高清资源不卡在线播放 | 国产在线精品一区二区高清不卡 | 狠狠色欧美亚洲狠狠色www | 国产精品沙发午睡系列 | 日韩av无码中文无码电影 | 国产麻豆精品一区二区三区v视界 | 少妇被粗大的猛进出69影院 | 老熟妇乱子伦牲交视频 | 麻豆av传媒蜜桃天美传媒 | 东京热一精品无码av | 人妻无码久久精品人妻 | 97色伦图片97综合影院 | 久久亚洲中文字幕精品一区 | 精品国产一区二区三区四区在线看 | 欧美激情综合亚洲一二区 | 国产成人精品三级麻豆 | 强开小婷嫩苞又嫩又紧视频 | 日韩人妻无码一区二区三区久久99 | 大色综合色综合网站 | 精品欧洲av无码一区二区三区 | 色婷婷综合激情综在线播放 | 又粗又大又硬毛片免费看 | 亚洲欧美日韩综合久久久 | 精品夜夜澡人妻无码av蜜桃 | 亚洲成a人片在线观看无码3d | 久久99精品久久久久久动态图 | 欧美日韩视频无码一区二区三 | 中国女人内谢69xxxxxa片 | 青青青手机频在线观看 | 无码av中文字幕免费放 | 国产麻豆精品精东影业av网站 | 岛国片人妻三上悠亚 | 国产亚av手机在线观看 | 精品国产成人一区二区三区 | 国产一区二区三区四区五区加勒比 | 国产色视频一区二区三区 | 国产色精品久久人妻 | 国产九九九九九九九a片 | а√资源新版在线天堂 | 国内少妇偷人精品视频 | 国产精品久久久久久久影院 | 国产女主播喷水视频在线观看 | 97久久国产亚洲精品超碰热 | 蜜桃视频插满18在线观看 | 亚洲日韩一区二区三区 | 国产精品办公室沙发 | 久9re热视频这里只有精品 | 97色伦图片97综合影院 | 美女黄网站人色视频免费国产 | 无码成人精品区在线观看 | 在线欧美精品一区二区三区 | 欧美 亚洲 国产 另类 | 色综合天天综合狠狠爱 | 国产精品99久久精品爆乳 | 国产成人无码专区 | 欧美国产日韩久久mv | 又色又爽又黄的美女裸体网站 | aⅴ在线视频男人的天堂 | 丁香啪啪综合成人亚洲 | 亚洲最大成人网站 | 青草视频在线播放 | 成人精品一区二区三区中文字幕 | 7777奇米四色成人眼影 | 人人妻人人澡人人爽欧美一区 | 亚洲国产av精品一区二区蜜芽 | 国产sm调教视频在线观看 | 中文精品无码中文字幕无码专区 | 免费中文字幕日韩欧美 | 装睡被陌生人摸出水好爽 | 国产sm调教视频在线观看 | 国产精品手机免费 | 欧美三级a做爰在线观看 | 欧美成人高清在线播放 | 国产乱人伦偷精品视频 | 国内精品九九久久久精品 | 日日摸天天摸爽爽狠狠97 | 无人区乱码一区二区三区 | 又粗又大又硬毛片免费看 | 老熟妇仑乱视频一区二区 | 性史性农村dvd毛片 | √天堂中文官网8在线 | 高潮喷水的毛片 | 特级做a爰片毛片免费69 | 人人爽人人澡人人人妻 | 成人无码影片精品久久久 | 亚洲欧洲中文日韩av乱码 | 最近中文2019字幕第二页 | 啦啦啦www在线观看免费视频 | 波多野结衣av在线观看 | 亚洲 高清 成人 动漫 | 蜜桃臀无码内射一区二区三区 | 国产一区二区三区精品视频 | 日韩精品久久久肉伦网站 | 男女爱爱好爽视频免费看 | 欧美性猛交xxxx富婆 | 99麻豆久久久国产精品免费 | 久久午夜无码鲁丝片秋霞 | 久久精品一区二区三区四区 | 亚洲国产精品无码一区二区三区 | 宝宝好涨水快流出来免费视频 | 国产亚洲视频中文字幕97精品 | 亚洲精品国偷拍自产在线麻豆 | 国产精品亚洲综合色区韩国 | 人人妻人人澡人人爽欧美精品 | 日韩亚洲欧美中文高清在线 | 国产又粗又硬又大爽黄老大爷视 | 黑森林福利视频导航 | 99国产精品白浆在线观看免费 | 俄罗斯老熟妇色xxxx | 成人精品天堂一区二区三区 | 性欧美牲交xxxxx视频 | 男女下面进入的视频免费午夜 | 激情五月综合色婷婷一区二区 | 黑人粗大猛烈进出高潮视频 | 国产亚洲精品久久久闺蜜 | 日本精品人妻无码免费大全 | 亚洲 a v无 码免 费 成 人 a v | 欧美国产日产一区二区 | 特级做a爰片毛片免费69 | 18无码粉嫩小泬无套在线观看 | 人妻少妇精品无码专区二区 | 亚洲精品久久久久久一区二区 | 日本在线高清不卡免费播放 | 久久成人a毛片免费观看网站 | 亚洲春色在线视频 | 东京热男人av天堂 | 久久国产精品二国产精品 | 国产三级精品三级男人的天堂 | 亚洲人亚洲人成电影网站色 | 久久久久99精品成人片 | 天堂久久天堂av色综合 | 88国产精品欧美一区二区三区 | 午夜性刺激在线视频免费 | 欧美黑人巨大xxxxx | 夜先锋av资源网站 | 亚洲中文字幕va福利 | 亚洲欧美日韩国产精品一区二区 | 桃花色综合影院 | 伊在人天堂亚洲香蕉精品区 | 领导边摸边吃奶边做爽在线观看 | 老子影院午夜精品无码 | 国产av无码专区亚洲a∨毛片 | 国产综合久久久久鬼色 | 成人免费视频视频在线观看 免费 | v一区无码内射国产 | 亚洲精品一区国产 | 免费乱码人妻系列无码专区 | 中文无码成人免费视频在线观看 | 婷婷色婷婷开心五月四房播播 | 人妻少妇精品无码专区动漫 | 丝袜 中出 制服 人妻 美腿 | 草草网站影院白丝内射 | 国产精品久久国产精品99 | av人摸人人人澡人人超碰下载 | 精品厕所偷拍各类美女tp嘘嘘 | 久久综合激激的五月天 | 国产精品va在线观看无码 | 亚洲国产精品无码久久久久高潮 | 国产精品理论片在线观看 | 成人免费无码大片a毛片 | 男人的天堂2018无码 | 国产乱码精品一品二品 | 成人av无码一区二区三区 | 无码国模国产在线观看 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 黑森林福利视频导航 | 人妻夜夜爽天天爽三区 | 亚洲小说春色综合另类 | 成年美女黄网站色大免费全看 | 国产亚洲精品久久久闺蜜 | 婷婷五月综合激情中文字幕 | 大地资源网第二页免费观看 | 国产情侣作爱视频免费观看 | 乱码午夜-极国产极内射 | 色欲综合久久中文字幕网 | 欧美人妻一区二区三区 | 国产精品办公室沙发 | 中文无码精品a∨在线观看不卡 | 亚洲成av人影院在线观看 | 久精品国产欧美亚洲色aⅴ大片 | 乌克兰少妇性做爰 | 日韩人妻无码一区二区三区久久99 | 国产av无码专区亚洲a∨毛片 | 一个人看的视频www在线 | 领导边摸边吃奶边做爽在线观看 | 一本久久a久久精品vr综合 | 日本精品人妻无码免费大全 | 国产办公室秘书无码精品99 | 粗大的内捧猛烈进出视频 | 领导边摸边吃奶边做爽在线观看 | 久久久精品456亚洲影院 | 两性色午夜视频免费播放 | 日韩在线不卡免费视频一区 | 亚洲精品成a人在线观看 | 日本又色又爽又黄的a片18禁 | 亚无码乱人伦一区二区 | 日日噜噜噜噜夜夜爽亚洲精品 | 国内少妇偷人精品视频免费 | 亚洲精品国产品国语在线观看 | 蜜桃臀无码内射一区二区三区 | 国产性生大片免费观看性 | 亚洲毛片av日韩av无码 | 中文字幕 亚洲精品 第1页 | 久久久久se色偷偷亚洲精品av | 精品一区二区三区无码免费视频 | 无码人妻少妇伦在线电影 | 亚洲日韩中文字幕在线播放 | 亚洲狠狠色丁香婷婷综合 | 大乳丰满人妻中文字幕日本 | 国产午夜无码视频在线观看 | 少妇太爽了在线观看 | 色一情一乱一伦一区二区三欧美 | 国产网红无码精品视频 | 成年美女黄网站色大免费全看 | 波多野结衣一区二区三区av免费 | 西西人体www44rt大胆高清 | 成人试看120秒体验区 | 少妇久久久久久人妻无码 | 亚洲阿v天堂在线 | 国产人妻精品一区二区三区 | 四虎4hu永久免费 | 国产女主播喷水视频在线观看 | 黄网在线观看免费网站 | 内射爽无广熟女亚洲 | 丰满少妇熟乱xxxxx视频 | 欧美放荡的少妇 | 中文精品久久久久人妻不卡 | 天天做天天爱天天爽综合网 | 精品国产一区av天美传媒 | 四十如虎的丰满熟妇啪啪 | 久久久久99精品成人片 | 精品无码一区二区三区的天堂 | 国产人妻大战黑人第1集 | 日韩av无码中文无码电影 | 久久久久久久女国产乱让韩 | 亚洲 高清 成人 动漫 | 水蜜桃亚洲一二三四在线 | 国产精品久久久久影院嫩草 | 搡女人真爽免费视频大全 | 欧美成人免费全部网站 | 成人欧美一区二区三区黑人免费 | 一二三四在线观看免费视频 | 桃花色综合影院 | 在线播放免费人成毛片乱码 | 亚洲午夜久久久影院 | 成人免费视频在线观看 | 东京热一精品无码av | 玩弄中年熟妇正在播放 | 麻豆人妻少妇精品无码专区 | 无码人妻丰满熟妇区五十路百度 | 亚洲欧美日韩国产精品一区二区 | 色一情一乱一伦一区二区三欧美 | 久久精品人妻少妇一区二区三区 | 国产一区二区不卡老阿姨 | www成人国产高清内射 | 亚洲色欲久久久综合网东京热 | 国产精品无码一区二区桃花视频 | 久久综合狠狠综合久久综合88 | 色综合久久久久综合一本到桃花网 | 女人色极品影院 | 国产精品亚洲lv粉色 | 伊人色综合久久天天小片 | 最新国产乱人伦偷精品免费网站 | 日韩精品a片一区二区三区妖精 | 少妇愉情理伦片bd | 国产后入清纯学生妹 | 一个人看的视频www在线 | 狠狠色欧美亚洲狠狠色www | 免费观看又污又黄的网站 | 日本在线高清不卡免费播放 | 久久久久久久久蜜桃 | 欧美黑人巨大xxxxx | 国产成人精品优优av | 狠狠cao日日穞夜夜穞av | 日本成熟视频免费视频 | 无码人妻精品一区二区三区不卡 | 欧美xxxx黑人又粗又长 | 九九综合va免费看 | 亚洲va欧美va天堂v国产综合 | 无码任你躁久久久久久久 | 无码人妻黑人中文字幕 | 好爽又高潮了毛片免费下载 | 亚洲娇小与黑人巨大交 | 67194成是人免费无码 | 国产午夜视频在线观看 | 亚洲精品中文字幕久久久久 | av香港经典三级级 在线 | 久久久久久av无码免费看大片 | 领导边摸边吃奶边做爽在线观看 | 国产精品无码一区二区桃花视频 | 色诱久久久久综合网ywww | 97无码免费人妻超级碰碰夜夜 | 亚洲国产成人av在线观看 | 欧美性猛交xxxx富婆 | 日韩精品乱码av一区二区 | 欧美放荡的少妇 | 欧美日韩一区二区免费视频 | 男人的天堂av网站 | 中文字幕无码av波多野吉衣 | 日本一卡二卡不卡视频查询 | 1000部啪啪未满十八勿入下载 | 男人和女人高潮免费网站 | 国产在线精品一区二区三区直播 | 性欧美牲交在线视频 | 天堂а√在线中文在线 | 国产做国产爱免费视频 | 无码人妻精品一区二区三区下载 | 日本精品久久久久中文字幕 | 波多野结衣一区二区三区av免费 | 99精品视频在线观看免费 | 99久久99久久免费精品蜜桃 | 国产成人精品无码播放 | 国产亚洲人成a在线v网站 | 曰本女人与公拘交酡免费视频 | 红桃av一区二区三区在线无码av | 性啪啪chinese东北女人 | 日日天干夜夜狠狠爱 | 亚洲国产精品美女久久久久 | yw尤物av无码国产在线观看 | a国产一区二区免费入口 | 少妇高潮一区二区三区99 | 无码国产色欲xxxxx视频 | 精品少妇爆乳无码av无码专区 | 国产人妻精品午夜福利免费 | 国产一区二区三区精品视频 | 又粗又大又硬又长又爽 | 欧美精品国产综合久久 | 亚洲一区二区三区国产精华液 | 欧美一区二区三区视频在线观看 | 免费无码午夜福利片69 | 亚洲欧美精品aaaaaa片 | 无码人妻久久一区二区三区不卡 | 粉嫩少妇内射浓精videos | 无码人妻精品一区二区三区下载 | 四虎影视成人永久免费观看视频 | 一本久久伊人热热精品中文字幕 | 无码吃奶揉捏奶头高潮视频 | 久久久久成人片免费观看蜜芽 | 我要看www免费看插插视频 | 国产精品人妻一区二区三区四 | 亚洲精品一区二区三区在线 | 婷婷丁香六月激情综合啪 | 国产xxx69麻豆国语对白 | 福利一区二区三区视频在线观看 | 亚洲精品国产第一综合99久久 | 亚洲日韩中文字幕在线播放 | 中文字幕无码免费久久9一区9 | 露脸叫床粗话东北少妇 | 亚洲人成影院在线观看 | 久久综合给久久狠狠97色 | 亚洲人成网站在线播放942 | 中文字幕色婷婷在线视频 | 无码国产激情在线观看 | 久久久久亚洲精品男人的天堂 | 国产真实乱对白精彩久久 | 国产精品久久精品三级 | 精品国产一区二区三区av 性色 | 丝袜 中出 制服 人妻 美腿 | 国产精品怡红院永久免费 | 成人片黄网站色大片免费观看 | 国产成人久久精品流白浆 | 成人精品视频一区二区三区尤物 | 国产精品va在线播放 | 久久久久久久女国产乱让韩 | 国产亚洲精品久久久闺蜜 | 色婷婷久久一区二区三区麻豆 | 性欧美大战久久久久久久 | 欧美大屁股xxxxhd黑色 | 内射白嫩少妇超碰 | 搡女人真爽免费视频大全 | 成人av无码一区二区三区 | 无码吃奶揉捏奶头高潮视频 | 久久天天躁狠狠躁夜夜免费观看 | 欧洲极品少妇 | 99国产精品白浆在线观看免费 | 少妇厨房愉情理9仑片视频 | 丰满妇女强制高潮18xxxx | 亚洲中文无码av永久不收费 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 性啪啪chinese东北女人 | 精品人人妻人人澡人人爽人人 | 性欧美牲交在线视频 | 色一情一乱一伦一区二区三欧美 | 国产成人无码av一区二区 | 亚洲成av人片在线观看无码不卡 | 成人性做爰aaa片免费看 | 亚洲中文字幕va福利 | 久久99久久99精品中文字幕 | a片免费视频在线观看 | 国产又粗又硬又大爽黄老大爷视 | 国产欧美亚洲精品a | 欧美熟妇另类久久久久久多毛 | 爱做久久久久久 | 午夜男女很黄的视频 | 亚洲精品一区二区三区在线观看 | 国产欧美熟妇另类久久久 | 色综合久久久久综合一本到桃花网 | 久久97精品久久久久久久不卡 | 99久久婷婷国产综合精品青草免费 | 国产精品.xx视频.xxtv | 妺妺窝人体色www在线小说 | 东京热男人av天堂 | 澳门永久av免费网站 | 国产精品理论片在线观看 | 亚洲熟妇色xxxxx亚洲 | 日韩视频 中文字幕 视频一区 | 午夜肉伦伦影院 | 亚洲人亚洲人成电影网站色 | 亚洲精品成人福利网站 | 天堂а√在线地址中文在线 | 久久精品国产精品国产精品污 | 麻豆国产人妻欲求不满 | 国产一区二区三区日韩精品 | 欧美zoozzooz性欧美 | 人人澡人人妻人人爽人人蜜桃 | 日韩精品无码免费一区二区三区 | 亚洲人亚洲人成电影网站色 | 国产女主播喷水视频在线观看 | 乱人伦人妻中文字幕无码久久网 | 内射老妇bbwx0c0ck | 啦啦啦www在线观看免费视频 | 亚洲综合在线一区二区三区 | 亚洲精品鲁一鲁一区二区三区 | 日日天干夜夜狠狠爱 | 无码一区二区三区在线 | 久久亚洲精品中文字幕无男同 | 久久精品丝袜高跟鞋 | 国产莉萝无码av在线播放 | 国产亚av手机在线观看 | 国产av一区二区精品久久凹凸 | 小sao货水好多真紧h无码视频 | 强伦人妻一区二区三区视频18 | 六月丁香婷婷色狠狠久久 | 亚洲一区二区三区香蕉 | 无遮挡国产高潮视频免费观看 | 亚洲s色大片在线观看 | 99久久精品无码一区二区毛片 | 亚洲成色www久久网站 | 欧美怡红院免费全部视频 | 黄网在线观看免费网站 | 免费无码肉片在线观看 | 国产午夜亚洲精品不卡下载 | 欧美喷潮久久久xxxxx | 无套内谢的新婚少妇国语播放 | 牲欲强的熟妇农村老妇女 | 成人无码视频在线观看网站 | 玩弄少妇高潮ⅹxxxyw | 国产xxx69麻豆国语对白 | 日韩精品无码一区二区中文字幕 | 国产精品国产三级国产专播 | 亚洲人成网站免费播放 | 午夜男女很黄的视频 | 久久精品中文字幕一区 | 亚洲色偷偷偷综合网 | 国产人妻精品一区二区三区不卡 | 精品人妻人人做人人爽 | 久久久久久久久蜜桃 | 色婷婷av一区二区三区之红樱桃 | 亚洲成色在线综合网站 | 无码av最新清无码专区吞精 | 无码毛片视频一区二区本码 | 国产亚洲精品久久久闺蜜 | 67194成是人免费无码 | 无遮无挡爽爽免费视频 | 国内丰满熟女出轨videos | 又黄又爽又色的视频 | 亚洲精品一区二区三区婷婷月 | 日本又色又爽又黄的a片18禁 | 亚洲中文无码av永久不收费 | 色窝窝无码一区二区三区色欲 | 思思久久99热只有频精品66 | 国产97人人超碰caoprom | 国产偷自视频区视频 | 精品成人av一区二区三区 | 熟妇人妻无码xxx视频 | 久久亚洲精品成人无码 | 日韩精品无码免费一区二区三区 | 日日天日日夜日日摸 | 在线观看欧美一区二区三区 | 精品一区二区三区无码免费视频 | 免费中文字幕日韩欧美 | 十八禁视频网站在线观看 | 色欲久久久天天天综合网精品 | 日韩人妻少妇一区二区三区 | 成人精品视频一区二区 | 欧美性猛交内射兽交老熟妇 | 亚洲综合另类小说色区 | 无码午夜成人1000部免费视频 | 少妇人妻av毛片在线看 | 国产精品嫩草久久久久 | 日韩成人一区二区三区在线观看 | 免费人成在线观看网站 | 中文字幕人妻无码一夲道 | 99精品久久毛片a片 | 免费视频欧美无人区码 | 99精品无人区乱码1区2区3区 | 欧美国产日韩亚洲中文 | 欧美精品国产综合久久 | 亚洲欧洲中文日韩av乱码 | 中文字幕日韩精品一区二区三区 | 国产人妻精品一区二区三区 | 久久精品中文字幕一区 | 黑人巨大精品欧美黑寡妇 | 天堂一区人妻无码 | 亚洲精品久久久久avwww潮水 | 丰满少妇熟乱xxxxx视频 | 波多野结衣av一区二区全免费观看 | 亚洲欧美国产精品专区久久 | 国産精品久久久久久久 | 内射巨臀欧美在线视频 | 四虎永久在线精品免费网址 | a片在线免费观看 | 亚洲爆乳精品无码一区二区三区 | 亚洲另类伦春色综合小说 | 国产成人精品一区二区在线小狼 | 在线观看国产一区二区三区 | 好男人www社区 | 国产97人人超碰caoprom | 暴力强奷在线播放无码 | 国产亚洲欧美日韩亚洲中文色 | 免费观看又污又黄的网站 | 麻豆国产人妻欲求不满 | 国产又粗又硬又大爽黄老大爷视 | 女人被男人爽到呻吟的视频 | 亚洲日本va中文字幕 | 国产xxx69麻豆国语对白 | 在线观看国产一区二区三区 | 99精品无人区乱码1区2区3区 | 中文精品无码中文字幕无码专区 | 国产亚洲美女精品久久久2020 | 性色av无码免费一区二区三区 | 久久人人爽人人爽人人片ⅴ | 国产九九九九九九九a片 | 一本久道高清无码视频 | 强辱丰满人妻hd中文字幕 | 十八禁真人啪啪免费网站 | 国产区女主播在线观看 | 中文字幕 人妻熟女 | 久久久久亚洲精品男人的天堂 | 一本色道久久综合狠狠躁 | 伊人久久大香线焦av综合影院 | 国产精品沙发午睡系列 | 性开放的女人aaa片 | 无码一区二区三区在线 | 人人爽人人爽人人片av亚洲 | 亚洲中文无码av永久不收费 | 99麻豆久久久国产精品免费 | 国产亚洲美女精品久久久2020 | 亚洲熟妇色xxxxx欧美老妇 | 国内精品一区二区三区不卡 | 未满成年国产在线观看 | 日本一卡2卡3卡四卡精品网站 | 国产精品久久久久久久影院 | 强奷人妻日本中文字幕 | 樱花草在线社区www | 日韩精品一区二区av在线 | 国内精品久久久久久中文字幕 | 男人的天堂2018无码 | 乱人伦人妻中文字幕无码久久网 | 国产偷自视频区视频 | 精品无码国产一区二区三区av | 人人妻人人藻人人爽欧美一区 | 国产人成高清在线视频99最全资源 | 国产激情一区二区三区 | 婷婷色婷婷开心五月四房播播 | 亚洲色欲色欲天天天www | 国产亚洲精品久久久久久久 | 18禁黄网站男男禁片免费观看 | 超碰97人人做人人爱少妇 | 成人无码影片精品久久久 | 97无码免费人妻超级碰碰夜夜 | 激情内射亚州一区二区三区爱妻 | 99在线 | 亚洲 | 97夜夜澡人人双人人人喊 | 久久精品99久久香蕉国产色戒 | 亚洲大尺度无码无码专区 | 国产av无码专区亚洲awww | 久久综合九色综合97网 | 国产成人人人97超碰超爽8 | 沈阳熟女露脸对白视频 | 亚洲区小说区激情区图片区 | 九月婷婷人人澡人人添人人爽 | 亚洲码国产精品高潮在线 | 伊人久久婷婷五月综合97色 | 国产97在线 | 亚洲 | 国产熟女一区二区三区四区五区 | 大肉大捧一进一出好爽视频 | 国产精品久久久久9999小说 | 在线观看国产一区二区三区 | 国内精品人妻无码久久久影院蜜桃 | 久久综合给合久久狠狠狠97色 | 99久久婷婷国产综合精品青草免费 | 国产真人无遮挡作爱免费视频 | 无码精品人妻一区二区三区av | 亚洲综合无码一区二区三区 | 人妻有码中文字幕在线 | 国产精品二区一区二区aⅴ污介绍 | 国产综合久久久久鬼色 | 伊在人天堂亚洲香蕉精品区 | 国产色xx群视频射精 | 成人无码视频免费播放 | 国产又爽又猛又粗的视频a片 | 九月婷婷人人澡人人添人人爽 | 无码吃奶揉捏奶头高潮视频 | 国产猛烈高潮尖叫视频免费 | 国产三级久久久精品麻豆三级 | 精品国产aⅴ无码一区二区 | 夜夜躁日日躁狠狠久久av | 日本饥渴人妻欲求不满 | 亚洲国产av精品一区二区蜜芽 | 亚洲日韩av一区二区三区中文 | 成人亚洲精品久久久久 | 无码帝国www无码专区色综合 | 国产激情无码一区二区app | 我要看www免费看插插视频 | 无码播放一区二区三区 | 亚洲中文无码av永久不收费 | 婷婷色婷婷开心五月四房播播 | 天天躁夜夜躁狠狠是什么心态 | 亚洲中文字幕av在天堂 | 欧美激情一区二区三区成人 | 色婷婷综合激情综在线播放 | 久久婷婷五月综合色国产香蕉 | 伊人久久大香线焦av综合影院 | 国产午夜手机精彩视频 | 高中生自慰www网站 | 激情爆乳一区二区三区 | 亚洲日本va中文字幕 | 欧美黑人性暴力猛交喷水 | 国产精品18久久久久久麻辣 | 国产成人精品一区二区在线小狼 | 亚洲无人区一区二区三区 | 久久国产精品偷任你爽任你 | 亚洲日韩精品欧美一区二区 | 领导边摸边吃奶边做爽在线观看 | 精品无码国产一区二区三区av | 中国大陆精品视频xxxx | 无码人妻精品一区二区三区不卡 | 亚洲人成影院在线无码按摩店 | 男女下面进入的视频免费午夜 | 综合激情五月综合激情五月激情1 | 76少妇精品导航 | 真人与拘做受免费视频 | 国产乱人伦av在线无码 | 久久久精品成人免费观看 | 久久久国产一区二区三区 | 亚洲精品一区二区三区大桥未久 | 又大又硬又黄的免费视频 | 免费中文字幕日韩欧美 | 奇米影视7777久久精品 | 欧美成人午夜精品久久久 | 久久久久成人精品免费播放动漫 | 扒开双腿吃奶呻吟做受视频 | 熟妇人妻中文av无码 | 国产麻豆精品一区二区三区v视界 | 亚洲色偷偷偷综合网 | 日本www一道久久久免费榴莲 | 日韩精品成人一区二区三区 | 欧美日韩一区二区免费视频 | 99久久婷婷国产综合精品青草免费 | 99精品国产综合久久久久五月天 | 清纯唯美经典一区二区 | 免费观看又污又黄的网站 | 国产香蕉97碰碰久久人人 | 欧美激情一区二区三区成人 | 荫蒂添的好舒服视频囗交 | 欧美熟妇另类久久久久久不卡 | 久久精品女人的天堂av | 欧美精品国产综合久久 | 亚洲男人av香蕉爽爽爽爽 | 天堂亚洲免费视频 | 日日噜噜噜噜夜夜爽亚洲精品 | 亚洲国产一区二区三区在线观看 | 日本又色又爽又黄的a片18禁 | 窝窝午夜理论片影院 | 亚洲码国产精品高潮在线 | 日本一卡二卡不卡视频查询 | 国产成人精品久久亚洲高清不卡 | 国产另类ts人妖一区二区 | 捆绑白丝粉色jk震动捧喷白浆 | 一本色道久久综合狠狠躁 | 无套内谢的新婚少妇国语播放 | 老熟妇仑乱视频一区二区 | 色欲人妻aaaaaaa无码 | 亚洲爆乳大丰满无码专区 | 奇米影视7777久久精品 | 性欧美牲交在线视频 | 久久亚洲中文字幕精品一区 | 亚洲另类伦春色综合小说 | 国产亚洲精品久久久久久大师 | 波多野结衣 黑人 | 免费人成在线观看网站 | 国产午夜亚洲精品不卡下载 | 久久精品人人做人人综合 | 97久久国产亚洲精品超碰热 | 一区二区三区高清视频一 | 久久精品视频在线看15 | 精品乱子伦一区二区三区 | 在线精品国产一区二区三区 | 西西人体www44rt大胆高清 | 在线成人www免费观看视频 | 小sao货水好多真紧h无码视频 | 国产69精品久久久久app下载 | 高清不卡一区二区三区 | 国产明星裸体无码xxxx视频 | 清纯唯美经典一区二区 | 东京热一精品无码av | 日本护士毛茸茸高潮 | 欧美人与禽zoz0性伦交 | 国产绳艺sm调教室论坛 | 成人无码影片精品久久久 | 日本熟妇人妻xxxxx人hd | 欧美激情综合亚洲一二区 | 国产精品.xx视频.xxtv | 在线欧美精品一区二区三区 | 亚洲无人区午夜福利码高清完整版 | 国产内射老熟女aaaa | 国产精品久久久久久无码 | 国产亚洲欧美日韩亚洲中文色 | 天下第一社区视频www日本 | 色诱久久久久综合网ywww | 一本一道久久综合久久 | 久久久久se色偷偷亚洲精品av | 久久精品国产日本波多野结衣 | 国产精品99久久精品爆乳 | 国产av一区二区精品久久凹凸 | 亚洲日韩乱码中文无码蜜桃臀网站 | 1000部啪啪未满十八勿入下载 | 精品人妻中文字幕有码在线 | 国产成人无码午夜视频在线观看 | 国产精品久久久久久久9999 | 国产亚洲精品久久久闺蜜 | 国内揄拍国内精品人妻 | 一个人免费观看的www视频 | 少妇厨房愉情理9仑片视频 | 东京热男人av天堂 | 国产精品内射视频免费 | 国产精品久久久久久无码 | 久9re热视频这里只有精品 | 亚洲综合无码久久精品综合 | 亚洲综合久久一区二区 | 亚洲一区二区三区无码久久 | 人人爽人人爽人人片av亚洲 | 性欧美videos高清精品 | 学生妹亚洲一区二区 | 久久精品成人欧美大片 | 女人被男人躁得好爽免费视频 | 九九热爱视频精品 | 一本色道久久综合狠狠躁 | 亚洲成色www久久网站 | 欧美日本精品一区二区三区 | 亚洲一区二区三区偷拍女厕 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 亚洲日本va中文字幕 | 久久99久久99精品中文字幕 | 亚洲自偷精品视频自拍 | 国产精品视频免费播放 | 婷婷丁香六月激情综合啪 | 在线观看国产午夜福利片 | 我要看www免费看插插视频 | 国产精华av午夜在线观看 | 亚洲中文无码av永久不收费 | 日本欧美一区二区三区乱码 | 性色欲网站人妻丰满中文久久不卡 | 妺妺窝人体色www在线小说 | 无码国模国产在线观看 | 曰韩少妇内射免费播放 | 爆乳一区二区三区无码 | 中文字幕人妻无码一区二区三区 | 小泽玛莉亚一区二区视频在线 | 无码人妻精品一区二区三区下载 | 欧美变态另类xxxx | 香港三级日本三级妇三级 | 国产精品.xx视频.xxtv | 亚洲aⅴ无码成人网站国产app | 熟女俱乐部五十路六十路av | 国产精品自产拍在线观看 | 精品无人国产偷自产在线 | 一本久久a久久精品vr综合 | 国产精品久久福利网站 | 午夜精品一区二区三区在线观看 | 亚洲色成人中文字幕网站 | 精品一区二区不卡无码av | yw尤物av无码国产在线观看 | 亚洲天堂2017无码中文 | 亚洲第一无码av无码专区 | 成年美女黄网站色大免费视频 | 伦伦影院午夜理论片 | 久久天天躁夜夜躁狠狠 | 人妻无码久久精品人妻 | 理论片87福利理论电影 | 国产精品香蕉在线观看 | 18禁黄网站男男禁片免费观看 | 成人影院yy111111在线观看 | 欧美丰满熟妇xxxx性ppx人交 | 老太婆性杂交欧美肥老太 | 亚洲中文字幕在线无码一区二区 | 久久无码人妻影院 | 妺妺窝人体色www在线小说 | 精品久久综合1区2区3区激情 | 亚洲色www成人永久网址 | 国产免费无码一区二区视频 | 日本精品久久久久中文字幕 | 午夜精品一区二区三区的区别 | 亚洲国产一区二区三区在线观看 | 色五月五月丁香亚洲综合网 | 欧美性猛交xxxx富婆 | 在线观看国产午夜福利片 | 国产一区二区三区日韩精品 | 伊人色综合久久天天小片 | 国产精华av午夜在线观看 | 东京热男人av天堂 | 亚洲一区二区三区 | 久久国产自偷自偷免费一区调 | 无码一区二区三区在线观看 | 四虎国产精品免费久久 | 国内综合精品午夜久久资源 | 亚洲精品成a人在线观看 | 麻豆国产人妻欲求不满 | 亚洲伊人久久精品影院 | 一区二区三区乱码在线 | 欧洲 | a在线观看免费网站大全 | 2019nv天堂香蕉在线观看 | 亚洲小说图区综合在线 | 98国产精品综合一区二区三区 | 国产又爽又猛又粗的视频a片 | 野狼第一精品社区 | 亚洲 a v无 码免 费 成 人 a v | 无码国内精品人妻少妇 | 天下第一社区视频www日本 | 久久熟妇人妻午夜寂寞影院 | 青春草在线视频免费观看 | 精品久久久无码中文字幕 | 67194成是人免费无码 | 精品aⅴ一区二区三区 | 亚洲s码欧洲m码国产av | 午夜福利一区二区三区在线观看 | 国产激情艳情在线看视频 | 精品久久久久久人妻无码中文字幕 | 国产成人精品优优av | 中文亚洲成a人片在线观看 | 国产精品无码一区二区桃花视频 | 西西人体www44rt大胆高清 | 日韩少妇白浆无码系列 | 国产疯狂伦交大片 | 波多野结衣高清一区二区三区 | 国产成人一区二区三区在线观看 | 久久人人爽人人爽人人片av高清 | 国产精品成人av在线观看 | 亚洲 激情 小说 另类 欧美 | 亚洲人成影院在线观看 | 无人区乱码一区二区三区 | 四十如虎的丰满熟妇啪啪 | 国产成人无码一二三区视频 | 色婷婷综合中文久久一本 | 美女张开腿让人桶 | av无码久久久久不卡免费网站 | 野外少妇愉情中文字幕 | 男人扒开女人内裤强吻桶进去 | 午夜无码人妻av大片色欲 | 日本饥渴人妻欲求不满 | 日韩亚洲欧美中文高清在线 | 国产精品久免费的黄网站 | 国产熟妇另类久久久久 | 无码人妻久久一区二区三区不卡 | 人妻少妇被猛烈进入中文字幕 | 亚洲天堂2017无码 | 蜜桃视频韩日免费播放 | 久久精品国产99久久6动漫 | 久久综合香蕉国产蜜臀av | 成人无码视频免费播放 | 欧美国产日韩亚洲中文 | 天天躁夜夜躁狠狠是什么心态 | 性生交大片免费看女人按摩摩 | 人妻aⅴ无码一区二区三区 | 国产极品视觉盛宴 | 99久久精品无码一区二区毛片 | 鲁一鲁av2019在线 | 乱人伦中文视频在线观看 | 乱人伦人妻中文字幕无码 | 色婷婷综合激情综在线播放 | 国内精品人妻无码久久久影院蜜桃 | 粉嫩少妇内射浓精videos | 国产精品香蕉在线观看 | 成人亚洲精品久久久久 | 国产国语老龄妇女a片 | 国产深夜福利视频在线 | 国产区女主播在线观看 | 日日天日日夜日日摸 | 99精品久久毛片a片 | 国产在线一区二区三区四区五区 | 成人片黄网站色大片免费观看 | 国产精品欧美成人 | 亚洲另类伦春色综合小说 | 成 人 免费观看网站 | 精品午夜福利在线观看 | 无码人妻出轨黑人中文字幕 | 亚洲 日韩 欧美 成人 在线观看 | 国产免费无码一区二区视频 | 久青草影院在线观看国产 | 中文字幕无码免费久久9一区9 | 无套内谢的新婚少妇国语播放 | 精品偷拍一区二区三区在线看 | 俺去俺来也在线www色官网 | 国产精品18久久久久久麻辣 | 亚洲国产精品久久人人爱 | 天下第一社区视频www日本 | 国产精品久久久av久久久 | 中文字幕乱妇无码av在线 | 乌克兰少妇性做爰 | 全黄性性激高免费视频 | 亚洲成a人一区二区三区 | 狠狠cao日日穞夜夜穞av | 国产精品视频免费播放 | 人人妻人人澡人人爽欧美精品 | 色婷婷久久一区二区三区麻豆 | 久久亚洲精品中文字幕无男同 | 国产三级久久久精品麻豆三级 | 国产猛烈高潮尖叫视频免费 | 欧洲欧美人成视频在线 | 欧美日韩综合一区二区三区 | 免费男性肉肉影院 | 亚洲国产欧美国产综合一区 | 亚洲gv猛男gv无码男同 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 永久黄网站色视频免费直播 | 蜜桃无码一区二区三区 | 国产一精品一av一免费 | 欧美熟妇另类久久久久久不卡 | 久久综合给合久久狠狠狠97色 | 鲁大师影院在线观看 | 亚洲自偷自拍另类第1页 | 久久人人爽人人爽人人片av高清 | 未满小14洗澡无码视频网站 | 亚洲成av人综合在线观看 | 久久久久成人精品免费播放动漫 | 爱做久久久久久 | 精品国产国产综合精品 | 嫩b人妻精品一区二区三区 | 成年女人永久免费看片 | 午夜成人1000部免费视频 | 高清无码午夜福利视频 | 性色欲情网站iwww九文堂 | 国语自产偷拍精品视频偷 | 一区二区三区乱码在线 | 欧洲 | 亚洲精品久久久久久久久久久 | 在线观看欧美一区二区三区 | 国产精品久久久午夜夜伦鲁鲁 | 欧美激情内射喷水高潮 | 国产亚洲人成在线播放 | 国产精品va在线观看无码 | 狂野欧美激情性xxxx | 亚洲中文无码av永久不收费 | 成人三级无码视频在线观看 | 国产成人精品久久亚洲高清不卡 | 国产午夜无码精品免费看 | 亚洲国产欧美日韩精品一区二区三区 | 亚洲精品成人福利网站 | 中文字幕日韩精品一区二区三区 | 无码精品国产va在线观看dvd | 六十路熟妇乱子伦 | 俄罗斯老熟妇色xxxx | 无码人妻黑人中文字幕 | 人人妻人人澡人人爽人人精品浪潮 | 免费观看又污又黄的网站 | 日本熟妇浓毛 | а√资源新版在线天堂 | 欧美日韩一区二区免费视频 | 成人三级无码视频在线观看 | 成人无码精品一区二区三区 | 天天拍夜夜添久久精品大 | 亚洲 高清 成人 动漫 | 99久久婷婷国产综合精品青草免费 | 久久精品中文字幕大胸 | 一区二区三区乱码在线 | 欧洲 | 99久久精品无码一区二区毛片 | 欧美激情内射喷水高潮 | 7777奇米四色成人眼影 | 日本精品人妻无码77777 天堂一区人妻无码 | 午夜福利试看120秒体验区 | 伊在人天堂亚洲香蕉精品区 | 国产成人精品一区二区在线小狼 | 伊人久久大香线焦av综合影院 | 久久精品国产一区二区三区肥胖 | 丰满人妻被黑人猛烈进入 | av香港经典三级级 在线 | 香港三级日本三级妇三级 | 沈阳熟女露脸对白视频 | 人妻中文无码久热丝袜 | 国产高清不卡无码视频 | 国产精品毛片一区二区 | 疯狂三人交性欧美 | 爽爽影院免费观看 | 夜夜躁日日躁狠狠久久av | 香蕉久久久久久av成人 | 国产午夜无码精品免费看 | 野狼第一精品社区 | 无码播放一区二区三区 | 自拍偷自拍亚洲精品10p | 免费国产成人高清在线观看网站 | 999久久久国产精品消防器材 | 免费国产黄网站在线观看 | 疯狂三人交性欧美 | 成人亚洲精品久久久久 | 色一情一乱一伦 | 青草视频在线播放 | 国产亚洲tv在线观看 | 欧美精品免费观看二区 | 亚洲精品美女久久久久久久 | 无码人妻丰满熟妇区五十路百度 | 亚欧洲精品在线视频免费观看 | 搡女人真爽免费视频大全 | 亚洲自偷精品视频自拍 | 四虎4hu永久免费 | 天堂а√在线地址中文在线 | 中文字幕人妻无码一夲道 | 亚洲国产精品无码久久久久高潮 | 欧美性色19p | 国内精品人妻无码久久久影院蜜桃 | 国产精品久久久久久久影院 | 人妻熟女一区 | 中文字幕无码免费久久99 | 99久久精品国产一区二区蜜芽 | www一区二区www免费 | 久久亚洲中文字幕无码 | 偷窥日本少妇撒尿chinese | 久久人人97超碰a片精品 | 奇米影视888欧美在线观看 | 亚洲色在线无码国产精品不卡 | 国产精品资源一区二区 | 国内老熟妇对白xxxxhd | 黑森林福利视频导航 | 色婷婷综合激情综在线播放 | 人妻无码αv中文字幕久久琪琪布 | 大地资源网第二页免费观看 | 妺妺窝人体色www婷婷 | 欧美老人巨大xxxx做受 | 亚洲精品国产第一综合99久久 | 久久熟妇人妻午夜寂寞影院 | 国产精品欧美成人 | 人人爽人人爽人人片av亚洲 | 亚洲欧美日韩综合久久久 | 超碰97人人做人人爱少妇 | 中文字幕无码乱人伦 | 秋霞特色aa大片 | 色妞www精品免费视频 | 老熟女重囗味hdxx69 | 国产超碰人人爽人人做人人添 | 免费观看的无遮挡av | 午夜嘿嘿嘿影院 | 免费国产黄网站在线观看 | 无码国模国产在线观看 | 午夜福利一区二区三区在线观看 | 亚洲人成影院在线观看 | 黑森林福利视频导航 | 中文毛片无遮挡高清免费 | 国产精品国产自线拍免费软件 | 久久www免费人成人片 | 欧美人与禽zoz0性伦交 | 欧美丰满熟妇xxxx性ppx人交 | 日本www一道久久久免费榴莲 | 国产尤物精品视频 | 精品人妻中文字幕有码在线 | 妺妺窝人体色www在线小说 | 人人澡人摸人人添 | 久久综合给合久久狠狠狠97色 | 强奷人妻日本中文字幕 | 日本乱偷人妻中文字幕 | 色诱久久久久综合网ywww | 国产精品久久久久久亚洲影视内衣 | 无码人中文字幕 | 一本色道久久综合狠狠躁 | 亚洲日韩中文字幕在线播放 | 欧美国产日韩亚洲中文 | 97久久精品无码一区二区 | 理论片87福利理论电影 | 日本va欧美va欧美va精品 | 2020最新国产自产精品 | 久久久久久av无码免费看大片 | 亚洲小说春色综合另类 | 国产精品永久免费视频 | 牲欲强的熟妇农村老妇女视频 | 中文毛片无遮挡高清免费 | 国产成人精品久久亚洲高清不卡 | 性开放的女人aaa片 | 麻豆精品国产精华精华液好用吗 | 亚洲中文字幕av在天堂 | 精品国偷自产在线 | 日本精品久久久久中文字幕 | 精品国产乱码久久久久乱码 | 国产精品沙发午睡系列 | 亚洲欧美精品伊人久久 | 搡女人真爽免费视频大全 | 欧美野外疯狂做受xxxx高潮 | 日本www一道久久久免费榴莲 | 国产在线精品一区二区三区直播 | 成人精品一区二区三区中文字幕 | 国产精品第一国产精品 | 国产精品成人av在线观看 | 999久久久国产精品消防器材 | 久久精品国产一区二区三区 | 对白脏话肉麻粗话av | 丰满人妻一区二区三区免费视频 | 久9re热视频这里只有精品 | 成人三级无码视频在线观看 | 99久久精品无码一区二区毛片 | 日本肉体xxxx裸交 | 亚洲大尺度无码无码专区 | 国内少妇偷人精品视频 | 久久久久亚洲精品中文字幕 | 欧洲美熟女乱又伦 | 熟妇人妻无码xxx视频 | 国産精品久久久久久久 | 国产又粗又硬又大爽黄老大爷视 | 国产精品美女久久久网av | 一本久道久久综合婷婷五月 | 国产综合色产在线精品 | 国产9 9在线 | 中文 | 曰韩无码二三区中文字幕 | 欧美性生交活xxxxxdddd | 亚洲精品一区二区三区婷婷月 | 天下第一社区视频www日本 | a在线观看免费网站大全 | 风流少妇按摩来高潮 | 亚洲精品无码人妻无码 | 人妻少妇精品无码专区二区 | 国产精品欧美成人 | 久久久精品成人免费观看 | 熟女少妇在线视频播放 | 日韩视频 中文字幕 视频一区 | 日本熟妇大屁股人妻 | 人人爽人人爽人人片av亚洲 | 久久国产自偷自偷免费一区调 | 中文字幕无码av波多野吉衣 | 天天躁夜夜躁狠狠是什么心态 | 欧美日韩综合一区二区三区 | 丰满岳乱妇在线观看中字无码 | 好男人社区资源 | 麻豆精品国产精华精华液好用吗 | 亚洲啪av永久无码精品放毛片 | 久久亚洲精品中文字幕无男同 | 99国产欧美久久久精品 | 网友自拍区视频精品 | 少妇愉情理伦片bd | 日本大香伊一区二区三区 | 又湿又紧又大又爽a视频国产 | 久久精品99久久香蕉国产色戒 | 国产精品资源一区二区 | 国产人妻精品一区二区三区不卡 | 少妇厨房愉情理9仑片视频 | 无套内射视频囯产 | 狠狠亚洲超碰狼人久久 | 无码一区二区三区在线观看 | 国语自产偷拍精品视频偷 | 性欧美videos高清精品 | 亚洲 欧美 激情 小说 另类 | 亚洲无人区一区二区三区 | 鲁鲁鲁爽爽爽在线视频观看 | 国产免费观看黄av片 | 扒开双腿吃奶呻吟做受视频 | 精品成人av一区二区三区 | 人人爽人人澡人人高潮 | 亚洲精品一区二区三区大桥未久 | 中文字幕中文有码在线 | 久久人妻内射无码一区三区 | 色情久久久av熟女人妻网站 | 亚洲日韩中文字幕在线播放 | 亚洲第一网站男人都懂 | 亚洲乱码中文字幕在线 | 国产无av码在线观看 | 中文字幕精品av一区二区五区 | 曰韩无码二三区中文字幕 | 激情五月综合色婷婷一区二区 | 小sao货水好多真紧h无码视频 | 领导边摸边吃奶边做爽在线观看 | 中文字幕av无码一区二区三区电影 | 久久精品国产精品国产精品污 | 蜜桃无码一区二区三区 | 国产农村妇女高潮大叫 | 亚洲中文字幕无码中字 | 中文字幕日韩精品一区二区三区 | 好爽又高潮了毛片免费下载 | 一本久久伊人热热精品中文字幕 | 俺去俺来也www色官网 | 3d动漫精品啪啪一区二区中 | 中文字幕人妻无码一区二区三区 | 久久久久久久久蜜桃 | 中文字幕人妻无码一区二区三区 | 国产精品久免费的黄网站 | 日本护士毛茸茸高潮 | 精品欧美一区二区三区久久久 | 日韩av无码中文无码电影 | 红桃av一区二区三区在线无码av | 久久无码中文字幕免费影院蜜桃 | 中文字幕无码免费久久9一区9 | 中文字幕日产无线码一区 | 亚洲a无码综合a国产av中文 | 波多野结衣乳巨码无在线观看 | 国产又粗又硬又大爽黄老大爷视 | 日本精品人妻无码免费大全 | 伊人久久大香线蕉亚洲 | 国产乡下妇女做爰 | 欧美人妻一区二区三区 | 人妻aⅴ无码一区二区三区 | 精品国产精品久久一区免费式 | 在线看片无码永久免费视频 | 欧美性生交xxxxx久久久 | 麻花豆传媒剧国产免费mv在线 | 国产又爽又猛又粗的视频a片 | 人妻少妇被猛烈进入中文字幕 | 久久国语露脸国产精品电影 | 国产精品久久久久久无码 | 欧美肥老太牲交大战 | 日产精品99久久久久久 | 国产亚洲精品久久久久久久久动漫 | 乱人伦中文视频在线观看 | 精品国产一区av天美传媒 | 欧美日韩亚洲国产精品 | 亚洲日韩一区二区三区 | 一本无码人妻在中文字幕免费 | 日本熟妇人妻xxxxx人hd | 国产亚洲日韩欧美另类第八页 | 久久综合香蕉国产蜜臀av | 欧美 日韩 人妻 高清 中文 | 伊人久久大香线蕉午夜 | 国产午夜手机精彩视频 | 熟女少妇在线视频播放 | 十八禁真人啪啪免费网站 | 国产精品资源一区二区 | 久久熟妇人妻午夜寂寞影院 | 特大黑人娇小亚洲女 | 国产精品久久久久无码av色戒 | 日本熟妇人妻xxxxx人hd | 国产激情无码一区二区app | 国产精品永久免费视频 | 大肉大捧一进一出视频出来呀 | 成人欧美一区二区三区黑人免费 | 亚洲经典千人经典日产 | 天堂久久天堂av色综合 | 亚洲一区二区三区偷拍女厕 | 亚洲成av人综合在线观看 | 国产亚洲精品久久久久久久久动漫 | 久久精品国产一区二区三区肥胖 | 国精产品一区二区三区 | 国产精品第一国产精品 | 国产精品久久久久久亚洲毛片 | 中文毛片无遮挡高清免费 | 在线成人www免费观看视频 | 国产xxx69麻豆国语对白 | 丝袜足控一区二区三区 | 人人妻人人澡人人爽人人精品 | 国产乱人无码伦av在线a | 欧美性生交xxxxx久久久 | 久久熟妇人妻午夜寂寞影院 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 亚洲午夜无码久久 | 亚洲成色www久久网站 | 天天拍夜夜添久久精品 | 久久人人爽人人人人片 | 内射老妇bbwx0c0ck | 国产av久久久久精东av | 熟女俱乐部五十路六十路av | 午夜时刻免费入口 | 日韩视频 中文字幕 视频一区 | 日本一区二区三区免费高清 | 亚洲呦女专区 | 免费无码的av片在线观看 | 欧美兽交xxxx×视频 | 97se亚洲精品一区 | a在线亚洲男人的天堂 | 国产亚av手机在线观看 | 女人被男人躁得好爽免费视频 | 亚洲欧美日韩成人高清在线一区 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 久久亚洲国产成人精品性色 | 67194成是人免费无码 | 国产黄在线观看免费观看不卡 | 成人试看120秒体验区 | 精品水蜜桃久久久久久久 | 久久亚洲精品成人无码 | 荫蒂被男人添的好舒服爽免费视频 | 国产激情艳情在线看视频 | 无码人妻黑人中文字幕 | 精品无码一区二区三区的天堂 | 精品国偷自产在线 | 性生交大片免费看女人按摩摩 | 夜夜影院未满十八勿进 | 大色综合色综合网站 | 国产成人人人97超碰超爽8 | 中文无码精品a∨在线观看不卡 | 免费网站看v片在线18禁无码 | 久久久久成人片免费观看蜜芽 | 国产成人人人97超碰超爽8 | 99久久久无码国产精品免费 | 少妇一晚三次一区二区三区 | 少妇高潮一区二区三区99 | 六月丁香婷婷色狠狠久久 | 性欧美疯狂xxxxbbbb | 欧美日韩一区二区免费视频 | 欧美猛少妇色xxxxx | 久久精品国产精品国产精品污 | 国产 浪潮av性色四虎 | 国产成人无码a区在线观看视频app | 97精品国产97久久久久久免费 | 综合激情五月综合激情五月激情1 | 给我免费的视频在线观看 | 亚洲欧洲中文日韩av乱码 | 国产精品人妻一区二区三区四 | 中文字幕av无码一区二区三区电影 | 人妻天天爽夜夜爽一区二区 | 日产国产精品亚洲系列 | 婷婷色婷婷开心五月四房播播 | 国产内射老熟女aaaa | 国产亚av手机在线观看 | 国产精品-区区久久久狼 | 四虎永久在线精品免费网址 | 色 综合 欧美 亚洲 国产 | 97夜夜澡人人爽人人喊中国片 | 国产乱人偷精品人妻a片 | 纯爱无遮挡h肉动漫在线播放 | 久久国产精品精品国产色婷婷 | 国产明星裸体无码xxxx视频 | 国产精品久久久久久无码 | 无码人妻av免费一区二区三区 | 国产热a欧美热a在线视频 | 国产精品久久久一区二区三区 | 少妇久久久久久人妻无码 | 国产乡下妇女做爰 | 欧美激情内射喷水高潮 | 亚洲成色在线综合网站 | 伦伦影院午夜理论片 | 亚洲s码欧洲m码国产av | 久久99精品久久久久久动态图 | 性做久久久久久久免费看 | 欧美精品国产综合久久 | 色综合久久久无码网中文 | 欧美第一黄网免费网站 | 久久视频在线观看精品 | 欧美人与善在线com | 三级4级全黄60分钟 | 久久综合香蕉国产蜜臀av | 亚洲国产精品一区二区美利坚 | 久久久久人妻一区精品色欧美 | 自拍偷自拍亚洲精品被多人伦好爽 | 大肉大捧一进一出好爽视频 | 亚洲精品成人福利网站 | 搡女人真爽免费视频大全 | 亚洲一区二区三区在线观看网站 | 国产舌乚八伦偷品w中 | 九月婷婷人人澡人人添人人爽 | 国产免费观看黄av片 | 鲁大师影院在线观看 | 人人妻人人澡人人爽精品欧美 | 久久精品99久久香蕉国产色戒 | 国产精品久久久久久亚洲毛片 | 日韩av无码一区二区三区不卡 | 18黄暴禁片在线观看 | 天堂亚洲2017在线观看 | 一本一道久久综合久久 | 性欧美牲交xxxxx视频 | 亚洲国产精品成人久久蜜臀 | 成人三级无码视频在线观看 | 亚拍精品一区二区三区探花 | 精品国产av色一区二区深夜久久 | 国产在线精品一区二区高清不卡 | 国产亚洲精品久久久久久久久动漫 | 亚洲区欧美区综合区自拍区 | 日本丰满熟妇videos | 人人妻人人藻人人爽欧美一区 | 精品乱码久久久久久久 | 久久综合激激的五月天 | 国产午夜福利100集发布 | 亚洲精品国产a久久久久久 | 免费人成在线观看网站 | 欧美人与物videos另类 | 无套内谢的新婚少妇国语播放 | 高清不卡一区二区三区 | 国产亚洲精品久久久久久大师 | 性做久久久久久久久 | 欧美三级a做爰在线观看 | 中文字幕无码日韩欧毛 | 亚洲理论电影在线观看 | 日韩精品一区二区av在线 | 欧美高清在线精品一区 | 两性色午夜视频免费播放 | 99久久人妻精品免费二区 | 国产偷国产偷精品高清尤物 | аⅴ资源天堂资源库在线 | 熟妇人妻激情偷爽文 | 精品国产aⅴ无码一区二区 | 波多野结衣av在线观看 | 极品嫩模高潮叫床 | 蜜臀av无码人妻精品 | 亚洲第一无码av无码专区 | 亚洲综合久久一区二区 | 亚洲精品成人av在线 | 日本一卡2卡3卡四卡精品网站 | 国产一区二区三区精品视频 | 成人免费视频一区二区 | 亚洲欧美日韩国产精品一区二区 | 高中生自慰www网站 | 国产莉萝无码av在线播放 | 一个人看的www免费视频在线观看 | 亚洲男人av香蕉爽爽爽爽 | 亚洲一区二区三区播放 | 精品无码一区二区三区的天堂 | 欧美日韩亚洲国产精品 | 成人性做爰aaa片免费看 | 国产av无码专区亚洲awww | 鲁大师影院在线观看 | 十八禁真人啪啪免费网站 | 秋霞特色aa大片 | 国产高潮视频在线观看 | 婷婷六月久久综合丁香 | 男女超爽视频免费播放 | 国产人妻精品一区二区三区不卡 | 久久午夜无码鲁丝片午夜精品 | 鲁大师影院在线观看 | 国产肉丝袜在线观看 | 久久人妻内射无码一区三区 | 天天综合网天天综合色 | 国产明星裸体无码xxxx视频 | 国产精品人人爽人人做我的可爱 | 无码av最新清无码专区吞精 | 国产亚洲精品久久久久久久 | 精品无人国产偷自产在线 | 黑人巨大精品欧美一区二区 | 99精品国产综合久久久久五月天 | 亚洲精品综合一区二区三区在线 | 无码人妻精品一区二区三区不卡 | 18精品久久久无码午夜福利 | 亚洲国精产品一二二线 | 亚洲一区二区三区国产精华液 | 中文字幕色婷婷在线视频 | 人妻少妇被猛烈进入中文字幕 | 国产亚洲精品久久久闺蜜 | 久久精品99久久香蕉国产色戒 | 久精品国产欧美亚洲色aⅴ大片 | 亚洲国产av美女网站 | 麻豆md0077饥渴少妇 | 1000部夫妻午夜免费 | 少妇愉情理伦片bd | 麻豆精品国产精华精华液好用吗 | 成人综合网亚洲伊人 | 人人爽人人澡人人人妻 | 欧美人与动性行为视频 | 成人动漫在线观看 | 午夜精品一区二区三区在线观看 | 中文字幕乱码中文乱码51精品 | 骚片av蜜桃精品一区 | 狂野欧美性猛xxxx乱大交 | 中文字幕乱码亚洲无线三区 | 欧美亚洲国产一区二区三区 | 久久无码中文字幕免费影院蜜桃 | 久久精品人人做人人综合 | 国产精品人人爽人人做我的可爱 | 午夜男女很黄的视频 | 亚洲 日韩 欧美 成人 在线观看 | 国产成人精品视频ⅴa片软件竹菊 | 日本一卡2卡3卡四卡精品网站 | 国产国产精品人在线视 | 亚洲色大成网站www国产 | 熟女少妇在线视频播放 | 久久久av男人的天堂 | 国产激情精品一区二区三区 | 国产深夜福利视频在线 | 性欧美疯狂xxxxbbbb | 国产成人人人97超碰超爽8 | 中文字幕人妻丝袜二区 | 亚洲国产午夜精品理论片 | 午夜精品久久久内射近拍高清 | 久久久久se色偷偷亚洲精品av | 精品欧洲av无码一区二区三区 | 草草网站影院白丝内射 | 日本精品人妻无码免费大全 | 亚洲国产一区二区三区在线观看 | 波多野结衣一区二区三区av免费 | 日本丰满护士爆乳xxxx | 又紧又大又爽精品一区二区 | 午夜不卡av免费 一本久久a久久精品vr综合 | 动漫av网站免费观看 | 曰韩少妇内射免费播放 | 欧洲欧美人成视频在线 | а天堂中文在线官网 |