HyriseSQLParser/src/sql
javrucebo daf8fe7a45 Changing Grammar to extend CASE WHEN statement:
- allow multiple WHEN statements
- allow for syntax like `CASE x WHEN 1 THEN 2 WHEN 3 THEN 4 ELSE 5 END`
NOTE: This changes also the way the CASE operator is stored:
- CASE [expr] exprList [ELSE expr2] END
- exprList holds each of the WHEN statements with:
  expr := WHEN, expr2 := THEN

Added also tests in test/select_tests.cpp
and adapted the existing one to reflect the new storage
2018-01-16 00:45:55 +01:00
..
CreateStatement.h 1. add scheme name support for tables names 2017-09-13 17:37:31 +08:00
DeleteStatement.h 1. add scheme name support for tables names 2017-09-13 17:37:31 +08:00
DropStatement.h 1. add scheme name support for tables names 2017-09-13 17:37:31 +08:00
ExecuteStatement.h Documentation & Result Move Constructor (#39) 2017-04-21 16:15:07 +02:00
Expr.cpp Changing Grammar to extend CASE WHEN statement: 2018-01-16 00:45:55 +01:00
Expr.h Changing Grammar to extend CASE WHEN statement: 2018-01-16 00:45:55 +01:00
ImportStatement.h 1. add scheme name support for tables names 2017-09-13 17:37:31 +08:00
InsertStatement.h 1. add scheme name support for tables names 2017-09-13 17:37:31 +08:00
PrepareStatement.cpp Add Hints per statement to SQL syntax. 2017-06-06 22:15:19 +02:00
PrepareStatement.h Prepared Statements (#43) 2017-05-29 16:22:13 +02:00
SelectStatement.h Documentation & Result Move Constructor (#39) 2017-04-21 16:15:07 +02:00
ShowStatement.h 1. add scheme name support for tables names 2017-09-13 17:37:31 +08:00
SQLStatement.cpp Add Hints per statement to SQL syntax. 2017-06-06 22:15:19 +02:00
SQLStatement.h Add support for SHOW TABLES statement 2017-08-23 23:56:16 +02:00
statements.cpp 1. add scheme name support for tables names 2017-09-13 17:37:31 +08:00
statements.h Add support for SHOW TABLES statement 2017-08-23 23:56:16 +02:00
Table.h 1. add scheme name support for tables names 2017-09-13 17:37:31 +08:00
UpdateStatement.h Documentation & Result Move Constructor (#39) 2017-04-21 16:15:07 +02:00