NAMEDATALEN of 64.
Kris Jurka
Table, column, type, function, and view names are stored in system
tables in columns of type Name. Name is a fixed-length,
null-terminated type of NAMEDATALEN bytes. (The default value for
- NAMEDATALEN is 32 bytes.)
+ NAMEDATALEN is 64 bytes.)
typedef struct nameData
{
char data[NAMEDATALEN];
Table, column, type, function, and view names are stored in
system tables in columns of type Name. Name is a
fixed-length, null-terminated type of NAMEDATALEN bytes.
- (The default value for NAMEDATALEN is 32 bytes.)
+ (The default value for NAMEDATALEN is 64 bytes.)
typedef struct nameData
{
--
-- NAME
--- all inputs are silently truncated at NAMEDATALEN (32) characters
+-- all inputs are silently truncated at NAMEDATALEN-1 (63) characters
--
-- fixed-length by reference
SELECT name 'name string' = name 'name string' AS "True";
--
-- NAME
--- all inputs are silently truncated at NAMEDATALEN (32) characters
+-- all inputs are silently truncated at NAMEDATALEN-1 (63) characters
--
-- fixed-length by reference