Diff for /sql/pgsql/parser3pgsql.C between versions 1.9 and 1.11

version 1.9, 2002/12/09 12:36:19 version 1.11, 2003/01/15 10:55:38
Line 186  public: Line 186  public:
                                         *to++='\''; result++;                                          *to++='\''; result++;
                                         break;                                          break;
                                 case '\\': // "\" -> "\\"                                  case '\\': // "\" -> "\\"
                                         *to++='\''; result++;                                          *to++='\\'; result++;
                                         break;                                          break;
                                 }                                  }
                                 *to++=*from++;                                  *to++=*from++;
Line 448  private: // conn client library funcs Line 448  private: // conn client library funcs
 private: // conn client library funcs linking  private: // conn client library funcs linking
   
         const char *dlink(const char *dlopen_file_spec) {          const char *dlink(const char *dlopen_file_spec) {
                   if(lt_dlinit())
                           return lt_dlerror();
         lt_dlhandle handle=lt_dlopen(dlopen_file_spec);          lt_dlhandle handle=lt_dlopen(dlopen_file_spec);
         if(!handle)          if(!handle)
                         return "can not open the dynamic link module";                          return "can not open the dynamic link module";

Removed from v.1.9  
changed lines
  Added in v.1.11


E-mail: