Bug 1271226
| Summary: | Dynamic VDB generation - Default value for string column problem (DDL) | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Data Virtualization 6 | Reporter: | Matus Makovy <mmakovy> |
| Component: | Tooling | Assignee: | Barry LaFond <blafond> |
| Status: | CLOSED NOTABUG | QA Contact: | Matus Makovy <mmakovy> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 6.2.0 | CC: | vhalbert |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Mac OS | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2015-12-07 13:27:40 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
I don't think DEFAULT '("Stock")' is correct, even though it may work. Its not consistent with defining other attributes. Now, if you would have said something like: DEFAULT ('"Stock"') , then possibly.
Using only JIRA now. Marking as closed Barry LaFond <blafond> updated the status of jira TEIIDDES-2687 to Resolved Matus Makovy <mmakovy> updated the status of jira TEIIDDES-2687 to Closed |
I have a model with table that has String column with default value "Stock". DDL generated by TD for dynamic VDB looks like this: ... TYPE string(15) DEFAULT ('Stock') OPTIONS(NAMEINSOURCE '"TYPE"', NATIVE_TYPE 'VARCHAR2', UPDATABLE 'FALSE'), ... DEFAULT ('Stock') is not correct, it should be: DEFAULT '("Stock")'