]> git.pld-linux.org Git - packages/mysql.git/commitdiff
- outdated
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 16 Apr 2007 11:53:24 +0000 (11:53 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    mysql-bug-24747.patch -> 1.2
    mysql-create_system_tables.patch -> 1.2

mysql-bug-24747.patch [deleted file]
mysql-create_system_tables.patch [deleted file]

diff --git a/mysql-bug-24747.patch b/mysql-bug-24747.patch
deleted file mode 100644 (file)
index 9cc9be0..0000000
+++ /dev/null
@@ -1,139 +0,0 @@
-diff -urN org/sql/item_xmlfunc.cc mod/sql/item_xmlfunc.cc
---- org/sql/item_xmlfunc.cc    2006-12-06 18:05:25.000000000 +0100
-+++ mod/sql/item_xmlfunc.cc    2007-02-03 16:58:35.027580000 +0100
-@@ -1047,12 +1047,12 @@
-   {MY_XPATH_LEX_OR      , "or"                     ,  2, 0 },
-   {MY_XPATH_LEX_DIV     , "div"                    ,  3, 0 },
-   {MY_XPATH_LEX_MOD     , "mod"                    ,  3, 0 },
--  
--  {MY_XPATH_LEX_NODETYPE, "comment"                ,  7, 0 },
--  {MY_XPATH_LEX_NODETYPE, "text"                   ,  4, 0 },
--  {MY_XPATH_LEX_NODETYPE, "processing-instruction" ,  22,0 },
--  {MY_XPATH_LEX_NODETYPE, "node"                   ,  4, 0 },
--  
-+
-+  {0,NULL,0,0}
-+};
-+
-+static struct my_xpath_keyword_names_st my_axis_names[]=
-+{  
-   {MY_XPATH_LEX_AXIS,"ancestor"          , 8,MY_XPATH_AXIS_ANCESTOR          },
-   {MY_XPATH_LEX_AXIS,"ancestor-or-self"  ,16,MY_XPATH_AXIS_ANCESTOR_OR_SELF  },
-   {MY_XPATH_LEX_AXIS,"attribute"         , 9,MY_XPATH_AXIS_ATTRIBUTE         },
-@@ -1070,6 +1070,16 @@
-   {0,NULL,0,0}
- };
-+static struct my_xpath_keyword_names_st my_nodetype_names[]=
-+{
-+  {MY_XPATH_LEX_NODETYPE, "comment"                ,  7, 0 },
-+  {MY_XPATH_LEX_NODETYPE, "text"                   ,  4, 0 },
-+  {MY_XPATH_LEX_NODETYPE, "processing-instruction" ,  22,0 },
-+  {MY_XPATH_LEX_NODETYPE, "node"                   ,  4, 0 },
-+
-+  {0,NULL,0,0}
-+};
-+
- /*
-   Lookup a keyword
-@@ -1081,11 +1091,15 @@
-     - Token type, on lookup success.
-     - MY_XPATH_LEX_IDENT, on lookup failure.
- */
--static int my_xpath_keyword(MY_XPATH *x, const char *beg, const char *end)
-+static int my_xpath_keyword(
-+              MY_XPATH *x, 
-+              struct my_xpath_keyword_names_st *keyword_names,
-+              const char *beg, 
-+              const char *end)
- {
-   struct my_xpath_keyword_names_st *k;
-   size_t length= end-beg;
--  for (k= my_keyword_names; k->name; k++)
-+  for (k= keyword_names; k->name; k++)
-   {
-     if (length == k->length && !strncasecmp(beg, k->name, length))
-     {
-@@ -1378,8 +1392,32 @@
-       return;
-     }
-+    if(beg < end )
-+    {
-+      if (*beg == '(')
-+      {
-+        /*
-+         check if a function call, e.g.: count(/a/b)
-+         or a nodetype test,       e.g.: /a/b/text()
-+        */
-+       if ((xpath->func= my_xpath_function(lex->beg, beg)))
-+          lex->term= MY_XPATH_LEX_FUNC;
-+        else
-+          lex->term= my_xpath_keyword(xpath, my_nodetype_names,
-+                                      lex->beg, beg);
-+        return;
-+      }
-+      // check if an axis specifier, e.g.: /a/b/child::*
-+      else if (*beg == ':' && beg + 1 < end && beg[1] == ':')
-+      {
-+        lex->term= my_xpath_keyword(xpath, my_axis_names,
-+                                    lex->beg, beg);
-+        return;
-+      }
-+    }
-+
-     // check if a keyword
--    lex->term= my_xpath_keyword(xpath, lex->beg, beg);
-+    lex->term= my_xpath_keyword(xpath, my_keyword_names, lex->beg, beg);
-     return;
-   }
-@@ -2332,6 +2370,32 @@
-   return 1;
- }
-+ /*
-+  *  Scan NCName.
-+  *  
-+  * SYNOPSYS
-+  *   
-+  *    The keywords AND, OR, MOD, DIV are valid identitiers
-+  *    when they are in identifier context:
-+  *    
-+  *    SELECT ExtractValue('<and><or><mod><div>VALUE</div></mod></or></and>','/and/or/mod/div')
-+  *    ->  VALUE
-+  *    
-+  *  RETURN
-+  *    1 - success
-+  *    0 - failure
-+  *
-+  */
-+
-+static int my_xpath_parse_NCName(MY_XPATH *xpath)
-+{
-+  return
-+        my_xpath_parse_term(xpath, MY_XPATH_LEX_IDENT) ||
-+        my_xpath_parse_term(xpath, MY_XPATH_LEX_AND)   ||
-+        my_xpath_parse_term(xpath, MY_XPATH_LEX_OR)    ||
-+        my_xpath_parse_term(xpath, MY_XPATH_LEX_MOD)   ||
-+        my_xpath_parse_term(xpath, MY_XPATH_LEX_DIV) ? 1 : 0;
-+}
- /*
-   QName grammar can be found in a separate document
-@@ -2345,12 +2409,12 @@
- my_xpath_parse_QName(MY_XPATH *xpath)
- {
-   const char *beg;
--  if (!my_xpath_parse_term(xpath, MY_XPATH_LEX_IDENT))
-+  if (!my_xpath_parse_NCName(xpath))
-     return 0;
-   beg= xpath->prevtok.beg;
-   if (!my_xpath_parse_term(xpath, MY_XPATH_LEX_COLON))
-     return 1; /* Non qualified name */
--  if (!my_xpath_parse_term(xpath, MY_XPATH_LEX_IDENT))
-+  if (!my_xpath_parse_NCName(xpath))
-     return 0;
-   xpath->prevtok.beg= beg;
-   return 1;
diff --git a/mysql-create_system_tables.patch b/mysql-create_system_tables.patch
deleted file mode 100644 (file)
index af1923b..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
---- mysql-5.1.16-beta/scripts/mysql_create_system_tables.sh~   2007-02-25 03:48:33.000000000 +0200
-+++ mysql-5.1.16-beta/scripts/mysql_create_system_tables.sh    2007-03-09 13:15:58.050193124 +0200
-@@ -185,17 +185,17 @@
-   if test "$1" = "test" 
-   then
--    i_u="INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);
--    INSERT INTO user VALUES ('$hostname','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);
--    REPLACE INTO user VALUES ('127.0.0.1','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);
-+    i_u="INSERT INTO user VALUES ('localhost','mysql','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);
-+    INSERT INTO user VALUES ('$hostname','mysql','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);
-+    REPLACE INTO user VALUES ('127.0.0.1','mysql','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);
-     INSERT INTO user (host,user) values ('localhost','');
-     INSERT INTO user (host,user) values ('$hostname','');"
-   else
--    i_u="INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);"
-+    i_u="INSERT INTO user VALUES ('localhost','mysql','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);"
-     if test "$windows" = "0"
-     then
-       i_u="$i_u
--           INSERT INTO user VALUES ('$hostname','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);
-+           INSERT INTO user VALUES ('$hostname','mysql','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0);
-            INSERT INTO user (host,user) values ('$hostname','');
-            INSERT INTO user (host,user) values ('localhost','');"
-     else
This page took 0.040021 seconds and 4 git commands to generate.