~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

Moved service stuff into plugin/

Show diffs side-by-side

added added

removed removed

Lines of Context:
3225
3225
function_call_generic:
3226
3226
          IDENT_sys '('
3227
3227
          {
3228
 
            plugin::Registry &plugins= plugin::Registry::singleton();
3229
 
            const plugin::Function *udf= plugins.function.get($1.str, $1.length);
 
3228
            const plugin::Function *udf= plugin::Function::get($1.str, $1.length);
3230
3229
 
3231
3230
            /* Temporary placing the result of getFunction in $3 */
3232
3231
            $<udf>$= udf;