sql: use 'varbinary' as a name of type instead of 'blob'
We are going to introduce new column type 'VARBINARY', which allows to store values with MP_BIN msgpack format. On the other hand, now it is also possible to meet this type: all literals in form of x'...' are supposed to be inserted into SCALAR column type exactly with MP_BIN encoding. Prior to this moment type of such values (encoded as MP_BIN) was called 'blob'. Thus, let's fix all visible to user messages using 'varbinary' name of type instead of 'blob'.
Showing
- src/box/lua/lua_sql.c 1 addition, 1 deletionsrc/box/lua/lua_sql.c
- src/box/sql/func.c 7 additions, 6 deletionssrc/box/sql/func.c
- src/box/sql/vdbe.c 2 additions, 2 deletionssrc/box/sql/vdbe.c
- src/box/sql/vdbeapi.c 8 additions, 8 deletionssrc/box/sql/vdbeapi.c
- src/box/sql/vdbeaux.c 1 addition, 1 deletionsrc/box/sql/vdbeaux.c
- src/box/sql/vdbemem.c 4 additions, 4 deletionssrc/box/sql/vdbemem.c
- test/sql-tap/cast.test.lua 2 additions, 2 deletionstest/sql-tap/cast.test.lua
- test/sql-tap/func.test.lua 1 addition, 1 deletiontest/sql-tap/func.test.lua
- test/sql-tap/lua_sql.test.lua 2 additions, 2 deletionstest/sql-tap/lua_sql.test.lua
- test/sql-tap/position.test.lua 8 additions, 8 deletionstest/sql-tap/position.test.lua
- test/sql/types.result 15 additions, 15 deletionstest/sql/types.result
Loading
Please register or sign in to comment