home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Database / mysql-max-3.23.55.sit / mysql-max-3.23.55-apple-darwi.1 / mysql-test / t / comments.test < prev    next >
Encoding:
Text File  |  2003-01-21  |  381 b   |  19 lines  |  [TEXT/ttxt]

  1. #
  2. # Testing of comments
  3. #
  4.  
  5. select 1+2/*hello*/+3;
  6. select 1 /* long
  7. multi line comment */;
  8. !$1065 ;
  9. select 1 /*!32301 +1 */;
  10. select 1 /*!52301 +1 */;
  11. select 1--1;
  12. # Note that the following returns 4 while it should return 2
  13. # This is because the mysqld server doesn't parse -- comments
  14. select 1 --2
  15. +1;
  16. select 1 # The rest of the row will be ignored
  17. ;
  18. /* line with only comment */;
  19.