@@ -999,7 +999,7 @@ def _run_examples(client):
999999+-------------------------------+------------------------+------------------------+
10001000| Read data | YES | YES |
10011001| Write data | NO (read-only) | YES (create/update/del)|
1002- | JOIN depth | 8 + tables (no limit) | $expand 10-level max |
1002+ | JOIN depth | 15 + tables (no limit) | $expand 10-level max |
10031003| JOIN types | INNER, LEFT | $expand (single-valued)|
10041004| Aggregates (COUNT, SUM, etc.) | YES (server-side) | Limited ($apply) |
10051005| GROUP BY | YES (server-side) | Via $apply (complex) |
@@ -1079,7 +1079,7 @@ def _run_examples(client):
10791079+-------------------------------+----------+----------------------------------------+
10801080| SELECT col1, col2 | YES | Use LogicalName (lowercase) |
10811081| SELECT * | YES (*) | SDK auto-expands via list_columns() |
1082- | WHERE =, !=, >, <, LIKE, IN | YES | |
1082+ | WHERE =, !=, >, <, LIKE, IN | YES | |
10831083| AND, OR, parentheses | YES | Full boolean logic |
10841084| NOT IN, NOT LIKE | YES | |
10851085| IS NULL, IS NOT NULL, BETWEEN | YES | |
@@ -1090,7 +1090,7 @@ def _run_examples(client):
10901090| DISTINCT / DISTINCT TOP | YES | Works with JOINs too |
10911091| COUNT, SUM, AVG, MIN, MAX | YES | All 5 standard aggregates |
10921092| GROUP BY | YES | Server-side grouping |
1093- | INNER JOIN | YES | 8 + tables tested (no depth limit) |
1093+ | INNER JOIN | YES | 15 + tables tested (no depth limit) |
10941094| LEFT JOIN | YES | |
10951095| Self JOIN | YES | Same table with different aliases |
10961096| SQL -> DataFrame | YES | client.dataframe.sql(query) |
@@ -1099,10 +1099,10 @@ def _run_examples(client):
10991099| Audit trail (createdby, etc.) | YES | JOIN to systemuser |
11001100| SQL read -> DF write-back | YES | dataframe.sql() + .update()/.create() |
11011101| SQL column discovery | YES | query.sql_columns() / sql_select() |
1102- | SQL JOIN discovery | YES | query.sql_joins() / sql_join() |
1103- | OData column discovery | YES | query.odata_select() |
1104- | OData expand discovery | YES | query.odata_expands() / odata_expand() |
1105- | OData bind builder | YES | query.odata_bind() |
1102+ | SQL JOIN discovery | YES | query.sql_joins() / sql_join() |
1103+ | OData column discovery | YES | query.odata_select() |
1104+ | OData expand discovery | YES | query.odata_expands() / odata_expand() |
1105+ | OData bind builder | YES | query.odata_bind() |
11061106+-------------------------------+----------+----------------------------------------+
11071107| HAVING | NO | Filter before GROUP BY |
11081108| Subqueries / CTE | NO | Chain multiple SQL calls |
0 commit comments