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: docs/src/develop.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,27 +2,28 @@
2
2
3
3
Included with the codebase is the recommended development environment configured using [DevContainer](https://containers.dev/).
4
4
5
-
## Launch Development Environment
5
+
## Launch Environment
6
6
7
7
Here are some options that provide a great developer experience:
8
8
9
9
-**Cloud-based IDE**: (*recommended*)
10
10
- Launch using [GitHub Codespaces](https://github.com/features/codespaces) using the option `Create codespace on master` in the codebase repository on your fork.
11
11
- Build time for a 2-Core codespace is **~5m**. This is done infrequently and cached for convenience.
12
12
- Start time for a 2-Core codespace is **~1m**. This will pull the built codespace from cache when you need it.
13
-
- Tip: GitHub auto names the codespace but you can rename the codespace so that it is easier to identify later.
13
+
-*Tip*: GitHub auto names the codespace but you can rename the codespace so that it is easier to identify later.
14
14
-**Local IDE**:
15
15
- Ensure you have [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
16
16
- Ensure you have [Docker](https://docs.docker.com/get-docker/)
17
17
- Ensure you have [VSCode](https://code.visualstudio.com/)
18
18
- Install the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
19
19
-`git clone` the codebase repository and open it in VSCode
20
20
- Use the `Dev Containers extension` to `Reopen in Container` (More info in the `Getting started` included with the extension)
21
-
- Your environment will finish loading once the file tree is populated and the terminal become active
21
+
22
+
You will know your environment has finished loading once you see a terminal open related to `Running postStartCommand` with a final message: `Done`.
22
23
23
24
## Features
24
25
25
-
Once you've successfully launched the development environment, you'll be able to take advantage of our developer tooling to help improve productivity.
26
+
Once you've successfully launched the development environment, you'll be able to take advantage of our developer tooling to help improve productivity and quality.
Copy file name to clipboardExpand all lines: docs/src/tutorials/json.ipynb
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,18 @@
9
9
"# Using the `json` type"
10
10
]
11
11
},
12
+
{
13
+
"cell_type": "markdown",
14
+
"id": "62450023",
15
+
"metadata": {},
16
+
"source": [
17
+
"> ⚠️ Note the following before using the `json` type\n",
18
+
"> - Supported only for MySQL >= 8.0 when [JSON_VALUE](https://dev.mysql.com/doc/refman/8.0/en/json-search-functions.html#function_json-value) introduced.\n",
19
+
"> - Equivalent Percona is fully-compatible.\n",
20
+
"> - MariaDB is not supported since [JSON_VALUE](https://mariadb.com/kb/en/json_value/#syntax) does not allow type specification like MySQL's.\n",
0 commit comments