Skip to content

Commit

Permalink
#29: added intellij settings to .gitignore and wrote system requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaSergienko committed Feb 20, 2019
1 parent 7e5b884 commit b5117b4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@
**/*.bak
**/*.swp
**/*.log
**/*.out
**/*.out

# Intellij
.idea
# Intellij recommends to share iml files, however, better don't share files which might be outdated
*.iml
19 changes: 19 additions & 0 deletions doc/system_requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,25 @@ Covers:

Needs: dsn

### Data Definition Language (DDL)

#### CREATE Statements
`req~create-statements~1`

ESB supports the following create statement:

create-statement = "CREATE TABLE" table-reference table-element-list

table-reference = table [AS table-alias]

table-element-list = L-BRACKET table-element [*( COMMA table-element )] R-BRACKET

Covers:

* [feat~statement-definition~1](#statement-definition)

Needs: dsn

### Data Manipulation Language (DML)

#### INSERT Statements
Expand Down

0 comments on commit b5117b4

Please sign in to comment.