Passed
Pull Request — master (#2433)
by Tolga
03:35
created

postgres.isSameArray   A

Complexity

Conditions 4

Size

Total Lines 20
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
eloc 13
nop 2
dl 0
loc 20
rs 9.75
c 0
b 0
f 0
1
package postgres
2
3
const (
4
	RelationTuplesTable   = "relation_tuples"
5
	AttributesTable       = "attributes"
6
	SchemaDefinitionTable = "schema_definitions"
7
	TransactionsTable     = "transactions"
8
	TenantsTable          = "tenants"
9
	BundlesTable          = "bundles"
10
)
11