* command_insert handles the insert command invocation through a PostgreSQL function. * * Server-side implementation of the insert command never attempts to deduplicate * the given document/s to be inserted. */
| 167 | * the given document/s to be inserted. |
| 168 | */ |
| 169 | Datum |
| 170 | command_insert(PG_FUNCTION_ARGS) |
| 171 | { |
| 172 | ReportFeatureUsage(FEATURE_COMMAND_INSERT); |
| 173 | PG_RETURN_DATUM(CommandInsertCore(fcinfo, WriteMode_Txn_Func, CurrentMemoryContext)); |
| 174 | } |
| 175 | |
| 176 | |
| 177 | /* |
nothing calls this directly
no test coverage detected