Skip to content

Commit 93b026c

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 57b689d commit 93b026c

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

docs/scalardb-analytics/design.mdx

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ ScalarDB Analytics supports a wide range of data types across different data sou
8181
- `BOOLEAN`
8282
- `DATE`
8383
- `TIME`
84-
- `DATETIME`
8584
- `TIMESTAMP`
85+
- `TIMESTAMPTZ`
8686
- `DURATION`
8787
- `INTERVAL`
8888

@@ -246,7 +246,6 @@ The native data types of the underlying data sources are mapped to the data type
246246
| `BLOB` | `BLOB` |
247247
| `DATE` | `DATE` |
248248
| `TIME` | `TIME` |
249-
| `DATETIME` | `DATETIME` |
250249
| `TIMESTAMP` | `TIMESTAMP` |
251250
| `TIMESTAMPTZ` | `TIMESTAMPTZ` |
252251
</TabItem>
@@ -270,9 +269,9 @@ The native data types of the underlying data sources are mapped to the data type
270269
| `time` | `TIME` |
271270
| `time with time zone` | `TIME` |
272271
| `time without time zone` | `TIME` |
273-
| `timestamp` | `DATETIME` |
274-
| `timestamp with time zone` | `TIMESTAMP` |
275-
| `timestamp without time zone` | `DATETIME` |
272+
| `timestamp` | `TIMESTAMP` |
273+
| `timestamp with time zone` | `TIMESTAMPTZ` |
274+
| `timestamp without time zone` | `TIMESTAMP` |
276275
</TabItem>
277276
<TabItem value="mysql" label="MySQL">
278277
| **MySQL Data Type** | **ScalarDB Analytics Data Type** |
@@ -301,8 +300,8 @@ The native data types of the underlying data sources are mapped to the data type
301300
| `blob` | `BLOB` |
302301
| `date` | `DATE` |
303302
| `time` | `TIME` |
304-
| `datetime` | `DATETIME` |
305-
| `timestamp` | `TIMESTAMP` |
303+
| `datetime` | `TIMESTAMP` |
304+
| `timestamp` | `TIMESTAMPTZ` |
306305
</TabItem>
307306
<TabItem value="oracle" label="Oracle">
308307
| **Oracle Data Type** | **ScalarDB Analytics Data Type** |
@@ -321,9 +320,9 @@ The native data types of the underlying data sources are mapped to the data type
321320
| `BLOB` | `BLOB` |
322321
| `BOOLEAN` | `BOOLEAN` |
323322
| `DATE` | `DATE` |
324-
| `TIMESTAMP` | `TIMESTAMP` |
325-
| `TIMESTAMP WITH TIME ZONE` | `TIMESTAMP` |
326-
| `TIMESTAMP WITH LOCAL TIME ZONE` | `DATETIME` |
323+
| `TIMESTAMP` | `TIMESTAMPTZ` |
324+
| `TIMESTAMP WITH TIME ZONE` | `TIMESTAMPTZ` |
325+
| `TIMESTAMP WITH LOCAL TIME ZONE` | `TIMESTAMP` |
327326
| `RAW` | `BLOB` |
328327
</TabItem>
329328
<TabItem value="sql-server" label="SQL Server">
@@ -348,10 +347,10 @@ The native data types of the underlying data sources are mapped to the data type
348347
| `text` | `TEXT` |
349348
| `date` | `DATE` |
350349
| `time` | `TIME` |
351-
| `datetime` | `DATETIME` |
352-
| `datetime2` | `DATETIME` |
353-
| `smalldatetime` | `DATETIME` |
354-
| `datetimeoffset` | `TIMESTAMP` |
350+
| `datetime` | `TIMESTAMP` |
351+
| `datetime2` | `TIMESTAMP` |
352+
| `smalldatetime` | `TIMESTAMP` |
353+
| `datetimeoffset` | `TIMESTAMPTZ` |
355354
</TabItem>
356355
<TabItem value="dynamodb" label="DynamoDB">
357356
| **DynamoDB Data Type** | **ScalarDB Analytics Data Type** |

docs/scalardb-analytics/run-analytical-queries.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,8 @@ ScalarDB Analytics maps data types in its catalog to Spark data types. The follo
417417
| `BOOLEAN` | `Boolean` |
418418
| `DATE` | `Date` |
419419
| `TIME` | `TimestampNTZ` |
420-
| `DATETIME` | `TimestampNTZ` |
421-
| `TIMESTAMP` | `Timestamp` |
420+
| `TIMESTAMP` | `TimestampNTZ` |
421+
| `TIMESTAMPTZ` | `Timestamp` |
422422
| `DURATION` | `CalendarInterval` |
423423
| `INTERVAL` | `CalendarInterval` |
424424

0 commit comments

Comments
 (0)