lbehnke / h2database

Automatically exported from code.google.com/p/h2database
0 stars 0 forks source link

H2 Console don't show table columns type for schemas different then PUBLIC #128

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1.Open H2 Console on fresh database:
 jdbc:h2:file:C:/Temp/testDb

2.
  CREATE SCHEMA ZZZ;
  CREATE TABLE ZZZ.T1(ID INTEGER, NAME VARCHAR(50));

3. Expand in console table ZZZ.T1 - only column names listed, no type info.

What is the expected output?
 Each column should have type info.

What version of the product are you using? On what operating system, file
system, and virtual machine?
 WinXP sp3, java 1.6_16, H2 1.1.119

How important/urgent is the problem for you?
not very important, but annoying

In your view, is this a defect or a feature request?
defect

Original issue reported on code.google.com by kua...@gmail.com on 3 Oct 2009 at 2:17

GoogleCodeExporter commented 9 years ago
This is the intended behavior. The reason is: if you have many tables and 
schema, the
browser will slow down. Therefore, I like to keep the current behavior.

Original comment by thomas.t...@gmail.com on 4 Oct 2009 at 9:13