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
Copy file name to clipboardExpand all lines: packages/bigframes/specs/bigframes-bigquery-contributing.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ The goal of the [bigframes.bigquery APIs](https://dataframes.bigquery.dev/refere
4
4
is to provide the simplest possible mapping from BigQuery (GoogleSQL)
5
5
[functions](https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/functions-all) and
6
6
[operations](https://docs.cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax) to Python. "Simplest" is somewhat ambiguous
7
-
though, when it comes to the types involved an behaviors, so this document aims to expand on that vision with specific examples.
7
+
though, when it comes to the types involved and behaviors, so this document aims to expand on that vision with specific examples.
8
8
9
9
10
10
## SQL and BigFrames expression types
@@ -237,7 +237,7 @@ Arguments in Python can be one of:
237
237
* Keyword-only
238
238
* All other arguments should be keyword-only. Use `, * ,` Python syntax to achieve this.
239
239
240
-
For optional parameters, use an optional sentinel (see: https://stackoverflow.com/a/76606310/101923) and omit the value from the generated SQL if the user doesn't explicitly provide one. This ensures that an explicit NULL / None value can be passed in.\
240
+
For optional parameters, use an optional sentinel (see: https://stackoverflow.com/a/76606310/101923) and omit the value from the generated SQL if the user doesn't explicitly provide one. This ensures that an explicit NULL / None value can be passed in.
0 commit comments