You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LocalTime can keep hour only within 00 - 23 interval which is different for kdb. The below code demonstrate the problem
c conn = new c("localhost", 10000);
System.out.println(conn.k("0N!23:12:34.567"));
System.out.println(conn.k("0N!43:12:34.567"));
System.out.println(conn.k("0N!-23:12:34.567"));
conn.close();