Commit 0be6eab6 authored by unknown's avatar unknown
Browse files

dict0dict.c:

  In the FOREIGN KEY parser, do not cut 0xC2A0 from the end of an identifier if it was quoted


innobase/dict/dict0dict.c:
  In the FOREIGN KEY parser, do not cut 0xC2A0 from the end of an identifier if it was quoted
parent 23145c51
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2427,7 +2427,7 @@ dict_scan_id(
		*id = s;
	}

	if (heap) {
	if (heap && !quote) {
		/* EMS MySQL Manager sometimes adds characters 0xA0 (in
		latin1, a 'non-breakable space') to the end of a table name.
		But isspace(0xA0) is not true, which confuses our foreign key