You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2021/11/25 09:22:47 UTC

[GitHub] [shardingsphere] wuguanyu commented on issue #13793: config query-with-cipher-column="false" rewrite sql is not correct

wuguanyu commented on issue #13793:
URL: https://github.com/apache/shardingsphere/issues/13793#issuecomment-979009030


   <xsd:schema xmlns="http://shardingsphere.apache.org/schema/shardingsphere/encrypt"
               xmlns:xsd="http://www.w3.org/2001/XMLSchema"
               xmlns:beans="http://www.springframework.org/schema/beans"
               targetNamespace="http://shardingsphere.apache.org/schema/shardingsphere/encrypt"
               elementFormDefault="qualified">
       <xsd:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd" />
       
       <xsd:element name="rule">
           <xsd:complexType>
               <xsd:sequence>
                   <xsd:element ref="table" maxOccurs="unbounded" />
               </xsd:sequence>
               <xsd:attribute name="id" type="xsd:string" use="required" />
               <xsd:attribute name="query-with-cipher-column" type="xsd:boolean" default="true" />
           </xsd:complexType>
       </xsd:element>
       
       <xsd:element name="table">
           <xsd:complexType>
               <xsd:sequence>
                   <xsd:element ref="column" maxOccurs="unbounded" />
               </xsd:sequence>
               <xsd:attribute name="name" type="xsd:string" use="required" />
               <xsd:attribute name="query-with-cipher-column" type="xsd:boolean" />
           </xsd:complexType>
       </xsd:element>
        <xsd:element name="column">
           <xsd:complexType>
               <xsd:attribute name="logic-column" type="xsd:string" use="required" />
               <xsd:attribute name="cipher-column" type="xsd:string" use="required" />
               <xsd:attribute name="assisted-query-column" type="xsd:string" />
               <xsd:attribute name="plain-column" type="xsd:string" />
               <xsd:attribute name="encrypt-algorithm-ref" type="xsd:string" use="required" />
           </xsd:complexType>
       </xsd:element>
       
       <xsd:element name="encrypt-algorithm">
           <xsd:complexType>
               <xsd:all>
                   <xsd:element ref="beans:props" minOccurs="0" />
               </xsd:all>
               <xsd:attribute name="id" type="xsd:string" use="required" />
               <xsd:attribute name="type" type="xsd:string" use="required" />
           </xsd:complexType>
       </xsd:element>
   </xsd:schema>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@shardingsphere.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org