Skip to content

Commit 2c55c58

Browse files
Ralf WisserRalf Wisser
authored andcommitted
identity columns are not virtual (DB2 Z/OS)
1 parent a5832dd commit 2c55c58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/engine/net/sf/jailer/configuration/jailer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@
736736
"estimatedRowCountQuery": "SELECT TABNAME, CARD FROM SYSSTAT.TABLES WHERE TABSCHEMA = '%s'",
737737
"defaultSchemaQuery": null,
738738
"viewTextOrDDLQuery": "SELECT TEXT FROM SYSCAT.VIEWS WHERE VIEWSCHEMA = '%1$s' and VIEWNAME = '%2$s'",
739-
"virtualColumnsQuery": "SELECT TABNAME, COLNAME from syscat.columns WHERE TABSCHEMA='${SCHEMA}' AND GENERATED='A'",
739+
"virtualColumnsQuery": "SELECT TABNAME, COLNAME from syscat.columns WHERE TABSCHEMA='${SCHEMA}' AND GENERATED='A' AND NOT IDENTITY='Y'",
740740
"userDefinedColumnsQuery": null,
741741
"nullableContraint": null,
742742
"identifierQuoteString": "\"",

0 commit comments

Comments
 (0)