Skip to content

Commit

Permalink
line feed for reading (sql-machine-learning#323)
Browse files Browse the repository at this point in the history
* line feed for reading
  • Loading branch information
yake0176 authored and llxxxll committed Apr 30, 2019
1 parent 0bce52a commit 6a0f71d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion doc/database_abstraction_layer.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ Fortunately, as SQLFlow forwards the above parts to the engine, it doesn't have
To verify the semantics of users' inputs, SQLFlow needs to retrieve the schema of tables. For example, the input might be

```SQL
SELECT name, age, income FROM employee TRAIN DNNRegressor WITH hidden_layers=[10,50,10] COLUMN name, agee LABEL income;
SELECT
name,
age,
income
FROM employee TRAIN DNNRegressor
WITH hidden_layers=[10,50,10]
COLUMN name, agee LABEL income;
```

In the above example, the user misspelled the field name `age` in the COLUMN clause as "agee". SQLFlow must be able to find that out.
Expand Down

0 comments on commit 6a0f71d

Please sign in to comment.