<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <base href="https://hibernate.atlassian.net" />
        <title>Message Title</title>
    </head>
    <body class="jira" style="color: #333; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.429">
        <table id="background-table" cellpadding="0" cellspacing="0" width="100%" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; background-color: #f5f5f5; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt">
            <!-- header here -->
            <tr>
                <td id="header-pattern-container" style="padding: 0px; border-collapse: collapse; padding: 10px 20px">
                    <table id="header-pattern" cellspacing="0" cellpadding="0" border="0" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt">
                        <tr>
                            <td id="header-avatar-image-container" valign="top" style="padding: 0px; border-collapse: collapse; vertical-align: top; width: 32px; padding-right: 8px"> <img id="header-avatar-image" class="image_fix" src="https://secure.gravatar.com/avatar/71981c9f6b89bada08afac7477ac2dec?d=mm&amp;s=48" height="32" width="32" border="0" style="border-radius: 3px; vertical-align: top" />
                            </td>
                            <td id="header-text-container" valign="middle" style="padding: 0px; border-collapse: collapse; vertical-align: middle; font-family: Arial, sans-serif; font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; mso-text-raise: 1px"> <a class="user-hover" rel="crancran" id="email_crancran" href="https://hibernate.atlassian.net/secure/ViewProfile.jspa?name=crancran" style="color:#6c797f;; color: #3b73af; text-decoration: none">Chris Cranford</a> <strong>edited a comment</strong> on an issue
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr>
                <td id="email-content-container" style="padding: 0px; border-collapse: collapse; padding: 0 20px">
                    <table id="email-content-table" cellspacing="0" cellpadding="0" border="0" width="100%" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-spacing: 0; border-collapse: separate">
                        <tr>
                            <!-- there needs to be content in the cell for it to render in some clients -->
                            <td class="email-content-rounded-top mobile-expand" style="padding: 0px; border-collapse: collapse; color: #fff; padding: 0 15px 0 16px; height: 15px; background-color: #fff; border-left: 1px solid #ccc; border-top: 1px solid #ccc; border-right: 1px solid #ccc; border-bottom: 0; border-top-right-radius: 5px; border-top-left-radius: 5px; height: 10px; line-height: 10px; padding: 0 15px 0 16px; mso-line-height-rule: exactly">
                                &nbsp;
                            </td>
                        </tr>
                        <tr>
                            <td id="text-paragraph-pattern-top" class="email-content-main mobile-expand  comment-top-special-margin comment-top-pattern" style="padding: 0px; border-collapse: collapse; border-left: 1px solid #ccc; border-right: 1px solid #ccc; border-top: 0; border-bottom: 0; padding: 0 15px 15px 16px; background-color: #fff; border-bottom: 1px solid #ccc; border-bottom: none; padding-bottom: 0px">
                                <table class="text-paragraph-pattern" cellspacing="0" cellpadding="0" border="0" width="100%" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-family: Arial, sans-serif; font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; mso-text-raise: 2px">
                                    <tr>
                                        <td class="text-paragraph-pattern-container mobile-resize-text" style="padding: 0px; border-collapse: collapse; padding: 0px; padding-left: 16px; padding-bottom: 10px; border-left: 1px solid #ccc; padding-top: 10px"> <span class="diffcontext">Tested&nbsp;on&nbsp;Oracle&nbsp;11g&nbsp;and&nbsp;as&nbsp;I&nbsp;expected,&nbsp;I&nbsp;could&nbsp;no&nbsp;reproduce&nbsp;the&nbsp;stalling&nbsp;behavior.&nbsp;&nbsp;An&nbsp;interesting&nbsp;tidbit&nbsp;is&nbsp;that&nbsp;Oracle&nbsp;generates&nbsp;a&nbsp;SQL&nbsp;statement&nbsp;like&nbsp;the&nbsp;following:<br />{code}<br />WHERE&nbsp;(ITEM_ID,PLANT_ID)&nbsp;IN&nbsp;((?,?),(?,?),(?,?),...)<br />{code}<br />which&nbsp;the&nbsp;equivalent&nbsp;SQL&nbsp;Server's&nbsp;clause&nbsp;is:<br />{code}<br />WHERE&nbsp;((ITEM_ID=?&nbsp;AND&nbsp;PLANT_ID=?)&nbsp;OR&nbsp;(ITEM_ID=?&nbsp;AND&nbsp;PLANT_ID=?)&nbsp;OR&nbsp;...&nbsp;(ITEM_ID=?&nbsp;AND&nbsp;PLANT_ID=?))<br />{code}<br />I&nbsp;am&nbsp;curious&nbsp;if&nbsp;the&nbsp;following&nbsp;might&nbsp;be&nbsp;a&nbsp;more&nbsp;efficient&nbsp;SQL&nbsp;Server&nbsp;equivalent&nbsp;on&nbsp;2008&nbsp;and&nbsp;up:<br />{code}<br />SELECT&nbsp;*&nbsp;<br />&nbsp;&nbsp;&nbsp;FROM&nbsp;EntityClass&nbsp;AS&nbsp;T<br />&nbsp;&nbsp;WHERE&nbsp;EXISTS&nbsp;(<br />&nbsp;&nbsp;&nbsp;&nbsp;SELECT&nbsp;*<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FROM&nbsp;(VALUES&nbsp;(?,?),&nbsp;(?,?),&nbsp;(?,?),&nbsp;(?,?))&nbsp;AS&nbsp;V(ITEM_ID,PLANT_ID)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WHERE&nbsp;T.ITEM_ID&nbsp;=&nbsp;V.ITEM_ID<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AND&nbsp;T.PLANT_ID&nbsp;=&nbsp;V.PLANT_ID<br />&nbsp;&nbsp;)<br />{code}<br />This&nbsp;avoids&nbsp;the&nbsp;'OR'&nbsp;operator&nbsp;and&nbsp;from&nbsp;what&nbsp;I&nbsp;have&nbsp;understood&nbsp;performs&nbsp;better&nbsp;but&nbsp;have&nbsp;yet&nbsp;to&nbsp;test&nbsp;it.&nbsp;&nbsp;-I'm&nbsp;trying&nbsp;to&nbsp;see&nbsp;if&nbsp;there&nbsp;is&nbsp;any&nbsp;logical&nbsp;way&nbsp;to&nbsp;create&nbsp;such&nbsp;an&nbsp;EXISTS&nbsp;expression&nbsp;but&nbsp;so&nbsp;far&nbsp;I&nbsp;haven't&nbsp;found&nbsp;one&nbsp;yet.-<br /><br />So&nbsp;I&nbsp;created&nbsp;a&nbsp;query&nbsp;above&nbsp;using&nbsp;a&nbsp;simple&nbsp;{{SQLQuery}}&nbsp;to&nbsp;at&nbsp;least&nbsp;test&nbsp;the&nbsp;timing&nbsp;compared&nbsp;to&nbsp;the&nbsp;normal&nbsp;generated&nbsp;SQL&nbsp;and&nbsp;the&nbsp;performance&nbsp;difference&nbsp;was&nbsp;amazing.&nbsp;&nbsp;You're&nbsp;talking&nbsp;less&nbsp;than&nbsp;100ms&nbsp;response&nbsp;time&nbsp;versus&nbsp;6-7&nbsp;seconds&nbsp;where&nbsp;the&nbsp;above&nbsp;doesn't&nbsp;have&nbsp;any&nbsp;stalls&nbsp;in&nbsp;streaming&nbsp;the&nbsp;results&nbsp;to&nbsp;the&nbsp;client.<br /></span> <span class="diffaddedchars" style="background-color:#ddfade;"><br />Is&nbsp;there&nbsp;anyway&nbsp;that&nbsp;the&nbsp;Dialect&nbsp;for&nbsp;SQL&nbsp;Server&nbsp;can&nbsp;be&nbsp;inspected&nbsp;and&nbsp;should&nbsp;it&nbsp;be&nbsp;2008&nbsp;or&nbsp;higher,&nbsp;the&nbsp;above&nbsp;type&nbsp;of&nbsp;SQL&nbsp;gets&nbsp;generated&nbsp;rather&nbsp;than&nbsp;using&nbsp;the&nbsp;{{Disjunction}}&nbsp;logic&nbsp;which&nbsp;only&nbsp;seems&nbsp;to&nbsp;perform&nbsp;decently&nbsp;for&nbsp;a&nbsp;small&nbsp;{{maxResults}}&nbsp;value.</span>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                        <tr>
                            <td class="email-content-main mobile-expand " style="padding: 0px; border-collapse: collapse; border-left: 1px solid #ccc; border-right: 1px solid #ccc; border-top: 0; border-bottom: 0; padding: 0 15px 15px 16px; background-color: #fff">
                                <table id="page-title-pattern" cellspacing="0" cellpadding="0" border="0" width="100%" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt">
                                    <tr>
                                        <td id="page-title-pattern-first-line" style="padding: 0px; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px; padding-top: 16px"> <a href="https://hibernate.atlassian.net/browse/HSEARCH" style="color: #3b73af; text-decoration: none">Hibernate Search</a> / <a href="https://hibernate.atlassian.net/browse/HSEARCH-1367" style="color: #3b73af; text-decoration: none"><img src="https://hibernate.atlassian.net/images/icons/issuetypes/bug.png" height="16" width="16" border="0" align="absmiddle" alt="Bug" /></a> <a href="https://hibernate.atlassian.net/browse/HSEARCH-1367" style="color: #3b73af; text-decoration: none">HSEARCH-1367</a>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td style="vertical-align: top;; padding: 0px; border-collapse: collapse; padding-right: 5px; font-size: 20px; line-height: 30px; mso-line-height-rule: exactly" id="page-title-pattern-header-container"> <span id="page-title-pattern-header" style="font-family: Arial, sans-serif; padding: 0; font-size: 20px; line-height: 30px; mso-text-raise: 2px; mso-line-height-rule: exactly; vertical-align: middle"> <a href="https://hibernate.atlassian.net/browse/HSEARCH-1367" style="color: #3b73af; text-decoration: none">FullTextQuery with max results of 250 takes considerable time to load entities</a> </span>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                        <tr>
                            <td class="email-content-main mobile-expand " style="padding: 0px; border-collapse: collapse; border-left: 1px solid #ccc; border-right: 1px solid #ccc; border-top: 0; border-bottom: 0; padding: 0 15px 15px 16px; background-color: #fff">
                                <table id="actions-pattern" cellspacing="0" cellpadding="0" border="0" width="100%" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-family: Arial, sans-serif; font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; mso-text-raise: 1px">
                                    <tr>
                                        <td id="actions-pattern-container" valign="middle" style="padding: 0px; border-collapse: collapse; padding: 0 0 0 24px; vertical-align: middle; padding-left: 0px">
                                            <table align="left" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt">
                                                <tr>
                                                    <td class="actions-pattern-action-icon-container" style="padding: 0px; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; mso-text-raise: 0px; vertical-align: middle"> <a href="https://hibernate.atlassian.net/browse/HSEARCH-1367#add-comment" target="_blank" title="{getText($action.text)}" style="color: #3b73af; text-decoration: none"> <img class="actions-pattern-action-icon-image" src="https://hibernate.atlassian.net/images/mail/comment-icon.png" alt="Add Comment" title="{Add Comment}-icon" height="16" width="16" border="0" style="vertical-align: middle" /> </a>
                                                    </td>
                                                    <td class="actions-pattern-action-text-container" style="padding: 0px; border-collapse: collapse; font-family: Arial, sans-serif; font-size: 14px; line-height: 20px; mso-line-height-rule: exactly; mso-text-raise: 4px; padding-left: 5px"> <a href="https://hibernate.atlassian.net/browse/HSEARCH-1367#add-comment" target="_blank" title="Add Comment" style="color: #3b73af; text-decoration: none">Add Comment</a>
                                                    </td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                        <!-- there needs to be content in the cell for it to render in some clients -->
                        <tr>
                            <td class="email-content-rounded-bottom mobile-expand" style="padding: 0px; border-collapse: collapse; color: #fff; padding: 0 15px 0 16px; height: 5px; line-height: 5px; background-color: #fff; border-top: 0; border-left: 1px solid #ccc; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; mso-line-height-rule: exactly">
                                &nbsp;
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr>
                <td id="footer-pattern" style="padding: 0px; border-collapse: collapse; padding: 12px 20px">
                    <table id="footer-pattern-container" cellspacing="0" cellpadding="0" border="0" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt">
                        <tr>
                            <td id="footer-pattern-text" class="mobile-resize-text" width="100%" style="padding: 0px; border-collapse: collapse; color: #999; font-size: 12px; line-height: 18px; font-family: Arial, sans-serif; mso-line-height-rule: exactly; mso-text-raise: 2px">
                                 This message is automatically generated by JIRA.<br /> If you think it was sent incorrectly, please contact your JIRA administrators<br /> For more information on JIRA, see: <a style="color:#6c797f;; color: #3b73af; text-decoration: none" href="http://www.atlassian.com/software/jira">http://www.atlassian.com/software/jira</a>
                            </td>
                            <td id="footer-pattern-logo-desktop-container" valign="top" style="padding: 0px; border-collapse: collapse; padding-left: 20px; vertical-align: top">
                                <table style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt">
                                    <tr>
                                        <td id="footer-pattern-logo-desktop-padding" style="padding: 0px; border-collapse: collapse; padding-top: 3px"> <img id="footer-pattern-logo-desktop" src="https://hibernate.atlassian.net/images/mail/footer-desktop-logo.png" alt="JIRA logo" title="JIRA logo" width="92" height="36" class="image_fix" />
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
    </body>
</html>