mirror of https://github.com/apache/druid.git
fixed typo, added note on matching schema requirement for unioned data sources
This commit is contained in:
parent
34a6f7f7ca
commit
de7fb5a690
|
@ -12,7 +12,7 @@ The table data source is the most common type. It's represented by a string, or
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"type": "table",
|
"type": "table",
|
||||||
"name": <string_value>
|
"name": "<string_value>"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -22,10 +22,13 @@ This data source unions two or more table data sources.
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"type": "union",
|
"type": "union",
|
||||||
"dataSources": ["<string_value1>", "<string_value2>", "<string_value3>", ... ]]
|
"dataSources": ["<string_value1>", "<string_value2>", "<string_value3>", ... ]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note that the data sources being unioned should have the same schema.
|
||||||
|
|
||||||
|
|
||||||
### Query Data Source
|
### Query Data Source
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue