*/
private Object[] helpGetStoredProcDefaultValues() {
// This needs to match what's in FakeMetadataFactory.example1 for this stored proc
return new Object[] {
new Constant("x"), //$NON-NLS-1$
new Constant(new BigDecimal("13.0")),//$NON-NLS-1$
new Constant(new BigInteger("13")),//$NON-NLS-1$
new Constant(Boolean.TRUE),
new Constant(new Byte("1")),//$NON-NLS-1$
new Constant(new Character('q')),
new Constant(Date.valueOf("2003-03-20")),//$NON-NLS-1$
new Constant(new Double(13.0)),
new Constant(new Float(13.0)),
new Constant(new Integer(13)),
new Constant(new Long(13)),
new Constant(new Short((short)13)),
new Constant(Timestamp.valueOf("2003-03-20 21:26:00.000000")),//$NON-NLS-1$
new Constant(Time.valueOf("21:26:00")),//$NON-NLS-1$
};
}