-
Notifications
You must be signed in to change notification settings - Fork 31
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
Table with a null
partition value throws NPE
#1867
Closed
mofojed opened this issue
Mar 12, 2024
· 1 comment
· Fixed by #1954 or deephaven/deephaven-core#5439
Closed
Table with a null
partition value throws NPE
#1867
mofojed opened this issue
Mar 12, 2024
· 1 comment
· Fixed by #1954 or deephaven/deephaven-core#5439
Comments
Not reproducible on Community with a table with
There must be something else going on |
This was referenced Apr 22, 2024
vbabich
added a commit
that referenced
this issue
Apr 24, 2024
Closes #1867 Tested in Enterprise using steps from DH-16595 - created a partitioned table and set ACL to `nullFilterGenerator()` to get the `null` value in the partition column. Creating a partitioned table with a `null` in the partition column doesn't seem possible with `db.addTablePartition` in Enterprise. ``` t=db.t("LearnDeephaven", "StockTrades").where() db.addPartitionedTableDefinition("<namespace>", "partTable", "Date", t.getDefinition()) test = db.t("<namespace>" , "partTable") // Set Column ACL on `partTable` to `new NullFilterGenerator()` in swing test = db.t("<namespace>" , "partTable") ``` ![Screenshot 2024-04-23 at 5 26 43 PM](https://github.com/deephaven/web-client-ui/assets/2853653/bbd65305-4616-416d-8af3-96dadcc21fa1) Core+ Groovy console: ``` t = emptyTable(1).update("X=(String)null","Y=ii").partitionBy("X") ``` ![Screenshot 2024-04-23 at 5 23 55 PM](https://github.com/deephaven/web-client-ui/assets/2853653/0564a626-97fa-46d9-8920-200eda19c533) --------- Co-authored-by: Mike Bender <mikebender@deephaven.io>
mofojed
pushed a commit
to deephaven/deephaven-core
that referenced
this issue
May 1, 2024
Release notes https://github.com/deephaven/web-client-ui/releases/tag/v0.75.0 # [0.75.0](deephaven/web-client-ui@v0.74.0...v0.75.0) (2024-05-01) ### Bug Fixes * change fira source ([#1944](deephaven/web-client-ui#1944)) ([07e5a26](deephaven/web-client-ui@07e5a26)), closes [#1902](deephaven/web-client-ui#1902) * Fix null partition filter ([#1954](deephaven/web-client-ui#1954)) ([3a1f92b](deephaven/web-client-ui@3a1f92b)), closes [#1867](deephaven/web-client-ui#1867) ### Features * context menu reopen for stack only ([#1932](deephaven/web-client-ui#1932)) ([6a9a6a4](deephaven/web-client-ui@6a9a6a4)), closes [#1931](deephaven/web-client-ui#1931) * Create an ErrorView that can be used to display errors ([#1965](deephaven/web-client-ui#1965)) ([65ef1a7](deephaven/web-client-ui@65ef1a7)) * ListView + Picker - Item icon support ([#1959](deephaven/web-client-ui#1959)) ([cb13c60](deephaven/web-client-ui@cb13c60)), closes [#1890](deephaven/web-client-ui#1890) * Picker - initial scroll position ([#1942](deephaven/web-client-ui#1942)) ([5f49761](deephaven/web-client-ui@5f49761)), closes [#1890](deephaven/web-client-ui#1890) [#1935](deephaven/web-client-ui#1935) Co-authored-by: deephaven-internal <66694643+deephaven-internal@users.noreply.github.com>
stanbrub
pushed a commit
to deephaven/deephaven-core
that referenced
this issue
May 3, 2024
Release notes https://github.com/deephaven/web-client-ui/releases/tag/v0.75.0 # [0.75.0](deephaven/web-client-ui@v0.74.0...v0.75.0) (2024-05-01) ### Bug Fixes * change fira source ([#1944](deephaven/web-client-ui#1944)) ([07e5a26](deephaven/web-client-ui@07e5a26)), closes [#1902](deephaven/web-client-ui#1902) * Fix null partition filter ([#1954](deephaven/web-client-ui#1954)) ([3a1f92b](deephaven/web-client-ui@3a1f92b)), closes [#1867](deephaven/web-client-ui#1867) ### Features * context menu reopen for stack only ([#1932](deephaven/web-client-ui#1932)) ([6a9a6a4](deephaven/web-client-ui@6a9a6a4)), closes [#1931](deephaven/web-client-ui#1931) * Create an ErrorView that can be used to display errors ([#1965](deephaven/web-client-ui#1965)) ([65ef1a7](deephaven/web-client-ui@65ef1a7)) * ListView + Picker - Item icon support ([#1959](deephaven/web-client-ui#1959)) ([cb13c60](deephaven/web-client-ui@cb13c60)), closes [#1890](deephaven/web-client-ui#1890) * Picker - initial scroll position ([#1942](deephaven/web-client-ui#1942)) ([5f49761](deephaven/web-client-ui@5f49761)), closes [#1890](deephaven/web-client-ui#1890) [#1935](deephaven/web-client-ui#1935) Co-authored-by: deephaven-internal <66694643+deephaven-internal@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reported with https://deephaven.atlassian.net/browse/DH-16595
Table throws NPE:
The text was updated successfully, but these errors were encountered: