You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
openjdk full version "1.8.0_191-8u191-b12-2ubuntu0.18.04.1-b12"
Table schema
CREATE TABLE product_list (
id int auto_increment primary key,
name NVARCHAR(100) NOT NULL,
category NVARCHAR(50),
business_unit NVARCHAR(50),
quantity INTEGER,
price FLOAT,
realname NVARCHAR AS concat( business_unit, ':', name )
)
Driver version
7.2.1.jre8
SQL Server version
Azure SQL
Client Operating System
Ubuntu 18.04
JAVA/JVM version
openjdk full version "1.8.0_191-8u191-b12-2ubuntu0.18.04.1-b12"
Table schema
Problem description
https://docs.oracle.com/javase/7/docs/api/java/sql/DatabaseMetaData.html#getColumns(java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String)
The column IS_GENERATEDCOLUMN should return "YES" or "NO" as per JDBC
In the DDL above the column realname is a computed column
The column IS_GENERATEDCOLUMN return "1" or "0"
The text was updated successfully, but these errors were encountered: