* Expect xsd:decimal to be typed as decimal
* @throws SQLException
*/
@Test
public void test_column_type_detection_decimal() throws SQLException {
ColumnInfo info = testColumnTypeDetection("x", NodeFactory.createLiteral("123.4", XSDDatatype.XSDdecimal), true, Types.DECIMAL, BigDecimal.class.getCanonicalName());
Assert.assertEquals(16, info.getScale());
Assert.assertEquals(16, info.getPrecision());
Assert.assertTrue(info.isSigned());
}