[JBoss JIRA] (TEIIDSB-210) Add more javadocs and make configuration consistent
by Steven Hawkins (Jira)
[ https://issues.redhat.com/browse/TEIIDSB-210?page=com.atlassian.jira.plug... ]
Steven Hawkins resolved TEIIDSB-210.
------------------------------------
Assignee: Steven Hawkins
Resolution: Done
The javadocs were added on the teiid side. The initial inconsistency addressed was username (vs userName). It looks like we may need to eventually have to ensure consistency in terms like filename and the set of properties related to trust/key stores.
> Add more javadocs and make configuration consistent
> ---------------------------------------------------
>
> Key: TEIIDSB-210
> URL: https://issues.redhat.com/browse/TEIIDSB-210
> Project: Teiid Spring Boot
> Issue Type: Bug
> Components: datasource
> Reporter: Steven Hawkins
> Assignee: Steven Hawkins
> Priority: Major
> Fix For: 1.6.0
>
> Original Estimate: 2 hours
> Remaining Estimate: 2 hours
>
> Most of the base configuration classes don't have any javadocs. We should add anything that is meaningful and make sure that property names are consistent.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months
[JBoss JIRA] (TEIID-5973) wrong type info for EPOCH return value
by Steven Hawkins (Jira)
[ https://issues.redhat.com/browse/TEIID-5973?page=com.atlassian.jira.plugi... ]
Steven Hawkins resolved TEIID-5973.
-----------------------------------
Resolution: Done
Corrected the return type.
> wrong type info for EPOCH return value
> --------------------------------------
>
> Key: TEIID-5973
> URL: https://issues.redhat.com/browse/TEIID-5973
> Project: Teiid
> Issue Type: Enhancement
> Components: Query Engine
> Affects Versions: 14.0
> Reporter: Ken Geis
> Assignee: Steven Hawkins
> Priority: Major
> Fix For: 15.0, 13.1.2, 14.0.1
>
> Original Estimate: 45 minutes
> Time Spent: 45 minutes
> Remaining Estimate: 0 minutes
>
> The documentation states that EPOCH(..) and EXTRACT(EPOCH FROM ..) return double. I should be able to perform calculations on those. For example, I should be able to find the number of seconds since the epoch with
> {code:sql}
> SELECT EPOCH(NOW()) / 1000;
> {code}
> However, this query produces the error
> {noformat}
> TEIID30070 The function '(EPOCH(NOW()) / 1000)' is a valid function form, but the arguments do not match a known type signature and cannot be converted using implicit type conversions.{noformat}
>
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months
[JBoss JIRA] (TEIID-5973) wrong type info for EPOCH return value
by Steven Hawkins (Jira)
[ https://issues.redhat.com/browse/TEIID-5973?focusedWorklogId=12451495&pag... ]
Steven Hawkins logged work on TEIID-5973:
-----------------------------------------
Author: Steven Hawkins
Created on: 15/Jun/20 8:30 AM
Start Date: 15/Jun/20 8:30 AM
Worklog Time Spent: 45 minutes
Issue Time Tracking
-------------------
Remaining Estimate: 0 minutes (was: 45 minutes)
Time Spent: 45 minutes
Worklog Id: (was: 12451495)
> wrong type info for EPOCH return value
> --------------------------------------
>
> Key: TEIID-5973
> URL: https://issues.redhat.com/browse/TEIID-5973
> Project: Teiid
> Issue Type: Enhancement
> Components: Query Engine
> Affects Versions: 14.0
> Reporter: Ken Geis
> Assignee: Steven Hawkins
> Priority: Major
> Fix For: 15.0, 13.1.2, 14.0.1
>
> Original Estimate: 45 minutes
> Time Spent: 45 minutes
> Remaining Estimate: 0 minutes
>
> The documentation states that EPOCH(..) and EXTRACT(EPOCH FROM ..) return double. I should be able to perform calculations on those. For example, I should be able to find the number of seconds since the epoch with
> {code:sql}
> SELECT EPOCH(NOW()) / 1000;
> {code}
> However, this query produces the error
> {noformat}
> TEIID30070 The function '(EPOCH(NOW()) / 1000)' is a valid function form, but the arguments do not match a known type signature and cannot be converted using implicit type conversions.{noformat}
>
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months
[JBoss JIRA] (TEIID-5973) wrong type info for EPOCH return value
by Steven Hawkins (Jira)
[ https://issues.redhat.com/browse/TEIID-5973?page=com.atlassian.jira.plugi... ]
Steven Hawkins updated TEIID-5973:
----------------------------------
Component/s: Query Engine
Fix Version/s: 15.0
13.1.2
14.0.1
Original Estimate: 45 minutes
Remaining Estimate: 45 minutes
Story Points: 0.1
Sprint: DV Sprint 65
> wrong type info for EPOCH return value
> --------------------------------------
>
> Key: TEIID-5973
> URL: https://issues.redhat.com/browse/TEIID-5973
> Project: Teiid
> Issue Type: Enhancement
> Components: Query Engine
> Affects Versions: 14.0
> Reporter: Ken Geis
> Assignee: Steven Hawkins
> Priority: Major
> Fix For: 15.0, 13.1.2, 14.0.1
>
> Original Estimate: 45 minutes
> Remaining Estimate: 45 minutes
>
> The documentation states that EPOCH(..) and EXTRACT(EPOCH FROM ..) return double. I should be able to perform calculations on those. For example, I should be able to find the number of seconds since the epoch with
> {code:sql}
> SELECT EPOCH(NOW()) / 1000;
> {code}
> However, this query produces the error
> {noformat}
> TEIID30070 The function '(EPOCH(NOW()) / 1000)' is a valid function form, but the arguments do not match a known type signature and cannot be converted using implicit type conversions.{noformat}
>
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months
[JBoss JIRA] (TEIID-5973) wrong type info for EPOCH return value
by Steven Hawkins (Jira)
[ https://issues.redhat.com/browse/TEIID-5973?page=com.atlassian.jira.plugi... ]
Steven Hawkins commented on TEIID-5973:
---------------------------------------
> For example, I should be able to find the number of seconds since the epoch with
It will already return the number of seconds.
> However, this query produces the error
Yes that needs to be corrected. The function metadata is being inferred from the method, but the return type was left as object.
A workaroud is to add a cast:
SELECT cast(EPOCH(NOW()) as double) / 1000;
> wrong type info for EPOCH return value
> --------------------------------------
>
> Key: TEIID-5973
> URL: https://issues.redhat.com/browse/TEIID-5973
> Project: Teiid
> Issue Type: Enhancement
> Affects Versions: 14.0
> Reporter: Ken Geis
> Assignee: Steven Hawkins
> Priority: Major
>
> The documentation states that EPOCH(..) and EXTRACT(EPOCH FROM ..) return double. I should be able to perform calculations on those. For example, I should be able to find the number of seconds since the epoch with
> {code:sql}
> SELECT EPOCH(NOW()) / 1000;
> {code}
> However, this query produces the error
> {noformat}
> TEIID30070 The function '(EPOCH(NOW()) / 1000)' is a valid function form, but the arguments do not match a known type signature and cannot be converted using implicit type conversions.{noformat}
>
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months
[JBoss JIRA] (TEIID-5974) Can't Use Console to Change Logging Configuration
by Mike Higgins (Jira)
Mike Higgins created TEIID-5974:
-----------------------------------
Summary: Can't Use Console to Change Logging Configuration
Key: TEIID-5974
URL: https://issues.redhat.com/browse/TEIID-5974
Project: Teiid
Issue Type: Bug
Affects Versions: 12.2
Reporter: Mike Higgins
Assignee: Steven Hawkins
Could be a problem on my end, but Installing this version with Wildfly does not let me access the configuration->logging web console page. It comes up blank. I use this to change the command logging level on a running server.
Seems to happen in version 13, also.
I tried using the checkboxes in subsystem>teiid>configure>logging but they did not seem to change the level.
Please let me know if this if reproducible for you.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months
[JBoss JIRA] (TEIID-5973) wrong type info for EPOCH return value
by Ken Geis (Jira)
Ken Geis created TEIID-5973:
-------------------------------
Summary: wrong type info for EPOCH return value
Key: TEIID-5973
URL: https://issues.redhat.com/browse/TEIID-5973
Project: Teiid
Issue Type: Enhancement
Affects Versions: 14.0
Reporter: Ken Geis
Assignee: Steven Hawkins
The documentation states that EPOCH(..) and EXTRACT(EPOCH FROM ..) return double. I should be able to perform calculations on those. For example, I should be able to find the number of seconds since the epoch with
{code:sql}
SELECT EPOCH(NOW()) / 1000;
{code}
However, this query produces the error
{noformat}
TEIID30070 The function '(EPOCH(NOW()) / 1000)' is a valid function form, but the arguments do not match a known type signature and cannot be converted using implicit type conversions.{noformat}
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months
[JBoss JIRA] (TEIID-5963) Teiid using all typeInfo takes too long from PG
by Steven Hawkins (Jira)
[ https://issues.redhat.com/browse/TEIID-5963?focusedWorklogId=12451413&pag... ]
Steven Hawkins logged work on TEIID-5963:
-----------------------------------------
Author: Steven Hawkins
Created on: 12/Jun/20 4:15 PM
Start Date: 12/Jun/20 4:15 PM
Worklog Time Spent: 1 hour, 30 minutes
Work Description: Time spent on commenting, creating, and documenting a solution.
Issue Time Tracking
-------------------
Remaining Estimate: 1 hour, 30 minutes (was: 3 hours)
Time Spent: 1 hour, 30 minutes
Worklog Id: (was: 12451413)
> Teiid using all typeInfo takes too long from PG
> -----------------------------------------------
>
> Key: TEIID-5963
> URL: https://issues.redhat.com/browse/TEIID-5963
> Project: Teiid
> Issue Type: Bug
> Components: JDBC Connector
> Affects Versions: 14.0
> Reporter: Renat Eskenin
> Assignee: Steven Hawkins
> Priority: Major
> Fix For: 15.0
>
> Original Estimate: 3 hours
> Time Spent: 1 hour, 30 minutes
> Remaining Estimate: 1 hour, 30 minutes
>
> When we started teiid spring boot app, we have long start time.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months
[JBoss JIRA] (TEIID-5971) Hidden connection config
by Renat Eskenin (Jira)
[ https://issues.redhat.com/browse/TEIID-5971?page=com.atlassian.jira.plugi... ]
Renat Eskenin commented on TEIID-5971:
--------------------------------------
Hi! Ok, I understanded what you mean :) You have multiple places for bugs. I'm sorry, yes of course I will make new bugs in appropriate place.
> Hidden connection config
> ------------------------
>
> Key: TEIID-5971
> URL: https://issues.redhat.com/browse/TEIID-5971
> Project: Teiid
> Issue Type: Bug
> Components: Salesforce Connector
> Affects Versions: 14.0
> Reporter: Renat Eskenin
> Assignee: Steven Hawkins
> Priority: Major
>
> In
> SalesforceConnectionImpl:31
> private SalesforceConnectorConfig config;
> In
> BaseSalesforceConnection:77
> protected ConnectorConfig config;
> When call
> BaseSalesforceConnection:82
> we get NPE because
> protected ConnectorConfig config == null;
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 9 months