-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace lang extensions by builtin blocktype definitions
- Loading branch information
1 parent
ff1dacb
commit ea637aa
Showing
140 changed files
with
512 additions
and
4,021 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
Interprets an input file as a csv-file containing string-values delimited by `delimiter` and outputs a `Sheet`. | ||
|
||
@example Interprets an input file as a csv-file containing string-values delimited by `;` and outputs `Sheet`. | ||
block AgencyCSVInterpreter oftype CSVInterpreter { | ||
delimiter: ";"; | ||
} | ||
*/ | ||
builtin blocktype CSVInterpreter { | ||
input default oftype TextFile; | ||
output default oftype Sheet; | ||
|
||
// The delimiter for values in the CSV file. | ||
property delimiter oftype text: ','; | ||
// The enclosing character that may be used for values in the CSV file. | ||
property enclosing oftype text: ''; | ||
// The character to escape enclosing characters in values. | ||
property enclosingEscape oftype text: ''; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
74 changes: 0 additions & 74 deletions
74
libs/extensions/rdbms/lang/src/lib/postgres-loader-meta-information.ts
This file was deleted.
Oops, something went wrong.
55 changes: 0 additions & 55 deletions
55
libs/extensions/rdbms/lang/src/lib/sqlite-loader-meta-information.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.