[
https://issues.apache.org/jira/browse/FLINK-19825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Flink Jira Bot updated FLINK-19825:
-----------------------------------
Labels: auto-deprioritized-major flinksql stale-minor (was:
auto-deprioritized-major flinksql)
I am the [Flink Jira Bot|https://github.com/apache/flink-jira-bot/] and I help
the community manage its development. I see this issues has been marked as
Minor but is unassigned and neither itself nor its Sub-Tasks have been updated
for 180 days. I have gone ahead and marked it "stale-minor". If this ticket is
still Minor, please either assign yourself or give an update. Afterwards,
please remove the label or in 7 days the issue will be deprioritized.
> scala package class case class on flink sql
> -------------------------------------------
>
> Key: FLINK-19825
> URL: https://issues.apache.org/jira/browse/FLINK-19825
> Project: Flink
> Issue Type: Bug
> Components: API / Scala
> Affects Versions: 1.11.1
> Environment: flink version: 1.11.1
> scala version: 2.12
> Reporter: Yanzhao Deng
> Priority: Minor
> Labels: auto-deprioritized-major, flinksql, stale-minor
> Attachments: NewApiTest.scala, error.txt, package.scala
>
> Original Estimate: 336h
> Remaining Estimate: 336h
>
> When I use Flink SQL scala API, I found a bug. I have a sensor.txt, the txt
> file has some sensor data.One row of data is as follows:
> {code:java}
> sensor_1,1547718199,35.8
> {code}
> And I have a `package object MyTest` class. This class has a case class
> `SensorReading`.
> {code:java}
> package object MyTest {
> case class SensorReading(id: String, timestamp: Long, temperature: Double)
> }
> {code}
> When I use Flink SQL API, I think he should output the correct result, but he
> reported an error.
> {code:java}
> tEnv.createTemporaryView("ds", dataStream)
> val result: Table = tEnv.sqlQuery("SELECT * FROM ds where `temperature` >= 5")
> result.toAppendStream[SensorReading].print("test"){code}
> I will send you the error as a file later. And I found Inner class and scala
> General class not send this error.
> If you have any findings, please contact me.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)