All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hotrod.runtime.livesql.expressions.NullLiteral Maven / Gradle / Ivy

There is a newer version: 4.8.1
Show newest version
package org.hotrod.runtime.livesql.expressions;

import org.hotrod.runtime.livesql.queries.select.QueryWriter;

public class NullLiteral extends Expression {

  public NullLiteral() {
    super(Expression.PRECEDENCE_LITERAL);
  }

  @Override
  public void renderTo(final QueryWriter w) {
    w.write("NULL");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy