import java.sql.Timestamp;

public class JI9052820 {

	public static void main(String[] args) {
		Timestamp ts1 = Timestamp.valueOf("1969-12-25 12:34:56.0001"); 
		Timestamp ts2 = Timestamp.valueOf("1969-12-25 12:34:56.0011"); 
		// Compare the seconds, which should be the same. 
		System.out.println("TIMESTAMP_BUG = " + 
				(ts1.getTime()/1000 != ts2.getTime()/1000)); 

	}

}
