Skip to content

Commit

Permalink
Merge pull request #130 from sentrysoftware/feature/issue-129-rename-…
Browse files Browse the repository at this point in the history
…sql-type-to-localsql

Issue #129: Rename sql type to LocalSql
  • Loading branch information
NassimBtk authored Oct 10, 2024
2 parents 487ba96 + 32101ba commit 931a437
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 32 deletions.
6 changes: 3 additions & 3 deletions src/site/markdown/develop/connector.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,10 +329,10 @@ monitors:
concatStart: # <string>
concatEnd: # <string>
computes: <compute-object-array>
# SQL Source
<sql-sourceKey>: # <source-object>
# Local SQL Source
<localSql-sourceKey>: # <source-object>
<sourceKey>:
type: sql
type: localSql
tables: <sqltable-object-array>
- source: <string>
alias: <string>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
keywords: sql, h2, database
description: The SQL source allows to perform SQL queries on other Sources.

# SQL Source

```yaml
connector:
# ...
pre: # <object>
<sourceKey>: # <source-object>

monitors:
<monitorType>: # <object>
<job>: # <object>
sources: # <object>
<sourceKey>:
type: sql
tables: <sqltable-object-array>
- source: <string>
alias: <string>
columns: <sqlcolumn-object-array>
- name: <string>
number: <integer>
type: <string>
query: <string>
computes: <compute-object-array>
```
keywords: sql, h2, database
description: The Local SQL source allows to perform SQL queries on other Sources.

# Local SQL Source

```yaml
connector:
# ...
pre: # <object>
<sourceKey>: # <source-object>

monitors:
<monitorType>: # <object>
<job>: # <object>
sources: # <object>
<sourceKey>:
type: localSql
tables: <sqltable-object-array>
- source: <string>
alias: <string>
columns: <sqlcolumn-object-array>
- name: <string>
number: <integer>
type: <string>
query: <string>
computes: <compute-object-array>
```
2 changes: 1 addition & 1 deletion src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
<item name="WMI" href="develop/sources/wmi.html" />
<item name="Static (Constant)" href="develop/sources/static.html" />
<item name="Copy (Duplicate)" href="develop/sources/copy.html" />
<item name="SQL" href="develop/sources/sql.html" />
<item name="Local SQL" href="develop/sources/local-sql.html" />
<item name="Pre-Sources" href="develop/sources/pre.html" />
</item>
<item name="Computes" href="develop/computes/index.html" >
Expand Down

0 comments on commit 931a437

Please sign in to comment.