We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c684b1 commit 91297d3Copy full SHA for 91297d3
src/tidesdb-lua.c
@@ -61,7 +61,7 @@ static int create_column_family(lua_State *L);
61
static int drop_column_family(lua_State *L);
62
static int put(lua_State *L);
63
static int get(lua_State *L);
64
-static int delete(lua_State *L);
+static int delete (lua_State *L);
65
static int list_column_families(lua_State *L);
66
static int compact_sstables(lua_State *L);
67
@@ -185,7 +185,7 @@ static int get(lua_State *L)
185
LUA_RET_CODE_AND_VALUE((char *)value, value_size)
186
}
187
188
-static int delete(lua_State *L)
+static int delete (lua_State *L)
189
{
190
lua_getfield(L, 1, "self_db");
191
tidesdb_t *db = lua_touserdata(L, -1);
0 commit comments