We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
NOTNULL
1 parent 16e79a4 commit d50807dCopy full SHA for d50807d
src/test/java/net/sf/jsqlparser/expression/operators/relational/IsNullExpressionTest.java
@@ -0,0 +1,14 @@
1
+package net.sf.jsqlparser.expression.operators.relational;
2
+
3
+import net.sf.jsqlparser.JSQLParserException;
4
+import net.sf.jsqlparser.test.TestUtils;
5
+import org.junit.jupiter.api.Test;
6
7
+class IsNullExpressionTest {
8
9
+ @Test
10
+ void testNotNullExpression() throws JSQLParserException {
11
+ String sqlStr = "select * from mytable where 1 notnull";
12
+ TestUtils.assertSqlCanBeParsedAndDeparsed(sqlStr, true);
13
+ }
14
+}
0 commit comments