/** * Copyright (C) 2009-2013 FoundationDB, LLC * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.foundationdb.server.test.it.rowtests; import com.foundationdb.server.error.InvalidOperationException; import com.foundationdb.server.test.it.ITBase; import org.junit.Test; import java.math.BigDecimal; import java.math.BigInteger; public class NullFieldIT extends ITBase { private final String SCHEMA = "test"; private final String TABLE = "t"; private final boolean IS_PK = false ; private final boolean INDEXES = true; @Test public void intEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ int"); writeRows(row(tid, 1, 10), row(tid, 2, null)); } @Test public void uintEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ int unsigned"); writeRows(row(tid, 1, 10), row(tid, 2, null)); } @Test public void ubigintEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ bigint unsigned"); writeRows(row(tid, 1, BigInteger.valueOf(10)), row(tid, 2, null)); } @Test public void floatEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ float"); writeRows(row(tid, 1, 1.142), row(tid, 2, null)); } @Test public void ufloatEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ float unsigned"); writeRows(row(tid, 1, 1.42), row(tid, 2, null)); } @Test public void decimalEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, new SimpleColumn("c1", "MCOMPAT_ decimal", 10L, 2L)); writeRows(row(tid, 1, BigDecimal.valueOf(110, 2)), row(tid, 2, null)); } @Test public void doubleEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ double"); writeRows(row(tid, 1, 1.142), row(tid, 2, null)); } @Test public void udoubleEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ double unsigned"); writeRows(row(tid, 1, 1.42), row(tid, 2, null)); } @Test public void stringEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, new SimpleColumn("c1", "MCOMPAT_ varchar", 32L, null)); writeRows(row(tid, 1, "hello"), row(tid, 2, null)); } @Test public void varbinaryEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, new SimpleColumn("c1", "MCOMPAT_ varbinary", 32L, null)); writeRows(row(tid, 1, new byte[]{ 0x71, 0x65 }), row(tid, 2, null)); } @Test public void dateEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ date"); writeRows(row(tid, 1, "2011-04-20"), row(tid, 2, null)); } @Test public void timeEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ time"); writeRows(row(tid, 1, "14:10:00"), row(tid, 2, null)); } @Test public void datetimeEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ datetime"); writeRows(row(tid, 1, "2011-04-20 14:11:00"), row(tid, 2, null)); } @Test public void timestampEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ timestamp"); writeRows(row(tid, 1, "2011-04-20 14:11:47"), row(tid, 2, null)); } @Test public void yearEncoder() throws InvalidOperationException { final int tid = createTableFromTypes(SCHEMA, TABLE, IS_PK, INDEXES, "MCOMPAT_ year"); writeRows(row(tid, 1, "2011"), row(tid, 2, null)); } }