aboutsummaryrefslogtreecommitdiff
path: root/exec/jdbc
diff options
context:
space:
mode:
authorMehant Baid <mehantr@gmail.com>2014-07-11 15:31:37 -0700
committerJacques Nadeau <jacques@apache.org>2014-07-20 16:29:47 -0700
commitc4a82f5ee4f461e85e82c9d8af01756340526db9 (patch)
tree22785590c57d85c300fa5a3014a9718758e3cb9c /exec/jdbc
parenta6e296cde2523976218f5ca5064a8c8b93b3d5e2 (diff)
DRILL-1123: Use double type for decimal division
Diffstat (limited to 'exec/jdbc')
-rw-r--r--exec/jdbc/src/test/java/org/apache/drill/jdbc/test/TestFunctionsQuery.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/exec/jdbc/src/test/java/org/apache/drill/jdbc/test/TestFunctionsQuery.java b/exec/jdbc/src/test/java/org/apache/drill/jdbc/test/TestFunctionsQuery.java
index 3a8bcbc83..4651b1e08 100644
--- a/exec/jdbc/src/test/java/org/apache/drill/jdbc/test/TestFunctionsQuery.java
+++ b/exec/jdbc/src/test/java/org/apache/drill/jdbc/test/TestFunctionsQuery.java
@@ -607,6 +607,7 @@ public class TestFunctionsQuery {
"DECIMAL_DOUBLE_CAST=1.0001\n");
}
+ @Ignore("we don't have decimal division")
@Test
public void testCastDecimalDivide() throws Exception {
String query = "select (cast('9' as decimal(9, 1)) / cast('2' as decimal(4, 1))) as DEC9_DIV, " +