ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/PApp-SQL/SQL.xs
(Generate patch)

Comparing PApp-SQL/SQL.xs (file contents):
Revision 1.29 by root, Sat Oct 7 15:54:35 2017 UTC vs.
Revision 1.30 by root, Mon Jun 24 19:24:01 2019 UTC

182 U32 hash = 2166136261U; 182 U32 hash = 2166136261U;
183 183
184 hash = (hash ^ (U32)dbh) * 16777619U; 184 hash = (hash ^ (U32)dbh) * 16777619U;
185 hash = (hash ^ l) * 16777619U; 185 hash = (hash ^ l) * 16777619U;
186 186
187 /* start hashing at char 8, as this skips the "select " prefix */
187 for (i = 7; i < l; i += i >> 2) 188 for (i = 7; i < l; i += i >> 2)
188 hash = (hash ^ b [i]) * 16777619U; 189 hash = (hash ^ b [i]) * 16777619U;
189 190
190 return hash; 191 return hash;
191} 192}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines