deprecated

package
v0.0.0-...-3dde240 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 5, 2023 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Int96ToBytes

func Int96ToBytes(data []Int96) []byte

Int96ToBytes converts the slice of Int96 values to a slice of bytes sharing the same backing array.

func MaxLenInt96

func MaxLenInt96(data []Int96) int

func OrderOfInt96

func OrderOfInt96(data []Int96) int

Types

type ConvertedType

type ConvertedType int32

DEPRECATED: Common types used by frameworks(e.g. hive, pig) using parquet. ConvertedType is superseded by LogicalType. This enum should not be extended.

See LogicalTypes.md for conversion between ConvertedType and LogicalType.

const (
	// a BYTE_ARRAY actually contains UTF8 encoded chars
	UTF8 ConvertedType = 0

	// a map is converted as an optional field containing a repeated key/value pair
	Map ConvertedType = 1

	// a key/value pair is converted into a group of two fields
	MapKeyValue ConvertedType = 2

	// a list is converted into an optional field containing a repeated field for its
	// values
	List ConvertedType = 3

	// an enum is converted into a binary field
	Enum ConvertedType = 4

	// A decimal value.
	//
	// This may be used to annotate binary or fixed primitive types. The
	// underlying byte array stores the unscaled value encoded as two's
	// complement using big-endian byte order (the most significant byte is the
	// zeroth element). The value of the decimal is the value * 10^{-scale}.
	//
	// This must be accompanied by a (maximum) precision and a scale in the
	// SchemaElement. The precision specifies the number of digits in the decimal
	// and the scale stores the location of the decimal point. For example 1.23
	// would have precision 3 (3 total digits) and scale 2 (the decimal point is
	// 2 digits over).
	Decimal ConvertedType = 5

	// A Date
	//
	// Stored as days since Unix epoch, encoded as the INT32 physical type.
	Date ConvertedType = 6

	// A time
	//
	// The total number of milliseconds since midnight.  The value is stored
	// as an INT32 physical type.
	TimeMillis ConvertedType = 7

	// A time.
	//
	// The total number of microseconds since midnight.  The value is stored as
	// an INT64 physical type.
	TimeMicros ConvertedType = 8

	// A date/time combination
	//
	// Date and time recorded as milliseconds since the Unix epoch.  Recorded as
	// a physical type of INT64.
	TimestampMillis ConvertedType = 9

	// A date/time combination
	//
	// Date and time recorded as microseconds since the Unix epoch.  The value is
	// stored as an INT64 physical type.
	TimestampMicros ConvertedType = 10

	// An unsigned integer value.
	//
	// The number describes the maximum number of meaningful data bits in
	// the stored value. 8, 16 and 32 bit values are stored using the
	// INT32 physical type.  64 bit values are stored using the INT64
	// physical type.
	Uint8  ConvertedType = 11
	Uint16 ConvertedType = 12
	Uint32 ConvertedType = 13
	Uint64 ConvertedType = 14

	// A signed integer value.
	//
	// The number describes the maximum number of meaningful data bits in
	// the stored value. 8, 16 and 32 bit values are stored using the
	// INT32 physical type.  64 bit values are stored using the INT64
	// physical type.
	Int8  ConvertedType = 15
	Int16 ConvertedType = 16
	Int32 ConvertedType = 17
	Int64 ConvertedType = 18

	// An embedded JSON document
	//
	// A JSON document embedded within a single UTF8 column.
	Json ConvertedType = 19

	// An embedded BSON document
	//
	// A BSON document embedded within a single BINARY column.
	Bson ConvertedType = 20

	// An interval of time
	//
	// This type annotates data stored as a FIXED_LEN_BYTE_ARRAY of length 12
	// This data is composed of three separate little endian unsigned
	// integers.  Each stores a component of a duration of time.  The first
	// integer identifies the number of months associated with the duration,
	// the second identifies the number of days associated with the duration
	// and the third identifies the number of milliseconds associated with
	// the provided duration.  This duration of time is independent of any
	// particular timezone or date.
	Interval ConvertedType = 21
)

type Int96

type Int96 [3]uint32

Int96 is an implementation of the deprecated INT96 parquet type.

func BytesToInt96

func BytesToInt96(data []byte) []Int96

BytesToInt96 converts the byte slice passed as argument to a slice of Int96 sharing the same backing array.

When the number of bytes in the input is not a multiple of 12, the function truncates it in the returned slice.

func Int32ToInt96

func Int32ToInt96(value int32) (i96 Int96)

Int32ToInt96 converts a int32 value to a Int96.

func Int64ToInt96

func Int64ToInt96(value int64) (i96 Int96)

Int64ToInt96 converts a int64 value to Int96.

func MaxInt96

func MaxInt96(data []Int96) (max Int96)

func MinInt96

func MinInt96(data []Int96) (min Int96)

func MinMaxInt96

func MinMaxInt96(data []Int96) (min, max Int96)

func (Int96) Int

func (i Int96) Int() *big.Int

Int converts i to a big.Int representation.

func (Int96) Int32

func (i Int96) Int32() int32

Int32 converts i to a int32, potentially truncating the value.

func (Int96) Int64

func (i Int96) Int64() int64

Int64 converts i to a int64, potentially truncating the value.

func (Int96) IsZero

func (i Int96) IsZero() bool

IsZero returns true if i is the zero-value.

func (Int96) Len

func (i Int96) Len() int

Len returns the minimum length in bits required to store the value of i.

func (Int96) Less

func (i Int96) Less(j Int96) bool

Less returns true if i < j.

The method implements a signed comparison between the two operands.

func (Int96) Negative

func (i Int96) Negative() bool

Negative returns true if i is a negative value.

func (Int96) String

func (i Int96) String() string

String returns a string representation of i.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL