-
Notifications
You must be signed in to change notification settings - Fork 1
Advanced SQL #284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Advanced SQL #284
Conversation
|
I have updated the sourcepath of SELECT A.fid AS SKEY, A.abs, A.strbez, A.strkl, A.strnr, A.strzus, A.absnr, A.absast, A.statanf, SQL__1, A.vwbez, A.vwbezknz, datetime(A.netzstand), ST_AsText(ST_ForcePolygonCCW(A.geom)) FROM abschnitteaeste_line A WHERE (A.fid >= 1 AND A.fid <= 10) ORDER BY 1The I have copied the "$T$." from the example above, but I do not understand what this means or if it is necessary. I have also tried it with |
|
@cportele This was not implemented yet for |
|
@azahnen - Expressions are now working as expected. Do you have an example, where a left/right/full join makes sense? I could not come up with an example. |
...tures-sql/src/main/java/de/ii/xtraplatform/features/sql/app/DecoderFactorySqlExpression.java
Outdated
Show resolved
Hide resolved
|
@cportele After further thought, I don't think there is a use case for left/right/full join at the moment. The reason for that is that for every join a separate query will be generated. But there are plans for query optimizations where all joins for non-multiple properties would be merged into the main query. In that case the option would become meaningful. So I still think it makes sense to introduce the option now and use it in the hale plugin to make the generated configurations future-proof in that regard. But it might be confusing to have an option without any current use case in the docs. So should we make it a hidden option for now? |
|
@azahnen - Yes, I think we should hide this option, at least for now. |
|
@cportele I removed the docs paragraph for the option. |
Adds support for custom SQL expressions and other join types than
INNER.Examples
Todo