pranadb
pranadb copied to clipboard
Remove INT type?
All int types are internally stored as int64. We don't have a requirement to support every SQL type and do everything that MySQL can do (i.e. we are not trying to be a drop in replacement for MySQL like TiDB), so we don't need to support every SQL type - we are a subset. However we are still a database, and we don't want to create yet another "SQL-like" language (This is one of the biggest issues with ksqlDB amongst others imo) - one of the key design goals of Prana is to be immediately familiar to anyone who has used SQL before. Considering that's ok to be a subset, should we drop the INT type?