You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(connectors): update Looker Studio readmes for Columnar and Data API
- Change SDK language from JavaScript to Node.js in both readmes.
- Clarify prerequisites and instructions in the Columnar readme by removing references to Collections.
- Update the Data API readme to enhance clarity in SQL++ query descriptions and schema inference details.
Files:
- tutorial/markdown/connectors/looker-studio/dataapi/readme.md
- tutorial/markdown/connectors/looker-studio/columnar/readme.md
- Custom N1QL Query: Paste any valid SQL++ statement. Include a `LIMIT` for performance.
72
+
- Custom SQL++ Query: Paste any valid SQL++ statement. Include a `LIMIT` for performance.
73
73
74
74
What runs:
75
75
76
-
- Schema inference first attempts: `INFER (<yourQuery [LIMIT 100if absent]>) WITH {"sample_size": 10000, "num_sample_values": 2, "similarity_metric": 0.1}`
76
+
- Schema inference first attempts to run `INFER` on your query (a `LIMIT 100` is added if absent): `INFER (<yourQuery>) WITH {"sample_size": 10000, "num_sample_values": 2, "similarity_metric": 0.1}`
77
77
- If that fails, it runs your query with `LIMIT 1` and infers the schema from one sample document.
0 commit comments