Shishir Jaiswal
ee02650bac
Bug #16171518 - LOAD XML DOES NOT HANDLE EMPTY ELEMENTS
...
DESCRIPTION
===========
Inability of mysql LOAD XML command to handle empty XML
tags i.e. <row><tag/></row>. Also the behaviour is wrong
and (different than above) when there is a space in empty
tag i.e. <row><tag /></row>
ANALYSIS
========
In read_xml() the case where we encounter a close tag ('/')
we're decreasing the 'level' blindly which is wrong.
Actually when its an without-space-empty-tag (succeeding
char is '>'), we need to skip the decrement. In other words
whenever we hit a close tag ('/'), decrease the 'level'
only when (i) It's not an (without space) empty tag i.e.
<tag/> or, (ii) It is of format <row col="val" .../>
FIX
===
The switch case for '/' is modified. We've removed the
blind decrement of 'level'. We do it only when its not an
without-space-empty-tag. Also we are setting 'in_tag' to
false to let program know that we're done reading current
tag (required in the case of format <row col="val" .../>)
2015-08-18 12:24:27 +05:30
..
2011-11-10 17:18:41 +05:30
2012-04-11 15:53:17 +05:30
2011-05-18 14:01:43 +04:00
2011-03-14 14:03:08 +03:00
2011-11-23 18:33:29 +05:30
2011-09-16 14:35:25 +02:00
2011-01-04 15:28:03 +01:00
2012-01-25 10:36:25 +01:00
2011-03-14 14:03:08 +03:00
2012-03-28 12:22:31 +04:00
2011-03-23 19:03:42 +02:00
2010-12-07 20:08:54 +03:00
2012-04-21 05:23:09 +05:30
2012-02-14 08:11:28 +01:00
2012-02-29 21:18:50 +01:00
2013-01-31 07:06:30 +05:30
2010-11-25 03:11:05 +00:00
2011-01-14 19:50:34 +05:30
2011-10-03 16:05:52 +05:30
2012-09-11 16:29:51 +02:00
2012-06-01 09:31:24 +02:00
2014-11-26 16:59:58 +05:30
2011-01-25 12:14:28 +05:30
2012-06-29 14:12:21 +04:00
2011-03-30 14:33:53 +02:00
2014-08-12 17:16:51 +05:30
2011-02-17 12:53:09 +01:00
2012-06-29 14:12:21 +04:00
2011-07-15 08:05:30 -03:00
2011-02-17 12:53:09 +01:00
2012-06-29 14:12:21 +04:00
2010-11-26 13:44:39 +03:00
2011-01-17 15:26:13 +03:00
2011-03-03 18:46:30 +03:00
2010-11-26 13:44:39 +03:00
2012-09-26 17:04:19 +05:30
2012-06-29 14:12:21 +04:00
2013-11-07 16:46:24 +05:30
2010-11-26 13:44:39 +03:00
2013-11-07 16:46:24 +05:30
2011-07-22 15:54:47 +03:00
2013-11-07 16:46:24 +05:30
2012-11-20 11:30:39 +05:30
2012-11-20 11:53:54 +05:30
2010-12-16 10:55:23 +01:00
2013-12-04 12:32:42 +01:00
2014-11-24 20:24:18 +05:30
2012-03-12 09:24:59 +01:00
2011-05-04 17:22:38 +04:00
2011-06-10 01:08:38 +07:00
2011-05-04 16:59:24 +04:00
2013-12-18 11:08:21 +01:00
2011-08-22 13:58:49 +02:00
2011-05-05 08:13:22 +02:00
2014-11-11 16:01:13 +01:00
2012-03-14 12:28:41 +01:00
2011-02-23 12:54:58 +01:00
2011-06-16 19:18:16 +04:00
2010-12-17 13:48:00 +03:00
2011-04-14 13:10:11 +04:00
2013-01-28 14:58:55 +05:30
2011-03-03 15:27:36 +03:00
2011-03-24 11:27:11 +01:00
2012-04-18 11:25:01 +05:30
2012-06-29 14:12:21 +04:00
2011-08-19 09:06:50 +02:00
2012-02-24 11:55:28 +05:30
2011-01-17 12:39:59 +03:00
2013-01-28 14:58:55 +05:30
2010-12-16 21:43:21 +03:00
2011-03-04 15:46:17 +01:00
2013-07-01 15:38:16 +02:00
2012-01-24 13:24:05 +04:00
2011-06-07 19:30:43 +04:00
2013-12-19 16:08:38 +05:30
2011-03-18 16:16:17 +02:00
2011-03-18 16:16:17 +02:00
2011-09-29 15:31:46 +03:00
2014-05-07 14:59:23 +05:30
2014-05-15 11:46:57 +05:30
2013-08-20 13:12:34 +04:00
2013-08-20 13:12:34 +04:00
2014-04-30 20:48:29 +04:00
2014-04-30 20:48:29 +04:00
2014-04-30 20:48:29 +04:00
2011-09-29 15:31:46 +03:00
2011-09-27 17:44:31 +05:30
2012-04-11 15:53:17 +05:30
2011-05-14 21:44:49 +05:30
2011-11-03 12:30:09 +05:30
2010-11-29 18:51:46 -06:00
2014-11-26 16:59:58 +05:30
2012-01-02 06:25:48 +00:00
2010-12-19 18:07:28 +01:00
2011-06-01 13:52:20 +02:00
2011-06-01 13:52:20 +02:00
2011-02-16 21:45:52 +01:00
2010-12-16 12:25:02 +01:00
2013-01-11 06:36:53 +05:30
2010-11-23 00:29:47 +03:00
2011-12-14 15:33:01 +01:00
2014-03-19 12:30:30 +05:30
2015-08-18 12:24:27 +05:30
2010-11-30 11:20:56 -06:00
2014-09-16 11:28:46 +05:30
2014-07-17 11:21:18 +05:30
2012-08-24 10:17:08 +02:00
2011-04-06 18:11:43 +03:00
2014-06-25 12:35:50 +02:00
2013-08-20 13:12:34 +04:00
2011-12-16 12:17:13 +04:00
2011-05-11 14:11:57 +03:00
2011-06-16 08:24:00 +02:00
2012-02-13 15:37:50 +05:30
2015-05-12 20:27:26 +05:30
2012-02-02 14:25:43 +05:30
2011-09-16 16:21:05 +04:00
2011-06-14 00:11:24 +05:30
2012-01-24 11:08:57 -05:00
2011-11-15 17:48:42 +05:30
2010-12-01 12:28:21 +05:30
2011-03-17 18:01:06 +05:30
2011-01-12 19:32:45 +00:00
2012-11-20 12:37:23 +00:00
2011-12-15 17:12:04 +01:00
2011-02-08 11:21:14 +01:00
2014-06-19 16:47:41 +02:00
2014-06-19 16:47:41 +02:00
2010-12-19 18:07:28 +01:00
2015-06-30 10:27:12 +05:30
2012-07-25 10:48:16 +05:30
2012-04-09 16:43:54 +05:30
2011-11-08 15:55:25 +01:00
2011-02-04 10:59:55 +06:00
2015-03-30 19:20:14 +05:30
2011-07-11 11:27:52 +02:00
2014-04-23 17:01:35 +02:00
2011-03-25 14:55:22 +02:00
2014-02-12 14:33:56 +05:30
2014-06-24 10:15:53 +05:30
2012-01-20 14:19:39 +01:00
2010-12-03 14:05:33 +01:00
2012-02-29 21:18:50 +01:00
2013-02-14 17:03:49 +01:00
2011-06-13 11:57:47 +02:00
2015-06-24 10:27:12 +05:30
2011-10-12 15:07:15 +03:00
2015-04-06 12:27:12 +05:30
2011-12-14 15:33:01 +01:00
2013-02-14 17:03:49 +01:00
2013-06-14 11:28:29 +05:30
2014-05-06 11:05:37 +02:00
2011-01-10 16:13:12 +01:00
2011-03-31 14:38:54 +02:00
2015-07-10 07:54:55 +05:30
2013-02-14 17:03:49 +01:00
2011-03-18 16:16:17 +02:00
2013-08-21 15:24:38 +05:30
2014-06-30 19:24:25 +05:30
2015-07-10 07:54:55 +05:30
2013-08-21 15:24:38 +05:30
2010-12-01 13:54:50 +01:00
2014-06-27 17:04:08 +05:30
2015-04-27 14:33:25 +05:30
2012-04-18 13:14:05 +02:00
2011-06-10 11:40:57 +02:00
2011-05-30 12:17:22 -03:00
2011-11-10 12:04:23 +05:30
2012-01-26 10:38:28 +01:00
2013-04-12 14:18:21 +05:30
2011-05-04 15:47:29 +03:00
2011-09-28 16:54:15 +05:30
2012-04-18 11:34:36 +05:30
2011-03-28 13:57:54 +03:00
2013-01-30 17:51:52 +01:00
2014-05-09 09:52:15 +05:30
2011-02-16 17:27:35 +01:00
2012-10-29 13:06:43 +04:00
2011-06-24 00:02:58 +07:00
2011-08-08 17:45:43 +01:00
2012-03-28 13:35:08 +05:30
2012-03-28 13:35:08 +05:30
2011-03-30 14:55:53 +02:00
2011-06-16 13:54:16 +03:00
2011-04-13 09:59:17 +02:00
2015-01-27 13:13:55 +05:30
2012-02-29 12:23:15 +05:30
2011-02-07 11:17:46 +01:00
2011-03-11 16:16:34 +05:30
2011-01-14 09:28:23 +01:00
2011-01-14 09:28:23 +01:00
2011-03-24 11:27:11 +01:00
2011-01-12 10:31:41 +01:00
2012-04-04 14:19:00 +04:00
2015-08-17 15:26:01 +05:30
2011-06-09 16:54:12 +04:00
2011-03-18 16:16:17 +02:00
2011-03-04 09:41:29 +01:00
2011-06-10 14:20:15 +07:00
2015-01-27 13:13:55 +05:30
2011-06-10 14:20:15 +07:00
2012-06-29 14:12:21 +04:00
2011-02-17 13:57:42 +01:00
2011-06-10 10:22:45 +02:00
2011-07-18 10:27:05 +02:00
2011-10-14 11:14:44 +02:00
2011-05-11 14:11:57 +03:00
2011-04-18 10:46:17 +02:00
2012-06-29 12:55:45 +04:00
2011-02-09 10:50:09 +01:00
2014-05-08 14:49:53 +05:30
2015-07-16 07:56:39 +05:30
2012-11-20 12:37:23 +00:00
2012-03-09 15:04:49 +02:00
2011-05-24 11:16:34 +02:00
2011-03-28 13:57:54 +03:00
2014-06-19 16:47:41 +02:00
2011-10-06 10:55:57 +01:00
2015-07-23 10:47:58 +05:30
2011-04-15 16:02:22 +04:00
2014-10-21 16:25:35 +05:30
2012-03-15 15:10:57 +06:00
2011-05-03 10:48:24 +03:00