mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
The internal/ingest and internal/schema endpoints were developed with
intent that they'd be the primary interface new users would work with,
because they were Easy To Use, and did not require any kind of setup,
the counterpoint being that ingest done this way had performance issues
because it ended up with huge amounts of JSON parsing to reformat
things into our native format. But this was understood to be the price
of providing a new-user-friendly JSON ingest experience.
A year later, we have no evidence that it's ever been used. We never
even moved it out of the `/internal` path. It's a lot of very complex
fiddly code and we don't seem to be using it, and at this point, our
anticipation is that if we really need something, we'll use CSV, which
we already have working, or something in the new SQL code. Either way,
we don't seem to be using this.
(cherry picked from commit 16ccbc461a)
57 lines
2.1 KiB
Go
57 lines
2.1 KiB
Go
// Code generated by "stringer -type=apiMethod"; DO NOT EDIT.
|
|
|
|
package pilosa
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[apiClusterMessage-0]
|
|
_ = x[apiCreateField-1]
|
|
_ = x[apiCreateIndex-2]
|
|
_ = x[apiDeleteField-3]
|
|
_ = x[apiDeleteAvailableShard-4]
|
|
_ = x[apiDeleteIndex-5]
|
|
_ = x[apiDeleteView-6]
|
|
_ = x[apiExportCSV-7]
|
|
_ = x[apiFragmentBlockData-8]
|
|
_ = x[apiFragmentBlocks-9]
|
|
_ = x[apiFragmentData-10]
|
|
_ = x[apiTranslateData-11]
|
|
_ = x[apiFieldTranslateData-12]
|
|
_ = x[apiField-13]
|
|
_ = x[apiImport-14]
|
|
_ = x[apiImportValue-15]
|
|
_ = x[apiIndex-16]
|
|
_ = x[apiQuery-17]
|
|
_ = x[apiRecalculateCaches-18]
|
|
_ = x[apiSchema-19]
|
|
_ = x[apiShardNodes-20]
|
|
_ = x[apiState-21]
|
|
_ = x[apiViews-22]
|
|
_ = x[apiApplySchema-23]
|
|
_ = x[apiStartTransaction-24]
|
|
_ = x[apiFinishTransaction-25]
|
|
_ = x[apiTransactions-26]
|
|
_ = x[apiGetTransaction-27]
|
|
_ = x[apiActiveQueries-28]
|
|
_ = x[apiPastQueries-29]
|
|
_ = x[apiIDReserve-30]
|
|
_ = x[apiIDCommit-31]
|
|
_ = x[apiIDReset-32]
|
|
_ = x[apiPartitionNodes-33]
|
|
_ = x[apiMutexCheck-34]
|
|
}
|
|
|
|
const _apiMethod_name = "apiClusterMessageapiCreateFieldapiCreateIndexapiDeleteFieldapiDeleteAvailableShardapiDeleteIndexapiDeleteViewapiExportCSVapiFragmentBlockDataapiFragmentBlocksapiFragmentDataapiTranslateDataapiFieldTranslateDataapiFieldapiImportapiImportValueapiIndexapiQueryapiRecalculateCachesapiSchemaapiShardNodesapiStateapiViewsapiApplySchemaapiStartTransactionapiFinishTransactionapiTransactionsapiGetTransactionapiActiveQueriesapiPastQueriesapiIDReserveapiIDCommitapiIDResetapiPartitionNodesapiMutexCheck"
|
|
|
|
var _apiMethod_index = [...]uint16{0, 17, 31, 45, 59, 82, 96, 109, 121, 141, 158, 173, 189, 210, 218, 227, 241, 249, 257, 277, 286, 299, 307, 315, 329, 348, 368, 383, 400, 416, 430, 442, 453, 463, 480, 493}
|
|
|
|
func (i apiMethod) String() string {
|
|
if i < 0 || i >= apiMethod(len(_apiMethod_index)-1) {
|
|
return "apiMethod(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _apiMethod_name[_apiMethod_index[i]:_apiMethod_index[i+1]]
|
|
}
|