leo65535 opened a new issue #924: URL: https://github.com/apache/incubator-seatunnel/issues/924
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened ### Conf ``` filter { sql { table_name = "user_view" sql = "select '"${city2}"'" result_table_name = "result1" } sql { table_name = "user_view" sql = "select '"${dt}"'" result_table_name = "result2" } } ``` ### org.apache.seatunnel.config.CompleteTests ``` public static void main(String[] args) { System.out.println("Hello World"); System.setProperty("dt", "20190318"); System.setProperty("city2", "shanghai"); CompleteTests completeTests = new CompleteTests(); Config config = ConfigFactory.parseFile(completeTests.getFileFromResources("seatunnel/variables.conf")); config = config.resolve(ConfigResolveOptions.defaults().setAllowUnresolved(true)) .resolveWith(ConfigFactory.systemProperties(), ConfigResolveOptions.defaults().setAllowUnresolved(true)); ConfigRenderOptions renderOptions = ConfigRenderOptions.defaults().setComments(false).setOriginComments(false); System.out.println(config.root().render(renderOptions)); } ``` ### Result  ### SeaTunnel Version dev ### SeaTunnel Config ```conf dd ``` ### Running Command ```shell ddd ``` ### Error Exception ```log ddd ``` ### Flink or Spark Version dd ### Java or Scala Version dd ### Screenshots ddd ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
