File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ local schema = require('crud.common.schema')
9
9
local has_keydef , Keydef = pcall (require , ' crud.compare.keydef' )
10
10
local select_comparators = require (' crud.compare.comparators' )
11
11
12
- local BorderError = errors .new_class (' Border ' , {capture_stack = false })
12
+ local BorderError = errors .new_class (' BorderError ' , {capture_stack = false })
13
13
14
14
local borders = {}
15
15
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ local dev_checks = require('crud.common.dev_checks')
5
5
local utils = require (' crud.common.utils' )
6
6
local fiber_clock = require (' fiber' ).clock
7
7
8
- local CallError = errors .new_class (' Call ' )
8
+ local CallError = errors .new_class (' CallError ' )
9
9
local NotInitializedError = errors .new_class (' NotInitialized' )
10
10
11
11
local call = {}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ local sharding = require('crud.common.sharding')
8
8
local dev_checks = require (' crud.common.dev_checks' )
9
9
local schema = require (' crud.common.schema' )
10
10
11
- local DeleteError = errors .new_class (' Delete ' , {capture_stack = false })
11
+ local DeleteError = errors .new_class (' DeleteError ' , {capture_stack = false })
12
12
13
13
local delete = {}
14
14
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ local sharding = require('crud.common.sharding')
8
8
local dev_checks = require (' crud.common.dev_checks' )
9
9
local schema = require (' crud.common.schema' )
10
10
11
- local GetError = errors .new_class (' Get ' , {capture_stack = false })
11
+ local GetError = errors .new_class (' GetError ' , {capture_stack = false })
12
12
13
13
local get = {}
14
14
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ local sharding = require('crud.common.sharding')
8
8
local dev_checks = require (' crud.common.dev_checks' )
9
9
local schema = require (' crud.common.schema' )
10
10
11
- local InsertError = errors .new_class (' Insert ' , {capture_stack = false })
11
+ local InsertError = errors .new_class (' InsertError ' , {capture_stack = false })
12
12
13
13
local insert = {}
14
14
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ local sharding = require('crud.common.sharding')
8
8
local dev_checks = require (' crud.common.dev_checks' )
9
9
local schema = require (' crud.common.schema' )
10
10
11
- local ReplaceError = errors .new_class (' Replace ' , { capture_stack = false })
11
+ local ReplaceError = errors .new_class (' ReplaceError ' , { capture_stack = false })
12
12
13
13
local replace = {}
14
14
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ local vshard = require('vshard')
5
5
local dev_checks = require (' crud.common.dev_checks' )
6
6
local call = require (' crud.common.call' )
7
7
8
- local TruncateError = errors .new_class (' Truncate ' , {capture_stack = false })
8
+ local TruncateError = errors .new_class (' TruncateError ' , {capture_stack = false })
9
9
10
10
local truncate = {}
11
11
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ local sharding = require('crud.common.sharding')
8
8
local dev_checks = require (' crud.common.dev_checks' )
9
9
local schema = require (' crud.common.schema' )
10
10
11
- local UpdateError = errors .new_class (' Update ' , {capture_stack = false })
11
+ local UpdateError = errors .new_class (' UpdateError ' , {capture_stack = false })
12
12
13
13
local update = {}
14
14
You can’t perform that action at this time.
0 commit comments