question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

DBeaver display `NULL` instead of data for fields of custom data type

See original GitHub issue

System 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:closed
  • Created 4 years ago
  • Comments:14 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
serge-ridercommented, Jul 5, 2019

This bug was already fixed in 6.1. please download some recent version.

image

0reactions
KES777commented, Jul 14, 2019

This is suggestion only. Does DBeaver try to display truncated data? _

_2

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found