mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sql: Remove unused String() and Integer() functions
According to MattJ, leftovers from an earlier vision for util.sql
This commit is contained in:
parent
022159d0f0
commit
6aa08d7c58
1 changed files with 0 additions and 4 deletions
|
@ -27,8 +27,6 @@ local function is_column(x) return getmetatable(x)==column_mt; end
|
|||
local function is_index(x) return getmetatable(x)==index_mt; end
|
||||
local function is_table(x) return getmetatable(x)==table_mt; end
|
||||
local function is_query(x) return getmetatable(x)==query_mt; end
|
||||
local function Integer() return "Integer()" end
|
||||
local function String() return "String()" end
|
||||
|
||||
local function Column(definition)
|
||||
return setmetatable(definition, column_mt);
|
||||
|
@ -378,8 +376,6 @@ return {
|
|||
is_index = is_index;
|
||||
is_table = is_table;
|
||||
is_query = is_query;
|
||||
Integer = Integer;
|
||||
String = String;
|
||||
Column = Column;
|
||||
Table = Table;
|
||||
Index = Index;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue