示例#1
0
 @Test
 public void testCreateTempTable5() {
   helpException(
       "Create  local TEMPORARY table tempTable (c1 boolean primary, c2 byte)"); //$NON-NLS-1$
 }
示例#2
0
 @Test
 public void testBadCreate() {
   helpException("create insert"); // $NON-NLS-1$
 }
示例#3
0
 @Test
 public void testCreateTempTable4() {
   helpException("Create table tempTable (c1 boolean, c2 byte)"); // $NON-NLS-1$
 }
示例#4
0
 @Test
 public void testCreateTempTable7() {
   helpException(
       "Create local TEMPORARY table tempTable (c1.x boolean, c2 byte)",
       "TEIID31100 Parsing error: Encountered \"table tempTable ([*]c1.x[*] boolean,\" at line 1, column 41.\nInvalid simple identifier format: [c1.x]"); //$NON-NLS-1$ //$NON-NLS-2$
 }