[JBoss JIRA] Created: (TEIID-947) UNION query with different datatypes on each side of UNION is producing inconsistent results
by Warren Gibson (JIRA)
UNION query with different datatypes on each side of UNION is producing inconsistent results
---------------------------------------------------------------------------------------------
Key: TEIID-947
URL: https://jira.jboss.org/jira/browse/TEIID-947
Project: Teiid
Issue Type: Bug
Components: Query Engine
Affects Versions: 7.0
Reporter: Warren Gibson
Assignee: Steven Hawkins
The following query is producing unexpected results in CTC. It is not consistent and sometimes produces unexpected results and sometimes passes. However, it can be reproduced.
SELECT IntKey, IntNum FROM BQT1.SmallA UNION SELECT StringKey, StringNum FROM BQT2.MediumB ORDER BY IntKey
The datatypes of each side of the union are not the same and sometimes rmdata.getColumnTypeName(++col) indicates its a string and sometimes it says its an integer.
It is my understanding that the column should be implicitly converted to a consistent type (in this case a string).
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 10 months
[JBoss JIRA] Created: (TEIID-1086) Possible missing I18N bundle for AdminShell
by Paul Nittel (JIRA)
Possible missing I18N bundle for AdminShell
-------------------------------------------
Key: TEIID-1086
URL: https://jira.jboss.org/jira/browse/TEIID-1086
Project: Teiid
Issue Type: Bug
Environment: Teiid from May 5 build
Reporter: Paul Nittel
Assignee: Steven Hawkins
This code excerpt
println( "\nListing Connectors" )
aCon = getConnectorNames();
for (c in aCon) {
println( " " + c )
println( " " + getConnectorPropertyDefinitions( c ) )
}
produces output like this:
Listing Connectors
connector-salesforce-7.0.0-SNAPSHOT
Exception thrown
java.lang.ExceptionInInitializerError
at org.teiid.adminapi.impl.PropertyDefinitionMetadata.toString(PropertyDefinitionMetadata.java:52)
at TestAdmin.run(TestAdmin.groovy:54)
at org.teiid.adminshell.GroovyAdminConsole$1$1.run(GroovyAdminConsole.java:55)
Caused by: java.util.MissingResourceException: Can't find bundle for base name org.teiid.adminapi.impl.i18n, locale en_US
at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1521)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1260)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:715)
at org.teiid.adminapi.impl.AdminPlugin.<clinit>(AdminPlugin.java:35)
... 3 more
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 10 months
[JBoss JIRA] Created: (TEIID-803) The connector binding name assigned when created in the designer is not the name in the ConnectorBinding when using AdminAPI
by Van Halbert (JIRA)
The connector binding name assigned when created in the designer is not the name in the ConnectorBinding when using AdminAPI
----------------------------------------------------------------------------------------------------------------------------
Key: TEIID-803
URL: https://jira.jboss.org/jira/browse/TEIID-803
Project: Teiid
Issue Type: Bug
Components: AdminApi, Tools
Affects Versions: 6.2.0
Reporter: Van Halbert
Assignee: Steven Hawkins
The name I assigned to the connectorbinding in the designer was "datasource1". I looked at the advanced properties and there is no other name property defined. Open the vdb file and view the Configuration.def file and it has the following:
<Connector Name="datasource1" ComponentType="Loopback Connector" routingUUID="mmuuid:66dfa66b-4572-46ba-a477-8b6fe3895072">
<Properties>
<Property Name="DeployedName">Transaction_1.datasource1</Property>
</Properties>
</Connector>
When using the adminapi and calleding getName() on ConnectorBinding, the name returned is "Transaction_1.datasource1". The name that the user assignes to the binding should match the getName().
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 10 months