DBeaver display `NULL` instead of data for fields of custom data type
See original GitHub issueSystem information:
- Linux Mint 19.1
- DBeaver version 6.0.0
Connection specification:
- PostgreSQL 10.4
- Do you use tunnels or proxies (SSH, SOCKS, etc)? NO
Describe the problem you’re observing:
Steps to reproduce, if exist:
Try to select data using table
or table.*
syntax for custom data types:
CREATE TYPE zzz AS ( id int, name TEXT );
;
SELECT z::zzz, (z::zzz).* FROM (
SELECT * FROM ( VALUES ( 1, 2 ), (NULL, 3) ) t
) z;
Issue Analytics
- State:
- Created 4 years ago
- Comments:14 (4 by maintainers)
Top Results From Across the Web
Data View and Format - DBeaver Documentation
To do so, right-click any cell in the table and, on the context menu, click View/Format -> Colourize Data Types. The values in...
Read more >Date Field always NULL - DBeaver Forum • View topic
I have not tested any other database type. It makes no difference wether the column is aggregated, in a function or solely selected....
Read more >MySql view returns a single NULL value for a NOT NULL ...
I noticed that the field modify_date on one of the views is not null, ... I forgot that I had taken a local...
Read more >How to query for null values in json field type postgresql?
you can use the fact that elem->'occupation2' returns string null of type json , so your query will be: select * from json_array_elements(...
Read more >Foreign Key Constraint | CockroachDB Docs
The write contains null values for at least one foreign key column (if MATCH SIMPLE is specified). ... column_type, The foreign key column's...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This bug was already fixed in 6.1. please download some recent version.
This is suggestion only. Does DBeaver try to display truncated data?