Compare commits

...

2 Commits

Author SHA1 Message Date
vaclavt
aca52899fb Merge branch 'master' of http://gitea.stocksriddle.one/vaclavt/usql 2022-03-08 17:43:13 +01:00
vaclavt
320b713eb2 code beautification 2022-03-08 17:43:03 +01:00
2 changed files with 28 additions and 34 deletions

View File

@@ -5,18 +5,12 @@ compare in row.cpp shoud take into account m_visible
- create local_install.sh
- set xxx - without value to reset to default value
- escape " in save csv
- is null | is not null
- coalesce, date functions now, add_date; string functions rtrim, ltrim, rpad, lpad; math function round
- coalesce, date functions now; string functions rtrim, ltrim, rpad, lpad; math function round
- add pipe | concatenation
- add support for 1_000_000 numbers
- expand_asterix_char should support multiple and everywhere *
- support for reusing space of deleted rows
- support for uniqueue indexes (primary key)
- support for indexes
- add drop m_index
- add drop m_index
- support for joining
- add const wherever should be
- use static methods where posible
- use references where pointer cannot be nullptr

View File

@@ -3,7 +3,7 @@
namespace usql {
// TOOD handle premature eof
// TOOD handle premature eof
std::string column_type_name(const ColumnType type) {
if (type == ColumnType::integer_type) return "integer_type";