~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_compress.result

Merged in latest plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
drop table t1;
117
117
End of 5.0 tests
118
118
select compress();
119
 
ERROR 42000: Incorrect parameters in the call to native function 'compress'
 
119
ERROR 42000: Incorrect parameter count in the call to native function 'compress'
120
120
select uncompress();
121
 
ERROR 42000: Incorrect parameters in the call to native function 'uncompress'
 
121
ERROR 42000: Incorrect parameter count in the call to native function 'uncompress'
122
122
select uncompressed_length();
123
 
ERROR 42000: Incorrect parameters in the call to native function 'uncompressed_length'
 
123
ERROR 42000: Incorrect parameter count in the call to native function 'uncompressed_length'
124
124
select compress('aeou', 'aoeu', 'aoeu');
125
 
ERROR 42000: Incorrect parameters in the call to native function 'compress'
 
125
ERROR 42000: Incorrect parameter count in the call to native function 'compress'
126
126
select uncompress('aoenuthn', 'aoeu');
127
 
ERROR 42000: Incorrect parameters in the call to native function 'uncompress'
 
127
ERROR 42000: Incorrect parameter count in the call to native function 'uncompress'
128
128
select uncompressed_length('aneohusa','naohuntah','onh');
129
 
ERROR 42000: Incorrect parameters in the call to native function 'uncompressed_length'
 
129
ERROR 42000: Incorrect parameter count in the call to native function 'uncompressed_length'