-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QueryCompiler IllegalStateException in Embedded Server - "no source files" #6216
Comments
I actually was able to reproduce this with this snippet: src = timeTable("PT1s").update(
"S = `ii = ` + ii",
"C = (char)(ii)",
"F = (float) ii * 0.1f",
"D = (double) ii * 0.1",
"B = (byte) ii",
"H = (short) ii",
"I = (int) ii",
"L = (long) ii",
"T = (Boolean)(ii % 2 == 0)").groupBy("Timestamp")
src_arr = src.update(
"Timestamp = new Instant[] { Timestamp, Timestamp }",
"S = new String[] { S, S }",
"C = new char[] { C, C }",
"F = new float[] { F, F }",
"D = new double[] { D, D }",
"B = new byte[] { B, B }",
"H = new short[] { H, H }",
"I = new int[] { I, I }",
"L = new long[] { L, L }",
"T = new boolean[] { T, T }") Not sure if it is even relevant that it was in my barrage_types branch. Single line fix PR incoming. |
nbauernfeind
added a commit
to nbauernfeind/deephaven-core
that referenced
this issue
Nov 29, 2024
nbauernfeind
added a commit
to nbauernfeind/deephaven-core
that referenced
this issue
Dec 12, 2024
devinrsmith
pushed a commit
that referenced
this issue
Dec 12, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Was found via an EmbeddedServer usage:
The error:
Still triaging.
The text was updated successfully, but these errors were encountered: