diff options
author | monty@mysql.com <> | 2004-03-18 00:16:04 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-18 00:16:04 +0200 |
commit | 53c810cda446a060d4b9f41040f9227313c24ba1 (patch) | |
tree | 2bd46f92f467b68e9b652a280b512a9cf0413ca2 /mysql-test/r/func_math.result | |
parent | 43706715daf1039a772c2d2aaceae0ef93ffe037 (diff) | |
parent | f34a642d6e492fa527e09593aa695e67d3867263 (diff) | |
download | mariadb-git-53c810cda446a060d4b9f41040f9227313c24ba1.tar.gz |
merge fixes (use old code)
Diffstat (limited to 'mysql-test/r/func_math.result')
-rw-r--r-- | mysql-test/r/func_math.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/func_math.result b/mysql-test/r/func_math.result index 9085849e582..93d4319ea86 100644 --- a/mysql-test/r/func_math.result +++ b/mysql-test/r/func_math.result @@ -119,6 +119,15 @@ ASIN(0.8+0.2) SELECT ASIN(1.2-0.2); ASIN(1.2-0.2) 1.570796 +select floor(log(4)/log(2)); +floor(log(4)/log(2)) +2 +select floor(log(8)/log(2)); +floor(log(8)/log(2)) +3 +select floor(log(16)/log(2)); +floor(log(16)/log(2)) +4 explain extended select degrees(pi()),radians(360); id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL No tables used |